1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Don't override argument specs with FILE_COMMON_ARGUMENTS

Doing so will remove aliases, types, etc, leading to #2388 and other
issues.
This commit is contained in:
Daniel Hokka Zakrisson 2013-03-14 11:22:46 +01:00
parent d0332a6c6d
commit 27978ed9c1

View file

@ -176,7 +176,9 @@ class AnsibleModule(object):
self.aliases = {} self.aliases = {}
if add_file_common_args: 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 os.environ['LANG'] = MODULE_LANG
(self.params, self.args) = self._load_params() (self.params, self.args) = self._load_params()