diff options
Diffstat (limited to 'global/overlay/etc/puppet/modules/sunet/templates/nagioshost/check_reboot.erb')
-rwxr-xr-x | global/overlay/etc/puppet/modules/sunet/templates/nagioshost/check_reboot.erb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/global/overlay/etc/puppet/modules/sunet/templates/nagioshost/check_reboot.erb b/global/overlay/etc/puppet/modules/sunet/templates/nagioshost/check_reboot.erb deleted file mode 100755 index aa0bd5d..0000000 --- a/global/overlay/etc/puppet/modules/sunet/templates/nagioshost/check_reboot.erb +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -declare -rx PROGNAME=${0##*/} -declare -rx PROGPATH=${0%/*}/ - -function cleanup { - #if [ -e "$TMPFILE" ] ; then - #rm "$TMPFILE" - #fi - exit $1 -} - -if [ -r "${PROGPATH}utils.sh" ] ; then - source "${PROGPATH}utils.sh" -else - echo "Can't find utils.sh." - printf "Currently being run from %s\n" "$PROGPATH" - # since we couldn't define STATE_UNKNOWN since reading utils.sh failed, we use 3 here but everywhere else after this use cleanup $STATE - cleanup 3 -fi - -STATE=$STATE_UNKNOWN - - -if [ -f /var/run/reboot-required.pkgs ] -then - pkg=`cat /var/run/reboot-required.pkgs` -fi - -if [ -f /var/run/reboot-required ] -then - echo "Reboot WARNING: System reboot required by package $pkg" - cleanup $STATE_WARNING; -fi - echo "Reboot OK: No reboot required" - cleanup $STATE_OK; -cleanup $STATE; - |