mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
removed hardcoded /home directory to apply the existing configuration options for STORAGE_USER/ROOT if they exist
Highest priority: the pre set STORAGE_ROOT/USER, midmost priority: the config settings, lowest priority: the default one. fixes #309; closes #311
This commit is contained in:
parent
e330abd587
commit
005315cd29
@ -87,17 +87,33 @@ if [ -z "$SKIP_NETWORK_CHECKS" ]; then
|
|||||||
. setup/network-checks.sh
|
. setup/network-checks.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# For the first time (if the config file (/etc/mailinabox.conf) not exists):
|
||||||
# Create the user named "user-data" and store all persistent user
|
# Create the user named "user-data" and store all persistent user
|
||||||
# data (mailboxes, etc.) in that user's home directory.
|
# data (mailboxes, etc.) in that user's home directory.
|
||||||
|
#
|
||||||
|
# If the config file exists:
|
||||||
|
# Apply the existing configuration options for STORAGE_USER/ROOT
|
||||||
|
if [ -z "$STORAGE_USER" ]; then
|
||||||
|
STORAGE_USER=$([[ -z "$DEFAULT_STORAGE_USER" ]] && echo "user-data" || echo "$DEFAULT_STORAGE_USER")
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z "$STORAGE_ROOT" ]; then
|
if [ -z "$STORAGE_ROOT" ]; then
|
||||||
STORAGE_USER=user-data
|
STORAGE_ROOT=$([[ -z "$DEFAULT_STORAGE_ROOT" ]] && echo "/home/$STORAGE_USER" || echo "$DEFAULT_STORAGE_ROOT")
|
||||||
if [ ! -d /home/$STORAGE_USER ]; then useradd -m $STORAGE_USER; fi
|
fi
|
||||||
STORAGE_ROOT=/home/$STORAGE_USER
|
|
||||||
|
# Create the STORAGE_USER if it not exists
|
||||||
|
if ! id -u $STORAGE_USER >/dev/null 2>&1; then
|
||||||
|
useradd -m $STORAGE_USER
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create the STORAGE_ROOT if it not exists
|
||||||
|
if [ ! -d $STORAGE_ROOT ]; then
|
||||||
mkdir -p $STORAGE_ROOT
|
mkdir -p $STORAGE_ROOT
|
||||||
echo $(setup/migrate.py --current) > $STORAGE_ROOT/mailinabox.version
|
echo $(setup/migrate.py --current) > $STORAGE_ROOT/mailinabox.version
|
||||||
chown $STORAGE_USER.$STORAGE_USER $STORAGE_ROOT/mailinabox.version
|
chown $STORAGE_USER.$STORAGE_USER $STORAGE_ROOT/mailinabox.version
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Save the global options in /etc/mailinabox.conf so that standalone
|
# Save the global options in /etc/mailinabox.conf so that standalone
|
||||||
# tools know where to look for data.
|
# tools know where to look for data.
|
||||||
cat > /etc/mailinabox.conf << EOF;
|
cat > /etc/mailinabox.conf << EOF;
|
||||||
|
Loading…
Reference in New Issue
Block a user