diff --git a/lib/ansible/module_common.py b/lib/ansible/module_common.py index 59b2f61fd1..f656fc0fb6 100644 --- a/lib/ansible/module_common.py +++ b/lib/ansible/module_common.py @@ -176,7 +176,9 @@ class AnsibleModule(object): self.aliases = {} if add_file_common_args: - self.argument_spec.update(FILE_COMMON_ARGUMENTS) + for k, v in FILE_COMMON_ARGUMENTS.iteritems(): + if k not in self.argument_spec: + self.argument_spec[k] = v os.environ['LANG'] = MODULE_LANG (self.params, self.args) = self._load_params() diff --git a/library/copy b/library/copy index f33f3910d5..d8d5410b8a 100644 --- a/library/copy +++ b/library/copy @@ -105,8 +105,8 @@ def main(): md5sum_dest = None if os.path.exists(dest): - # if not force: - # module.exit_json(msg="file already exists and force is set (%s)" % force, src=src, dest=dest, changed=False) + if not force: + module.exit_json(msg="file already exists", src=src, dest=dest, changed=False) if (os.path.isdir(dest)): basename = os.path.basename(src) dest = os.path.join(dest, basename)