mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Change disk type to str to allow correct usage of rootfs for LXC (#2091)
This commit is contained in:
@@ -290,7 +290,7 @@ def main():
|
|||||||
password = dict(no_log=True),
|
password = dict(no_log=True),
|
||||||
hostname = dict(),
|
hostname = dict(),
|
||||||
ostemplate = dict(),
|
ostemplate = dict(),
|
||||||
disk = dict(type='int', default=3),
|
disk = dict(type='str', default='3'),
|
||||||
cpus = dict(type='int', default=1),
|
cpus = dict(type='int', default=1),
|
||||||
memory = dict(type='int', default=512),
|
memory = dict(type='int', default=512),
|
||||||
swap = dict(type='int', default=0),
|
swap = dict(type='int', default=0),
|
||||||
|
|||||||
Reference in New Issue
Block a user