diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-26 20:09:28 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-26 20:09:28 +0100 |
commit | d0a8d6a4544ba01a8d6a3e9f54ffcd458ab401d7 (patch) | |
tree | 2d3ff650cf10085f22ab4ebf2bac9a1f1db34e25 /scripts | |
parent | 17799b2c84e53b167189be6d1797a245dcd1898c (diff) | |
download | vyos-build-d0a8d6a4544ba01a8d6a3e9f54ffcd458ab401d7.tar.gz vyos-build-d0a8d6a4544ba01a8d6a3e9f54ffcd458ab401d7.zip |
Revert "Testsuite: limit QEmu test disk size to 1G to not waste space on build host"
This reverts commit a5e591fa9b66b229f7296de177a570c7b7126be4.
Diffstat (limited to 'scripts')
-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.') |