diff options
author | Daniel Baumann <daniel@debian.org> | 2009-01-26 15:01:22 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:40 +0100 |
commit | 58d6b235f955c9d8b7f8bd7c03360b712840b269 (patch) | |
tree | 19fe4e0985afab42d1e2a219054bae8ea1803cc1 /helpers | |
parent | 67a0daf67130c29541ccfde5eda0ef4eaf6c3278 (diff) | |
download | vyos-live-build-58d6b235f955c9d8b7f8bd7c03360b712840b269.tar.gz vyos-live-build-58d6b235f955c9d8b7f8bd7c03360b712840b269.zip |
Fixing and unifying handling of hooks.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_chroot_hooks | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/helpers/lh_chroot_hooks b/helpers/lh_chroot_hooks index 6296b468d..64a652655 100755 --- a/helpers/lh_chroot_hooks +++ b/helpers/lh_chroot_hooks @@ -43,7 +43,9 @@ Check_lockfile .lock Create_lockfile .lock # Processing hooks -for HOOK in ${LH_PACKAGES_LISTS} ${LH_TASKS} +HOOKS="$(echo ${LH_HOOKS} ${LH_PACKAGES_LISTS} ${LH_TASKS} | sed -e 's| |\n|g' | sort -u)" + +for HOOK in ${HOOKS} do if [ -f ${LH_BASE:-/usr/share/live-helper}/hooks/"${HOOK}" ] then @@ -57,7 +59,7 @@ do fi # Executing hook - Chroot chroot "/root/${HOOK}" + Chroot chroot "./root/${HOOK}" # Removing hook rm -f chroot/root/"${HOOK}" @@ -66,8 +68,3 @@ do Create_stagefile .stage/chroot_hooks fi done - -if [ -n "${LH_HOOKS}" ] && [ "${LH_HOOKS}" != "none" ] -then - LH_DEBCONF_FRONTEND="readline" LH_DEBCONF_PRIORITY="low" LH_DEBCONF_NOWARNINGS="no" Chroot chroot "${LH_HOOKS}" -fi |