Commit 250f52bf by Dag Wieers

Add an alias 'name=' for guest

This is the opposite as library/virt, but much better than using name= as the default option name.
parent c5d7ef3d
......@@ -80,11 +80,11 @@ except ImportError:
def main():
module = AnsibleModule(
argument_spec=dict(
argument_spec = dict(
host = dict(required=True),
login = dict(required=True),
password = dict(required=True),
guest = dict(required=True),
guest = dict(required=True, aliases=['name']),
)
)
......
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