1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

load vars ahead of functions

This commit is contained in:
downtownallday 2020-11-05 16:32:23 -05:00
parent c8ab05ebf1
commit 68ac593d7f

View File

@ -1,11 +1,12 @@
#!/bin/bash
# -*- indent-tabs-mode: t; tab-width: 4; -*-
source setup/functions.sh || exit 1 # load our functions
[ -e /etc/mailinabox.conf ] && source /etc/mailinabox.conf
[ -e /etc/cloudinabox.conf ] && source /etc/cloudinabox.conf
source setup/functions.sh || exit 1 # load our functions
create_turnserver_conf() {
if [ ! -e "$STORAGE_ROOT/voip/turnserver.conf" ]; then