summaryrefslogtreecommitdiffstats
path: root/share/scripts/debootstrap
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2016-12-11 12:34:23 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2016-12-11 12:34:23 +0000
commit83e6c0c55c255c069e5ee5bf9cb2d8d5f2b83f2a (patch)
treed10157feb045e099bacae644b0832c1522560f07 /share/scripts/debootstrap
parentAdding upstream version 20161201. (diff)
downloadopen-infrastructure-compute-tools-83e6c0c55c255c069e5ee5bf9cb2d8d5f2b83f2a.tar.xz
open-infrastructure-compute-tools-83e6c0c55c255c069e5ee5bf9cb2d8d5f2b83f2a.zip
Adding upstream version 20161210.upstream/20161210
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rwxr-xr-xshare/scripts/debootstrap19
1 files changed, 19 insertions, 0 deletions
diff --git a/share/scripts/debootstrap b/share/scripts/debootstrap
index 9c76ba0..2da573d 100755
--- a/share/scripts/debootstrap
+++ b/share/scripts/debootstrap
@@ -20,6 +20,7 @@ set -e
SCRIPT="${0}"
+HOOKS="/etc/container-tools/hooks"
MACHINES="/var/lib/machines"
Parameters ()
@@ -137,6 +138,15 @@ case "${MIRROR}" in
;;
esac
+# Pre hooks
+for FILE in "${HOOKS}/pre-${SCRIPT}".* "${HOOKS}/${NAME}.pre-${SCRIPT}"
+do
+ if [ -x "${FILE}" ]
+ then
+ "${FILE}"
+ fi
+done
+
mkdir -p "${MACHINES}"
debootstrap --arch=${ARCHITECTURE} --include=${INCLUDE} ${DISTRIBUTION} ${MACHINES}/${NAME} ${MIRROR}
@@ -148,3 +158,12 @@ echo "${NAME}" > "${MACHINES}/${NAME}/etc/hostname"
# Setting root password
echo root:${PASSWORD} | chroot "${MACHINES}/${NAME}" chpasswd
echo "${NAME}: root password set to '${PASSWORD}'."
+
+# Post hooks
+for FILE in "${HOOKS}/post-${SCRIPT}".* "${HOOKS}/${NAME}.post-${SCRIPT}"
+do
+ if [ -x "${FILE}" ]
+ then
+ "${FILE}"
+ fi
+done