diff options
author | Ondrej Kubik <ondrej.kubik@canonical.com> | 2018-02-22 13:14:03 +0000 |
---|---|---|
committer | Ondrej Kubik <ondrej.kubik@canonical.com> | 2018-02-22 13:14:03 +0000 |
commit | fd47e10e523ab687a470484ee62e502cf82bf7bd (patch) | |
tree | 45811552a3ed967c651be4895b4b0b182d6407d1 /snap/hooks | |
parent | e3bd1c4d23baefa9a321b6501c2ea1ae5893aaa3 (diff) | |
download | wekan-fd47e10e523ab687a470484ee62e502cf82bf7bd.tar.gz wekan-fd47e10e523ab687a470484ee62e502cf82bf7bd.tar.bz2 wekan-fd47e10e523ab687a470484ee62e502cf82bf7bd.zip |
Tuning services life cycle
Signed-off-by: Ondrej Kubik <ondrej.kubik@canonical.com>
Diffstat (limited to 'snap/hooks')
-rwxr-xr-x | snap/hooks/configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/snap/hooks/configure b/snap/hooks/configure index 89ada296..5dcea5b9 100755 --- a/snap/hooks/configure +++ b/snap/hooks/configure @@ -17,6 +17,7 @@ if [ "$value" = "true" ]; then 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 stop ${SNAP_NAME}.caddy 2>&1 || true snapctl start --enable ${SNAP_NAME}.caddy 2>&1 || true else snapctl stop --disable ${SNAP_NAME}.caddy 2>&1 || true @@ -26,8 +27,9 @@ value=$(snapctl get disable-mongodb) if [ "$value" = "true" ]; then snapctl stop --disable ${SNAP_NAME}.mongodb 2>&1 || true else + snapctl stop ${SNAP_NAME}.mongodb 2>&1 || true snapctl start --enable ${SNAP_NAME}.mongodb 2>&1 || true fi # restart all services -snapctl restart ${SNAP_NAME} 2>&1 || true +snapctl restart ${SNAP_NAME}.wekan 2>&1 || true |