diff options
author | Daniel Baumann <daniel@debian.org> | 2011-07-19 19:03:01 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-07-19 19:03:01 +0200 |
commit | fb2bc99fd5f02cf87061159184640505bc428c5a (patch) | |
tree | 77a35e710ab57fbe070bc76cf9dca4b47c7bf037 /scripts/build/lb_binary_local-hooks | |
parent | b70ec215abe8999a67f95d02305d722adf760620 (diff) | |
download | vyos-live-build-fb2bc99fd5f02cf87061159184640505bc428c5a.tar.gz vyos-live-build-fb2bc99fd5f02cf87061159184640505bc428c5a.zip |
Reworking binary hooks helper.
Diffstat (limited to 'scripts/build/lb_binary_local-hooks')
-rwxr-xr-x | scripts/build/lb_binary_local-hooks | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/scripts/build/lb_binary_local-hooks b/scripts/build/lb_binary_local-hooks deleted file mode 100755 index f9a8f61a3..000000000 --- a/scripts/build/lb_binary_local-hooks +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh - -## live-build(7) - System Build Scripts -## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org> -## -## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -## This is free software, and you are welcome to redistribute it -## under certain conditions; see COPYING for details. - - -set -e - -# Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh - -# Setting static variables -DESCRIPTION="$(Echo 'execute local hooks in binary')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -Echo_message "Begin executing local hooks..." - -# Requiring stage file -Require_stagefile .stage/config .stage/bootstrap - -# Checking stage file -Check_stagefile .stage/binary_local-hooks - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Processing local-hooks -if Find_files config/hooks/*.binary -then - for HOOK in config/hooks/*.binary - do - # Making hook executable - if [ ! -x "${HOOK}" ] - then - chmod +x "${HOOK}" - fi - - # Executing hook - ./"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;} - done - - # Creating stage file - Create_stagefile .stage/binary_local-hooks -fi |