mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-06 00:37:06 +00:00
See #1340. Run setup/start-encrypted.sh instead of setup/start.sh. After reboots, login to your box and run tools/startup.sh.
12 lines
225 B
Bash
Executable File
12 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mountpoint="$(setup/ehdd/create_hdd.sh -mountpoint)"
|
|
|
|
if ! mount | grep "$mountpoint" >/dev/null; then
|
|
# not mounted
|
|
exit 0
|
|
fi
|
|
umount "$mountpoint" || exit 1
|
|
cryptsetup luksClose c1
|
|
losetup -d /dev/loop0
|