mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
31 lines
694 B
Bash
Executable File
31 lines
694 B
Bash
Executable File
#!/bin/bash
|
|
EHDD_IMG="$(ehdd/create_hdd.sh -location)"
|
|
|
|
[ -e /etc/mailinabox.conf ] && . /etc/mailinabox.conf
|
|
|
|
if [ ! -e "$EHDD_IMG" -a ! -z "$STORAGE_ROOT" -a \
|
|
-e "$STORAGE_ROOT/ssl/ssl_private_key.pem" ]; then
|
|
|
|
echo "System installed without encryption-at-rest"
|
|
|
|
elif [ ! -e "$EHDD_IMG" ]; then
|
|
|
|
echo "Creating a new encrypted HDD."
|
|
if [ -z "${NONINTERACTIVE:-}" ]; then
|
|
echo -n "How big should it be? Enter a number in gigabytes: "
|
|
read gb
|
|
else
|
|
gb="${EHDD_GB:-5}"
|
|
fi
|
|
ehdd/create_hdd.sh "$gb" || exit 1
|
|
|
|
fi
|
|
|
|
setup/start.sh $@
|
|
if [ $? -eq 0 ]; then
|
|
ehdd/postinstall.sh || exit 1
|
|
else
|
|
echo "setup/start.sh failed"
|
|
fi
|
|
|