diff options
Diffstat (limited to 'helpers/lh_binary_chroot')
-rwxr-xr-x | helpers/lh_binary_chroot | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/helpers/lh_binary_chroot b/helpers/lh_binary_chroot index b92f94a62..4c81a30d8 100755 --- a/helpers/lh_binary_chroot +++ b/helpers/lh_binary_chroot @@ -9,21 +9,21 @@ set -e -# Source common functions -for FUNCTION in /usr/share/live-helper/functions/*.sh +# Including common functions +LH_BASE="${LH_BASE:-/usr/share/live-helper}" + +for FUNCTION in "${LH_BASE}"/functions/*.sh do - . ${FUNCTION} + . "${FUNCTION}" done -# Set static variables +# Setting static variables DESCRIPTION="copy chroot into chroot" HELP="" USAGE="${PROGRAM} [--force]" Arguments "${@}" -Echo_debug "Init ${PROGRAM}" - # Reading configuration files Read_conffile config/common Read_conffile config/bootstrap @@ -32,7 +32,8 @@ Read_conffile config/binary Read_conffile config/source Set_defaults -Breakpoint "binary_chroot: Init" +Echo_message "Begin copying chroot..." +Echo_message "This may take a while." # Requiring stage file Require_stagefile .stage/bootstrap @@ -62,7 +63,6 @@ ${LH_ROOT_COMMAND} rm -rf chroot/chroot ${LH_ROOT_COMMAND} rm -rf chroot.tmp # Copying new chroot -Echo_message "Copying chroot, this can take a while." ${LH_ROOT_COMMAND} cp -a chroot chroot.tmp ${LH_ROOT_COMMAND} mv chroot.tmp chroot/chroot |