diff options
author | Daniel Baumann <daniel@debian.org> | 2010-09-02 15:14:29 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:19 +0100 |
commit | 4b84f354bf0c2bce283bf3162356338a9efa4d99 (patch) | |
tree | 70551ec81b9575b995139832a7e75db0704c0eb0 /scripts/build/source | |
parent | e70ad72254ea809cd7eedbc9bd839c33d6a6ac3f (diff) | |
download | vyos-live-build-4b84f354bf0c2bce283bf3162356338a9efa4d99.tar.gz vyos-live-build-4b84f354bf0c2bce283bf3162356338a9efa4d99.zip |
Updating internal calls to use live-build instead of live-helper.
Diffstat (limited to 'scripts/build/source')
-rwxr-xr-x | scripts/build/source | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/scripts/build/source b/scripts/build/source index c64265a08..6ca6cf7c7 100755 --- a/scripts/build/source +++ b/scripts/build/source @@ -30,26 +30,26 @@ Require_stagefile .stage/chroot_install-packages Setup_cleanup # Enabling network in chroot -lh chroot_hosts install ${*} -lh chroot_resolv install ${*} -lh chroot_hostname install ${*} -lh chroot_sources install ${*} +lb chroot_hosts install ${*} +lb chroot_resolv install ${*} +lb chroot_hostname install ${*} +lb chroot_sources install ${*} # Preparing images -lh source_debian-live ${*} -lh source_debian ${*} -lh source_disk ${*} -lh source_checksums ${*} +lb source_debian-live ${*} +lb source_debian ${*} +lb source_disk ${*} +lb source_checksums ${*} # Building images -lh source_iso ${*} -lh source_net ${*} -lh source_tar ${*} -lh source_usb ${*} -lh source_virtual-hdd ${*} +lb source_iso ${*} +lb source_net ${*} +lb source_tar ${*} +lb source_usb ${*} +lb source_virtual-hdd ${*} # Deconfiguring chroot rm -f .stage/chroot_sources -lh chroot_hostname remove ${*} -lh chroot_resolv remove ${*} -lh chroot_hosts remove ${*} +lb chroot_hostname remove ${*} +lb chroot_resolv remove ${*} +lb chroot_hosts remove ${*} |