[BOOT-5139] support for roles

This commit is contained in:
Michael Boelen 2016-10-26 12:34:56 +02:00
parent b95e44a526
commit 9203b01f88
1 changed files with 11 additions and 8 deletions

View File

@ -362,17 +362,20 @@
Display --indent 2 --text "- Checking presence LILO" --result "${STATUS_OK}" --color GREEN
LogText "Checking password option LILO"
FIND=$(${EGREPBINARY} 'password[[:space:]]?=' ${LILOCONFFILE} | ${GREPBINARY} -v "^#")
if [ -z "${FIND}" && $MACHINE_ROLE = "server" || "workstation" ]; then
if [ -z "${FIND}" ]; then
if [ "${MACHINE_ROLE}" = "server" -o "${MACHINE_ROLE}" = "workstation" ]; then
Display --indent 4 --text "- Password option presence " --result "${STATUS_WARNING}" --color RED
LogText "Result: no password set for LILO. Bootloader is unprotected to dropping to single user mode or unauthorized access to devices/data."
ReportSuggestion ${TEST_NO} "Add a password to LILO, by adding a line to the lilo.conf file, above the first line saying 'image=<name>': password=<password>"
ReportWarning ${TEST_NO} "No password set on LILO bootloader"
AddHP 0 2
elif [ -z "${FIND}" && $MACHINE_ROLE = "personal"]; then
elif [ "${MACHINE_ROLE}" = "personal"]; then
Display --indent 4 --text "- Password option presence " --result "${STATUS_WARNING}" --color yellow
LogText "Result: no password set for LILO. Bootloader is unprotected to dropping to single user mode or unauthorized access to devices/data."
ReportSuggestion ${TEST_NO} "No password set on LILO bootloader. Add a password to LILO, by adding a line to the lilo.conf file, above the first line saying 'image=<name>': password=<password>"
AddHP 0 2
AddHP 1 2
else
LogText "Result: no password set for LILO, with unknown machine role"
fi
else
Display --indent 4 --text "- Password option presence " --result "${STATUS_OK}" --color GREEN