diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:52 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:18:29 +0100 |
commit | 7c68e6ebca01f64501453fa53941ac77b9c2c335 (patch) | |
tree | baad74e1f3cbe6660320b7ad3c4abe967a38b16c /helpers/lh_chroot | |
parent | bd1a5ddc8203907eb40135303bea5488397ec5d0 (diff) | |
download | vyos-live-build-7c68e6ebca01f64501453fa53941ac77b9c2c335.tar.gz vyos-live-build-7c68e6ebca01f64501453fa53941ac77b9c2c335.zip |
Adding live-helper 1.0~a9-1.
Diffstat (limited to 'helpers/lh_chroot')
-rwxr-xr-x | helpers/lh_chroot | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/helpers/lh_chroot b/helpers/lh_chroot index ed40c33b0..451a6b463 100755 --- a/helpers/lh_chroot +++ b/helpers/lh_chroot @@ -35,38 +35,38 @@ Set_defaults Breakpoint "chroot: Init" # Configuring chroot -lh_chroot_proc install "${@}" -lh_chroot_sysfs install "${@}" -lh_chroot_debianchroot install "${@}" -lh_chroot_sysvrc install "${@}" -lh_chroot_hosts install "${@}" -lh_chroot_resolv install "${@}" -lh_chroot_apt install "${@}" -lh_chroot_sources install "${@}" -lh_chroot_linuximage install "${@}" +lh_chroot_proc install ${*} +lh_chroot_sysfs install ${*} +lh_chroot_debianchroot install ${*} +lh_chroot_sysvrc install ${*} +lh_chroot_hosts install ${*} +lh_chroot_resolv install ${*} +lh_chroot_apt install ${*} +lh_chroot_sources install ${*} +lh_chroot_linuximage install ${*} # Customizing chroot -lh_chroot_tasks "${@}" -lh_chroot_packageslists "${@}" -lh_chroot_packages "${@}" -lh_chroot_localpackages "${@}" -lh_chroot_localpackageslists "${@}" -lh_chroot_localization "${@}" -lh_chroot_localincludes "${@}" -lh_chroot_sysvinit "${@}" -lh_chroot_hooks "${@}" -lh_chroot_localhooks "${@}" -lh_chroot_symlinks "${@}" -lh_chroot_hacks "${@}" -lh_chroot_interactive "${@}" +lh_chroot_tasks ${*} +lh_chroot_packageslists ${*} +lh_chroot_packages ${*} +lh_chroot_localpackages ${*} +lh_chroot_localpackageslists ${*} +lh_chroot_localization ${*} +lh_chroot_localincludes ${*} +lh_chroot_sysvinit ${*} +lh_chroot_hooks ${*} +lh_chroot_localhooks ${*} +lh_chroot_symlinks ${*} +lh_chroot_hacks ${*} +lh_chroot_interactive ${*} # Deconfiguring chroot -lh_chroot_linuximage remove "${@}" -lh_chroot_sources remove "${@}" -lh_chroot_apt remove "${@}" -lh_chroot_resolv remove "${@}" -lh_chroot_hosts remove "${@}" -lh_chroot_sysvrc remove "${@}" -lh_chroot_debianchroot remove "${@}" -lh_chroot_sysfs remove "${@}" -lh_chroot_proc remove "${@}" +lh_chroot_linuximage remove ${*} +lh_chroot_sources remove ${*} +lh_chroot_apt remove ${*} +lh_chroot_resolv remove ${*} +lh_chroot_hosts remove ${*} +lh_chroot_sysvrc remove ${*} +lh_chroot_debianchroot remove ${*} +lh_chroot_sysfs remove ${*} +lh_chroot_proc remove ${*} |