diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-12-05 07:48:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-12-11 12:13:01 +0000 |
commit | 2800164883ad19e22a8e8fe35d5f3c46eff9d1d7 (patch) | |
tree | 81b14da5cb64cc5893e05b5b5d9d9fd07db9b5a0 /lib/container/move | |
parent | Enabling pre and post hooks in container program. (diff) | |
download | compute-tools-2800164883ad19e22a8e8fe35d5f3c46eff9d1d7.tar.xz compute-tools-2800164883ad19e22a8e8fe35d5f3c46eff9d1d7.zip |
Enabling pre and post hooks in container commands.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'lib/container/move')
-rwxr-xr-x | lib/container/move | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/container/move b/lib/container/move index 83e6a20..6e855e4 100755 --- a/lib/container/move +++ b/lib/container/move @@ -21,6 +21,7 @@ set -e COMMAND="$(basename ${0})" CONFIG="/etc/container-tools/config" +HOOKS="/etc/container-tools/hooks" MACHINES="/var/lib/machines" Parameters () @@ -127,6 +128,15 @@ case "${FORCE}" in ;; esac +# Pre hooks +for FILE in "${HOOKS}/pre-${COMMAND}".* "${HOOKS}/${NAME}.pre-${COMMAND}" +do + if [ -x "${FILE}" ] + then + "${FILE}" + fi +done + # Run mv "${CONFIG}/${OLD}.conf" "${CONFIG}/${NEW}.conf" mv "${MACHINES}/${OLD}" "${MACHINES}/${NEW}" @@ -160,3 +170,12 @@ fi # config sed -i -e "s|${OLD}|${NEW}|g" "${CONFIG}/${NEW}.conf" + +# Post hooks +for FILE in "${HOOKS}/post-${COMMAND}".* "${HOOKS}/${NAME}.post-${COMMAND}" +do + if [ -x "${FILE}" ] + then + "${FILE}" + fi +done |