summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/unexpected_executor_exception/action_plugins/unexpected.py
blob: 77fe58fb35f4b3f9ca81d651131de9f06ece9bd5 (plain)
1
2
3
4
5
6
7
8
from ansible.plugins.action import ActionBase


class ActionModule(ActionBase):
    TRANSFERS_FILES = False

    def run(self, tmp=None, task_vars=None):
        raise Exception('boom')