Merge pull request #1079 from wkeeling/bugfix_634

Fixes multiple param handling by modprobe.py
reviewable/pr18780/r1
Brian Coca 9 years ago
commit ab1693a075

@ -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…
Cancel
Save