Don't override argument specs with FILE_COMMON_ARGUMENTS

Doing so will remove aliases, types, etc, leading to #2388 and other
issues.
parent d0332a6c
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment