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/chroot | |
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/chroot')
-rwxr-xr-x | scripts/build/chroot | 98 |
1 files changed, 49 insertions, 49 deletions
diff --git a/scripts/build/chroot b/scripts/build/chroot index 20b8decfe..470663e1d 100755 --- a/scripts/build/chroot +++ b/scripts/build/chroot @@ -28,56 +28,56 @@ Set_defaults Setup_cleanup # Configuring chroot -lh chroot_cache restore ${*} -lh chroot_devpts install ${*} -lh chroot_proc install ${*} -lh chroot_selinuxfs install ${*} -lh chroot_sysfs install ${*} -lh chroot_debianchroot install ${*} -lh chroot_dpkg install ${*} -lh chroot_dpkg_tmpfs install ${*} -lh chroot_sysv-rc install ${*} -lh chroot_upstart install ${*} -lh chroot_hosts install ${*} -lh chroot_resolv install ${*} -lh chroot_hostname install ${*} -lh chroot_apt install ${*} -lh chroot_sources install ${*} -lh chroot_linux-image install ${*} +lb chroot_cache restore ${*} +lb chroot_devpts install ${*} +lb chroot_proc install ${*} +lb chroot_selinuxfs install ${*} +lb chroot_sysfs install ${*} +lb chroot_debianchroot install ${*} +lb chroot_dpkg install ${*} +lb chroot_dpkg_tmpfs install ${*} +lb chroot_sysv-rc install ${*} +lb chroot_upstart install ${*} +lb chroot_hosts install ${*} +lb chroot_resolv install ${*} +lb chroot_hostname install ${*} +lb chroot_apt install ${*} +lb chroot_sources install ${*} +lb chroot_linux-image install ${*} # Customizing chroot -lh chroot_preseed ${*} -lh chroot_local-preseed ${*} -lh chroot_tasks ${*} -lh chroot_packageslists ${*} -lh chroot_local-packageslists ${*} -lh chroot_packages ${*} -lh chroot_local-packages ${*} -lh chroot_install-packages ${*} -lh chroot_localization ${*} -lh chroot_local-includes ${*} -lh chroot_local-patches ${*} -lh chroot_sysvinit ${*} -lh chroot_local-hooks ${*} -lh chroot_hooks ${*} -lh chroot_symlinks ${*} -lh chroot_hacks ${*} -lh chroot_interactive ${*} +lb chroot_preseed ${*} +lb chroot_local-preseed ${*} +lb chroot_tasks ${*} +lb chroot_packageslists ${*} +lb chroot_local-packageslists ${*} +lb chroot_packages ${*} +lb chroot_local-packages ${*} +lb chroot_install-packages ${*} +lb chroot_localization ${*} +lb chroot_local-includes ${*} +lb chroot_local-patches ${*} +lb chroot_sysvinit ${*} +lb chroot_local-hooks ${*} +lb chroot_hooks ${*} +lb chroot_symlinks ${*} +lb chroot_hacks ${*} +lb chroot_interactive ${*} # Deconfiguring chroot -lh chroot_linux-image remove ${*} -lh chroot_sources remove ${*} -lh chroot_apt remove ${*} -lh chroot_hostname remove ${*} -lh chroot_resolv remove ${*} -lh chroot_hosts remove ${*} -lh chroot_sysv-rc remove ${*} -lh chroot_upstart remove ${*} -lh chroot_dpkg_tmpfs remove ${*} -lh chroot_dpkg remove ${*} -lh chroot_debianchroot remove ${*} -lh chroot_sysfs remove ${*} -lh chroot_selinuxfs remove ${*} -lh chroot_proc remove ${*} -lh chroot_devpts remove ${*} -lh chroot_cache save ${*} +lb chroot_linux-image remove ${*} +lb chroot_sources remove ${*} +lb chroot_apt remove ${*} +lb chroot_hostname remove ${*} +lb chroot_resolv remove ${*} +lb chroot_hosts remove ${*} +lb chroot_sysv-rc remove ${*} +lb chroot_upstart remove ${*} +lb chroot_dpkg_tmpfs remove ${*} +lb chroot_dpkg remove ${*} +lb chroot_debianchroot remove ${*} +lb chroot_sysfs remove ${*} +lb chroot_selinuxfs remove ${*} +lb chroot_proc remove ${*} +lb chroot_devpts remove ${*} +lb chroot_cache save ${*} |