#!/bin/bash
set -eu
mkdir -p /app/data/config
chown -R cloudron:cloudron /app/data/config /app/data &
# if this if the first run, generate a useful config
if [ ! -f /app/data/config/config.xml ]; then
echo "=> Generating config"
/app/code/syncthing --generate="/app/data/config"
# don't take the whole volume with the default so that we can add additional folders
sed -i "s/path=\"\/root\/Sync\/\" /path=\"\/app\/data\/default\/\"/g" /app/data/config/config.xml
sed -e 's,.*,tcp://:22000,' -i /app/data/config/config.xml
fi
cat >/run/ldap.conf <