Skip to content

Commit

Permalink
Use base url when bootstrapping the ISO as well
Browse files Browse the repository at this point in the history
  • Loading branch information
kmoore134 committed Nov 9, 2024
1 parent 045f977 commit a326328
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scale_build/bootstrap/bootstrapdir.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ def setup(self):

def debootstrap_debian(self):
manifest = get_manifest()
apt_base_url = get_apt_base_url()
run(
['debootstrap'] + self.deopts + [
'--keyring', '/etc/apt/trusted.gpg.d/debian-archive-truenas-automatic.gpg',
manifest['debian_release'],
self.chroot_basedir, manifest['apt-repos']['url']
self.chroot_basedir, apt_base_url + manifest['apt-repos']['url']
]
)

Expand Down

0 comments on commit a326328

Please sign in to comment.