mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
45 lines
910 B
Bash
45 lines
910 B
Bash
|
|
|
|
test_ehdd_restart() {
|
|
test_start "ehdd-restart"
|
|
|
|
# a keyfile must be in use, to avoid user interaction
|
|
if [ -z "$EHDD_KEYFILE" ]; then
|
|
test_failure "EHDD_KEYFILE must be set"
|
|
test_end
|
|
return
|
|
fi
|
|
|
|
# the keyfile must exist
|
|
if [ ! -e "$EHDD_KEYFILE" ]; then
|
|
test_failure "Keyfile path '$EHDD_KEYFILE' does not exist"
|
|
test_end
|
|
return
|
|
fi
|
|
|
|
# shutdown and unmount
|
|
local rc=0
|
|
pushd .. >/dev/null
|
|
|
|
record "[Run ehdd/shutdown.sh]"
|
|
ehdd/shutdown.sh >>$TEST_OF 2>&1
|
|
[ $? -ne 0 ] && test_failure "Could not unmount encryption-at-rest drive"
|
|
|
|
# startup
|
|
record "[Run ehdd/run-this-after-reboot.sh]"
|
|
ehdd/run-this-after-reboot.sh >>$TEST_OF 2>&1
|
|
[ $? -ne 0 ] && test_failure "Could not start encryption-at-rest"
|
|
|
|
popd >/dev/null
|
|
|
|
test_end
|
|
}
|
|
|
|
|
|
|
|
suite_start "ehdd"
|
|
|
|
test_ehdd_restart
|
|
|
|
suite_end
|