Add an alias 'name=' for guest
This is the opposite as library/virt, but much better than using name= as the default option name.
This commit is contained in:
parent
4a22ec399f
commit
5651990b0f
1 changed files with 2 additions and 2 deletions
|
@ -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']),
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue