aboutsummaryrefslogtreecommitdiff
path: root/net-im/py-matrix-synapse/files/synapse.in
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/py-matrix-synapse/files/synapse.in')
-rw-r--r--net-im/py-matrix-synapse/files/synapse.in12
1 files changed, 3 insertions, 9 deletions
diff --git a/net-im/py-matrix-synapse/files/synapse.in b/net-im/py-matrix-synapse/files/synapse.in
index c9cfe42e327a..b7dd4fa57eed 100644
--- a/net-im/py-matrix-synapse/files/synapse.in
+++ b/net-im/py-matrix-synapse/files/synapse.in
@@ -33,21 +33,15 @@ start_precmd=start_precmd
start_precmd()
{
if [ ! -d ${synapse_pidfile%/*} ] ; then
- install -d -o %%USERS%% -g wheel ${synapse_pidfile%/*};
+ install -d -o ${synapse_user} -g wheel ${synapse_pidfile%/*};
fi
if [ ! -d ${synapse_dbdir} ] ; then
- install -d -o %%USERS%% -g wheel ${synapse_dbdir};
+ install -d -o ${synapse_user} -g wheel ${synapse_dbdir};
fi
if [ ! -d ${synapse_logdir} ] ; then
- install -d -o %%USERS%% -g wheel ${synapse_logdir};
- fi
-
- if $(grep -q CHANGEME ${synapse_conf}) ; then
- echo "Error: Default secret values in config."
- echo "Please replace the CHANGEME values in ${synapse_conf}"
- exit 1
+ install -d -o ${synapse_user} -g wheel ${synapse_logdir};
fi
}