1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00
mailinabox/ehdd/start-encrypted.sh
downtownallday 7fa070aed8 avoid using PYTHONPATH to enable setup mod hooks, which is problematic for managment command line tool use
- save the directory path to setup mods in /etc/mailinabox.conf
- dynamically add the path to python during hook initialization
2022-10-24 16:24:44 -04:00

41 lines
1.1 KiB
Bash
Executable File

#!/bin/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.
#####
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"
exit 1
fi