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

This commit is contained in:
Michael Scherer
2016-04-07 17:25:04 +02:00
committed by Matt Clay
parent b8706a1f95
commit ed69d8335e

View File

@@ -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(),