Merge pull request #1874 from mscherer/better_verif_alternatives
Add proper type to path and link
This commit is contained in:
commit
10e70b5f48
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ def main():
|
|||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
name = dict(required=True),
|
||||
path = dict(required=True),
|
||||
link = dict(required=False),
|
||||
path = dict(required=True, type='path'),
|
||||
link = dict(required=False, type='path'),
|
||||
),
|
||||
supports_check_mode=True,
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue