1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-06 00:37:06 +00:00
mailinabox/setup/ehdd/umount.sh
downtownallday 42d471ba7f Initial commit to support a luks formatted partition holding user-data.
See #1340.

Run setup/start-encrypted.sh instead of setup/start.sh.

After reboots, login to your box and run tools/startup.sh.
2020-01-20 12:26:50 -05:00

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