X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=dsa-nagios-checks%2Fchecks%2Fdsa-check-file_age;h=546e5f2f343c8ba285468b7342398a69f176331d;hb=e37bf5d88bb67886f806d05e6a4b76537b8b24a9;hp=e94cfadb0e92e8103cd4d9bdcb58aaed16d87b9a;hpb=7ac092d208fbe69ac32f9519edda5b80f8c9d234;p=mirror%2Fdsa-nagios.git diff --git a/dsa-nagios-checks/checks/dsa-check-file_age b/dsa-nagios-checks/checks/dsa-check-file_age old mode 100644 new mode 100755 index e94cfad..546e5f2 --- a/dsa-nagios-checks/checks/dsa-check-file_age +++ b/dsa-nagios-checks/checks/dsa-check-file_age @@ -1,5 +1,26 @@ #!/bin/sh # vim: set fileencoding=utf-8 ai noet sts=8 sw=8 tw=0: +# +# Copyright © 2009 Stephen Gran +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FILE='' INTERVAL=60 @@ -33,10 +54,10 @@ done if [ -z "$FILE" ]; then echo "Need file argument!" >&2 - usage 1 + usage 3 fi -if [ ! -r "$FILE" ]; then +if [ ! -e "$FILE" ]; then printf "state file %s is missing or unreadable\n" $FILE exit 2 fi