diff options
author | Erich Eckner <git@eckner.net> | 2020-03-18 15:06:54 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-03-18 15:06:54 +0100 |
commit | d970ccb156517c9d51c494c16945c15470fa576f (patch) | |
tree | 312a6dffd8b336585fbab57dc601ddb73304b707 /shutdownasap.conf.in | |
parent | 2df66f15f1fa6ff3bafc2b132bd07718ac4c25ac (diff) | |
download | shutdownasap-d970ccb156517c9d51c494c16945c15470fa576f.tar.xz |
additionalWatchHook() new
Diffstat (limited to 'shutdownasap.conf.in')
-rwxr-xr-x | shutdownasap.conf.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shutdownasap.conf.in b/shutdownasap.conf.in index cfd9f91..7558407 100755 --- a/shutdownasap.conf.in +++ b/shutdownasap.conf.in @@ -30,6 +30,20 @@ beforeWatchHook() { true } +# hook to execute if we believe, the system should come down +# If this hook returns with 0, everything is ok - if it returns with 1, +# we should keep waiting for shutdown (and ask this hook again). +additionalWatchHook() { + if command -v check-if-bareos-backup-is-running; then + if ! sudo check-if-bareos-backup-is-running; then + return 1 + else + return 0 + fi + fi + return 0 +} + # hook to execute before shutting down beforeShutDownHook() { if command -v doalogwatch >/dev/null; then |