override with config in storage root if it exists
This commit is contained in:
parent
22322f5d5f
commit
a7beb72168
|
@ -38,6 +38,13 @@ if [ -f /etc/mailinabox.conf ]; then
|
||||||
cat /etc/mailinabox.conf | sed s/^/DEFAULT_/ >/tmp/mailinabox.prev.conf
|
cat /etc/mailinabox.conf | sed s/^/DEFAULT_/ >/tmp/mailinabox.prev.conf
|
||||||
source /tmp/mailinabox.prev.conf
|
source /tmp/mailinabox.prev.conf
|
||||||
rm -f /tmp/mailinabox.prev.conf
|
rm -f /tmp/mailinabox.prev.conf
|
||||||
|
|
||||||
|
# Since this is a second run, attempt to read overridden settings from $STORAGE_ROOT/mailinabox.conf
|
||||||
|
if [ -f $DEFAULT_STORAGE_ROOT/mailinabox.conf ]; then
|
||||||
|
cat $DEFAULT_STORAGE_ROOT/mailinabox.conf | sed s/^/DEFAULT_/ >/tmp/mailinabox.prev.conf
|
||||||
|
source /tmp/mailinabox.prev.conf
|
||||||
|
rm -f /tmp/mailinabox.prev.conf
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
FIRST_TIME_SETUP=1
|
FIRST_TIME_SETUP=1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue