mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
61 lines
1.4 KiB
Bash
61 lines
1.4 KiB
Bash
#####
|
|
##### This file is part of Mail-in-a-Box-LDAP which is released under the
|
|
##### terms of the GNU Affero General Public License as published by the
|
|
##### Free Software Foundation, either version 3 of the License, or (at
|
|
##### your option) any later version. See file LICENSE or go to
|
|
##### https://github.com/downtownallday/mailinabox-ldap for full license
|
|
##### details.
|
|
#####
|
|
|
|
|
|
|
|
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"
|
|
|
|
# wait for management daemon
|
|
record "wait for management daemon"
|
|
while ! management/cli.py user >>$TEST_OF 2>&1; do
|
|
record "sleep 1"
|
|
sleep 1
|
|
done
|
|
|
|
popd >/dev/null
|
|
|
|
test_end
|
|
}
|
|
|
|
|
|
|
|
suite_start "ehdd"
|
|
|
|
test_ehdd_restart
|
|
|
|
suite_end
|