diff options
Diffstat (limited to 'sentinel-proxy/files/sentinel-reload.sh')
| -rwxr-xr-x | sentinel-proxy/files/sentinel-reload.sh | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/sentinel-proxy/files/sentinel-reload.sh b/sentinel-proxy/files/sentinel-reload.sh new file mode 100755 index 0000000..f21eceb --- /dev/null +++ b/sentinel-proxy/files/sentinel-reload.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# Reload all sentinel components to apply the newest configuration. +# The reload is done by running scripts located in HOOKS_DIR + +HOOKS_DIR="/usr/libexec/sentinel/reload_hooks.d/" + +if ! [ -d "${HOOKS_DIR}" ]; then +    echo "Failed to reload Sentinel: hooks dir does not exist" >&2 +    return 1 +fi + +for reload_script in "${HOOKS_DIR}"/*; do +    [ -x "${reload_script}" ] || continue +    "${reload_script}" +done | 
