Quick fix to tmpdir rework

QEMU no --external-sources broken due to bootstrap.cfg
This commit is contained in:
fosslinux 2023-01-29 21:07:56 +11:00
parent 2c8b29556b
commit 5458a3e6aa
1 changed files with 1 additions and 4 deletions

View File

@ -32,10 +32,7 @@ def create_configuration_file(args):
config.write("FORCE_TIMESTAMPS=" + str(args.force_timestamps) + "\n")
config.write("CHROOT=" + str(args.chroot or args.bwrap) + "\n")
config.write("UPDATE_CHECKSUMS=" + str(args.update_checksums) + "\n")
if args.external_sources:
config.write("DISK=sda1\n")
else:
config.write("DISK=sda\n")
config.write("DISK=sda1\n")
# pylint: disable=too-many-statements
def main():