summary refs log tree commit diff
path: root/synctl
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-09-08 22:48:40 +0100
committerErik Johnston <erik@matrix.org>2014-09-08 22:48:46 +0100
commit91b370650ab288de6cf22765b43d9ffb7907beb2 (patch)
tree095078ea17710004d8963e896abb43e392e1ba56 /synctl
parentApparently we can't do txn.rollback(), so raise and catch an exception instead. (diff)
downloadsynapse-91b370650ab288de6cf22765b43d9ffb7907beb2.tar.xz
Don't autogen config in synctl for the same reasons we don't turn of --generate-config by default on the homeserver - it is liable to confuse people who have moved the config file or have chosen a non standard location.
Also, don't override log file location.
Diffstat (limited to 'synctl')
-rwxr-xr-xsynctl8
1 files changed, 2 insertions, 6 deletions
diff --git a/synctl b/synctl
index 99dc545ba5..ff9f6893e9 100755
--- a/synctl
+++ b/synctl
@@ -4,7 +4,6 @@ SYNAPSE="synapse/app/homeserver.py"
 
 CONFIGFILE="homeserver.yaml"
 PIDFILE="homeserver.pid"
-LOGFILE="homeserver.log"
 
 GREEN=$'\e[1;32m'
 NORMAL=$'\e[m'
@@ -14,15 +13,12 @@ set -e
 case "$1" in
   start)
     if [ ! -f "$CONFIGFILE" ]; then
-      echo "No config file found - generating a default one..."
-      $SYNAPSE -c "$CONFIGFILE" --generate-config
-      echo "Wrote $CONFIGFILE"
-      echo "You must now edit this file before continuing"
+      echo "No config file found"
       exit 1
     fi
 
     echo -n "Starting ..."
-    $SYNAPSE --daemonize -c "$CONFIGFILE" --pid-file "$PIDFILE" --log-file "$LOGFILE"
+    $SYNAPSE --daemonize -c "$CONFIGFILE" --pid-file "$PIDFILE"
     echo "${GREEN}started${NORMAL}"
     ;;
   stop)