mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
35 lines
1.1 KiB
Bash
Executable file
35 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
exec >> $SNAP_DATA/hook.log 2>&1
|
|
echo "$(date '+%Y-%m-%d %H:%M:%S') $0: Entering hook"
|
|
|
|
set -x
|
|
|
|
# read wekan config
|
|
. $SNAP/bin/config
|
|
|
|
# settings were altered by user, safest way to get them applied is to restart service
|
|
# first check if caddy service is enabled
|
|
value=$(snapctl get caddy-enabled)
|
|
if [ "$value" = "true" ]; then
|
|
# update caddy file
|
|
bind_port=$(snapctl get caddy-bind-port)
|
|
port=$(snapctl get port)
|
|
[ "x" != "x${bind_port}" ] && sed -i 's|proxy / localhost:.* {|proxy / localhost:'"${bind_port}"' {|g' $SNAP_COMMON/Caddyfile
|
|
[ "x" != "x$port" ] && sed -i 's|http://:.*|http://:'"${port}"'|g' $SNAP_COMMON/Caddyfile
|
|
snapctl start --enable ${SNAP_NAME}.caddy 2>&1 || true
|
|
snapctl restart ${SNAP_NAME}.caddy 2>&1 || true
|
|
else
|
|
snapctl stop --disable ${SNAP_NAME}.caddy 2>&1 || true
|
|
fi
|
|
|
|
value=$(snapctl get disable-mongodb)
|
|
if [ "$value" = "true" ]; then
|
|
snapctl stop --disable ${SNAP_NAME}.mongodb 2>&1 || true
|
|
else
|
|
snapctl start --enable ${SNAP_NAME}.mongodb 2>&1 || true
|
|
snapctl restart ${SNAP_NAME}.mongodb 2>&1 || true
|
|
fi
|
|
|
|
# restart all services
|
|
snapctl restart ${SNAP_NAME}.wekan 2>&1 || true
|