**Temporary**
The copy module has been failing since we changed the default of the file module's follow parameter. Make this change to try to get tests working and then we'll diagnose and fix this afterwards.
This commit is contained in:
parent
91ce5c70d3
commit
28b86b1148
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ def main():
|
|||
original_basename=dict(required=False), # Internal use only, for recursive ops
|
||||
recurse=dict(default=False, type='bool'),
|
||||
force=dict(required=False, default=False, type='bool'),
|
||||
follow=dict(required=False, default=True, type='bool'),
|
||||
follow=dict(required=False, default=False, type='bool'),
|
||||
diff_peek=dict(default=None), # Internal use only, for internal checks in the action plugins
|
||||
validate=dict(required=False, default=None), # Internal use only, for template and copy
|
||||
src=dict(required=False, default=None, type='path'),
|
||||
|
|
Loading…
Reference in a new issue