diff options
-rwxr-xr-x | scripts/check-qemu-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 105a0ae8..5c099a3b 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -235,7 +235,7 @@ diskname_raid = None def gen_disk(name): if not os.path.isfile(name): log.info(f'Creating Disk image {name}') - c = subprocess.check_output(['qemu-img', 'create', name, '1G']) + c = subprocess.check_output(['qemu-img', 'create', name, '2G']) log.debug(c.decode()) else: log.info(f'Diskimage "{name}" already exists, using the existing one.') |