Merge pull request #1079 from wkeeling/bugfix_634
Fixes multiple param handling by modprobe.py
This commit is contained in:
commit
ab1693a075
1 changed files with 6 additions and 1 deletions
|
@ -57,6 +57,9 @@ EXAMPLES = '''
|
|||
- modprobe: name=dummy state=present params="numdummies=2"
|
||||
'''
|
||||
|
||||
import shlex
|
||||
|
||||
|
||||
def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec={
|
||||
|
@ -100,7 +103,9 @@ def main():
|
|||
# Add/remove module as needed
|
||||
if args['state'] == 'present':
|
||||
if not present:
|
||||
rc, _, err = module.run_command([module.get_bin_path('modprobe', True), args['name'], args['params']])
|
||||
command = [module.get_bin_path('modprobe', True), args['name']]
|
||||
command.extend(shlex.split(args['params']))
|
||||
rc, _, err = module.run_command(command)
|
||||
if rc != 0:
|
||||
module.fail_json(msg=err, **args)
|
||||
args['changed'] = True
|
||||
|
|
Loading…
Reference in a new issue