mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding ignore_scripts option to the argument_spec for npm
This commit is contained in:
parent
cd99821f8a
commit
758a0bbeb7
1 changed files with 2 additions and 1 deletions
|
@ -211,7 +211,8 @@ def main():
|
|||
production=dict(default='no', type='bool'),
|
||||
executable=dict(default=None),
|
||||
registry=dict(default=None),
|
||||
state=dict(default='present', choices=['present', 'absent', 'latest'])
|
||||
state=dict(default='present', choices=['present', 'absent', 'latest']),
|
||||
ignore_scripts=dict(default=False, type='bool'),
|
||||
)
|
||||
arg_spec['global'] = dict(default='no', type='bool')
|
||||
module = AnsibleModule(
|
||||
|
|
Loading…
Reference in a new issue