mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-20 02:52:11 +00:00
modifying start.sh to check if the environment variable DISABLE_NEXTCLOUD is set to 1
if it is set 1, it'll skip setting up Nextcloud
This commit is contained in:
parent
a70ba94b0c
commit
8eb89c2b4e
@ -106,7 +106,13 @@ source setup/dkim.sh
|
||||
source setup/spamassassin.sh
|
||||
source setup/web.sh
|
||||
source setup/webmail.sh
|
||||
source setup/nextcloud.sh
|
||||
|
||||
if [ "${DISABLE_NEXTCLOUD} == "1" ]; then
|
||||
echo Skipping Nextcloud installation
|
||||
else
|
||||
source setup/nextcloud.sh
|
||||
fi
|
||||
|
||||
source setup/zpush.sh
|
||||
source setup/management.sh
|
||||
source setup/munin.sh
|
||||
|
Loading…
Reference in New Issue
Block a user