Changed exit 2 to exit 1 as it seems to be The Right Thing since exit 2 is misuse-something

This commit is contained in:
2013-12-26 18:58:45 +01:00
parent d344279e8d
commit 4c7b91bba4
5 changed files with 10 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ Warn=10 # Warn a how many percent full?
for bin in $Df $Awk $Sed $Logger $Mail; do
if [ ! -x $bin ]; then
echo "Can't execute $bin"
exit 2
exit 1
fi
done