From 2800164883ad19e22a8e8fe35d5f3c46eff9d1d7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 5 Dec 2016 08:48:22 +0100 Subject: Enabling pre and post hooks in container commands. Signed-off-by: Daniel Baumann --- lib/container/list | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'lib/container/list') diff --git a/lib/container/list b/lib/container/list index 3073853..f9f46fb 100755 --- a/lib/container/list +++ b/lib/container/list @@ -21,6 +21,7 @@ set -e COMMAND="$(basename ${0})" CONFIG="/etc/container-tools/config" +HOOKS="/etc/container-tools/hooks" MACHINES="/var/lib/machines" VERSION="$(container version)" @@ -115,6 +116,15 @@ HOST="${HOST:-$(hostname -f)}" CSV_SEPARATOR="${CSV_SEPARATOR:-,}" +# Pre hooks +for FILE in "${HOOKS}/pre-${COMMAND}".* "${HOOKS}/${NAME}.pre-${COMMAND}" +do + if [ -x "${FILE}" ] + then + "${FILE}" + fi +done + # Run List () { @@ -403,3 +413,12 @@ EOF ;; esac + +# Post hooks +for FILE in "${HOOKS}/post-${COMMAND}".* "${HOOKS}/${NAME}.post-${COMMAND}" +do + if [ -x "${FILE}" ] + then + "${FILE}" + fi +done -- cgit v1.2.3