honor comments in config file

This commit is contained in:
tastytea 2015-09-30 00:12:40 +02:00
parent e0f28e36f8
commit 92dcb3e01d
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,7 @@ then
#Look for config file and set ${MBR_DEVICE}.
if [ -f ${CONFIG_FILE} ]
then
MBR_DEVICE=$(grep mbr_device ${CONFIG_FILE} | awk '{print $3}')
MBR_DEVICE=$(grep ^mbr_device ${CONFIG_FILE} | awk '{print $3}')
[ $? != 0 ] && die 9 "Error reading config file"
#If not found, create one and ask for ${MBR_DEVICE}
else
@ -82,6 +82,7 @@ then
else
die 7 "Error writing ${DIGEST_FILE}"
fi
#Backup of good files
tar -czpPf ${BACKUP_FILE} ${MBR_TMP} /boot ${DIGEST_FILE}
if [ $? == 0 ]