Add wget to packages list in debootstrap script
This commit is contained in:
parent
5521110043
commit
6fc12b4438
|
@ -59,7 +59,7 @@ def install(**kwargs):
|
||||||
try:
|
try:
|
||||||
deb_packages = kwargs['deb_packages'].split(',')
|
deb_packages = kwargs['deb_packages'].split(',')
|
||||||
except:
|
except:
|
||||||
deb_packages = ["linux-image-amd64", "grub-pc", "cloud-init", "python3-cffi-backend"]
|
deb_packages = ["linux-image-amd64", "grub-pc", "cloud-init", "python3-cffi-backend", "wget"]
|
||||||
|
|
||||||
# We need to know our root disk
|
# We need to know our root disk
|
||||||
root_disk = None
|
root_disk = None
|
||||||
|
|
Loading…
Reference in New Issue