Properly label path argument with type='path' (#1940)

pull/18777/head
Michael Scherer 9 years ago committed by Matt Clay
parent b8706a1f95
commit ed69d8335e

@ -1683,7 +1683,8 @@ def main():
type='str'
),
config=dict(
type='str',
type='path',
default='/etc/lxc/default.conf'
),
vg_name=dict(
type='str',
@ -1701,7 +1702,7 @@ def main():
default='5G'
),
directory=dict(
type='str'
type='path'
),
zfs_root=dict(
type='str'
@ -1710,7 +1711,7 @@ def main():
type='str'
),
lxc_path=dict(
type='str'
type='path'
),
state=dict(
choices=LXC_ANSIBLE_STATES.keys(),
@ -1743,7 +1744,7 @@ def main():
default='false'
),
archive_path=dict(
type='str',
type='path',
),
archive_compression=dict(
choices=LXC_COMPRESSION_MAP.keys(),

Loading…
Cancel
Save