Set $PATH in hashboot.sh; bugfix in initscript; version 0.5

This commit is contained in:
tastytea 2015-06-08 01:43:23 +02:00
parent a7996b9bae
commit 7ed3038082
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,6 @@
* 2015-06-08 tastytea <tastytea@tastytea.de>
Bug fixes
Version 0.5
* 2015-06-05 tastytea <tastytea@tastytea.de>
Changed to be not interactive while checking to work with systemd
* 2015-06-05 tastytea <tastytea@tastytea.de>

View File

@ -3,7 +3,9 @@
#Exit codes: 0 = success, 1 = wrong usage, 2 = not root, 3 = no hasher found,
#4 = checksum mismatch, 5 = write error
VERSION="0.4"
VERSION="0.5"
PATH="/bin:/usr/bin:/sbin:/usr/sbin"
DIGEST_FILE="/var/lib/hashboot.digest"
LOG_FILE="/tmp/hashboot.log"
BACKUP_FILE="/var/cache/boot-backup.tar.gz"

View File

@ -27,8 +27,9 @@ start()
sh
return 4
elif [ $? != 0 ]
then
return $?
fi
eend 0
}
}