mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
519 B
Python
16 lines
519 B
Python
12 years ago
|
from ansible.runner import return_data
|
||
|
|
||
|
|
||
|
class ActionModule (object):
|
||
|
def __init__(self, runner):
|
||
|
self.runner = runner
|
||
|
|
||
|
def run(self, conn, tmp, module_name, module_args, inject,
|
||
|
complex_args=None, **kwargs):
|
||
|
# This plug-in should be ignored in deference to
|
||
|
# category/categorized_plugin.py, so it should never actually
|
||
|
# run.
|
||
|
return return_data.ReturnData(
|
||
|
conn=conn, comm_ok=True,
|
||
|
result={"msg": "this plug-in should never be run"})
|