Add proper type to path and link

Since both of them are path, it should be checked using the
proper type.
reviewable/pr18780/r1
Michael Scherer 9 years ago
parent db32172959
commit 8c53e654f7

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