now assemble skips during checkmode
TODO: actually make it check with checkmode fixes http://github.com/ansible/ansible-modules-core/issues/661
This commit is contained in:
parent
962f681bde
commit
d8abae71a4
1 changed files with 4 additions and 1 deletions
|
@ -77,6 +77,9 @@ class ActionModule(ActionBase):
|
|||
|
||||
def run(self, tmp=None, task_vars=dict()):
|
||||
|
||||
if self._connection_info.check_mode:
|
||||
return dict(skipped=True, msg=("skipped, this module does not support check_mode."))
|
||||
|
||||
src = self._task.args.get('src', None)
|
||||
dest = self._task.args.get('dest', None)
|
||||
delimiter = self._task.args.get('delimiter', None)
|
||||
|
|
Loading…
Reference in a new issue