syncthing-app/start.sh

30 lines
1.3 KiB
Bash
Raw Normal View History

2017-05-05 11:19:38 +00:00
#!/bin/bash
set -eu
mkdir -p /app/data/config
2017-05-05 11:19:38 +00:00
# if this if the first run, generate a useful config
if [ ! -f /app/data/config/config.xml ]; then
2018-02-26 22:39:33 +00:00
echo "=> Generating config"
2018-02-26 22:51:26 +00:00
STNODEFAULTFOLDER=1 /app/code/syncthing --generate="/app/data/config"
2018-02-26 22:39:33 +00:00
# The password value was determined by reading config.xml and setting value in the GUI
xmlstarlet ed --inplace \
--subnode "//configuration/gui" -t elem -n user -v "admin" \
--subnode "//configuration/gui" -t elem -n password -v '$2a$10$93OsgwAMD4NcPFTpGDnuTORMMbj5dc1ZlYUPrQCcy1N/Bsy9scUvK' \
/app/data/config/config.xml
2017-05-05 11:19:38 +00:00
fi
# Set the listenAddress and the gui enabled to make sure user doesnt lock themselves out by accident.
2018-02-26 22:46:02 +00:00
sed -e "s,<listenAddress>.*</listenAddress>,<listenAddress>tcp://:${SYNC_PORT}</listenAddress>," -i /app/data/config/config.xml
sed -e 's,<gui .*>,<gui enabled="true" tls="false" debugging="false">,' -i /app/data/config/config.xml
2017-06-10 09:25:07 +00:00
chown -R cloudron:cloudron /app/data/config /app/data
2018-02-26 22:39:33 +00:00
# -no-browser opens up the browser (for desktop app preumably)
2018-02-26 22:51:54 +00:00
# auditfile "-" means log to stdout
echo "=> Starting syncthing"
2018-02-26 22:51:54 +00:00
STNOUPGRADE=1 exec /usr/local/bin/gosu cloudron:cloudron /app/code/syncthing -gui-address=0.0.0.0:3000 -home=/app/data/config -no-browser -auditfile=-
2017-05-05 11:19:38 +00:00