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:
parent
d0332a6c6d
commit
27978ed9c1
1 changed files with 3 additions and 1 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue