Commit 2c33737b by James Tanner

Fix docstring and remove redundant parameter value in portinstall module

parent 9f1f9329
......@@ -44,7 +44,6 @@ options:
required: false
default: yes
author: berenddeboer
notes:
'''
EXAMPLES = '''
......@@ -191,7 +190,7 @@ def main():
argument_spec = dict(
state = dict(default="present", choices=["present","absent"]),
name = dict(aliases=["pkg"], required=True),
use_packages = dict(type='bool', choices=BOOLEANS, default='yes')))
use_packages = dict(type='bool', default='yes')))
p = module.params
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment