Fixing problem when mongodb was not started at install/refresh

Signed-off-by: Ondrej Kubik <ondrej.kubik@canonical.com>
reviewable/pr1514/r1
Ondrej Kubik 7 years ago
parent 9084158aec
commit 1be8e5625f
  1. 6
      snap/hooks/configure
  2. 2
      snap/hooks/install

@ -1,6 +1,6 @@
#!/bin/bash
exec >> $SNAP_COMMON/hook.log 2>&1
exec >> $SNAP_DATA/hook.log 2>&1
echo "$(date '+%Y-%m-%d %H:%M:%S') $0: Entering hook"
set -x
@ -17,8 +17,8 @@ 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
snapctl restart ${SNAP_NAME}.caddy 2>&1 || true
else
snapctl stop --disable ${SNAP_NAME}.caddy 2>&1 || true
fi
@ -27,8 +27,8 @@ 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
snapctl restart ${SNAP_NAME}.mongodb 2>&1 || true
fi
# restart all services

@ -1,6 +1,6 @@
#!/bin/bash
exec >> $SNAP_COMMON/hook.log 2>&1
exec >> $SNAP_DATA/hook.log 2>&1
echo "$(date '+%Y-%m-%d %H:%M:%S') $0: Entering hook"
# coppy caddy file in place

Loading…
Cancel
Save