diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-26 17:57:01 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-26 17:57:01 +0100 |
commit | 3a8d74b333482da62574005b270870436e144ed2 (patch) | |
tree | 1239576439074f1cc16f1ecca3393e66074bd62c /scripts | |
parent | c78b06be53a269c00d9922561bf1abeb8129b7c5 (diff) | |
download | vyos-build-3a8d74b333482da62574005b270870436e144ed2.tar.gz vyos-build-3a8d74b333482da62574005b270870436e144ed2.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.') |