minor mistake corrected..

This commit is contained in:
xor 2015-10-04 21:39:51 +02:00
parent 44cc8b36e9
commit 3f375ef746
1 changed files with 3 additions and 4 deletions

View File

@ -135,15 +135,14 @@ then
#Compare actual hashes of MBR against saved hashes.
if [ "$(grep ${MBR_TMP} ${DIGEST_FILE})" != "$(grep ${MBR_TMP} ${DIGEST_FILE_TMP})" ]
then
[ -t "0" ] && echo "at least mbr must be written."
[ -t "0" ] && echo "mbr was faulty."
#future write separatly from files
fi
#Compare actual hashes of /boot against saved hashes.
if [ "$(grep -v ${MBR_TMP} ${DIGEST_FILE})" != "$(grep -v ${MBR_TMP} ${DIGEST_FILE_TMP})" ]
then
[ -t "0" ] && echo "mbr was faulty."
#if interactive ask if rewrite einzeln?
[ -t "0" ] && echo "any file was faulty."
#read z und so weiter..
#future: write per file and separatly from mbr
fi
mv ${DIGEST_FILE_TMP} ${DIGEST_FILE} || die 7
echo "List of hashes written to ${DIGEST_FILE}"