Add output message to debootstrap install

This commit is contained in:
Joshua Boniface 2022-10-07 02:27:20 -04:00
parent 7268592c87
commit 45c9909428
1 changed files with 5 additions and 7 deletions

View File

@ -480,14 +480,12 @@ class VMBuilderScript(VMBuilder):
if not root_volume:
raise ProvisioningError("Failed to find root volume in volumes list")
# Perform a deboostrap installation
# Perform a debootstrap installation
print(
f"Installing system with debootstrap: debootstrap --include={','.join(deb_packages)} {deb_release} {temporary_directory} {deb_mirror}"
)
os.system(
"debootstrap --include={pkgs} {suite} {target} {mirror}".format(
suite=deb_release,
target=temporary_directory,
mirror=deb_mirror,
pkgs=",".join(deb_packages),
)
"debootstrap --include={','.join(deb_packages)} {deb_release} {temporary_directory} {deb_mirror}"
)
# Bind mount the devfs so we can grub-install later