Files
linux-cloud-router/debian-package/debian/prerm
T

19 lines
653 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
remove|deconfigure)
# Stop offering the tunnels, but leave strongSwan itself enabled: it is
# a shared service and may be in use by something other than this
# package. The connection files are removed on purge.
if [ -d /run/systemd/system ]; then
swanctl --terminate --ike remote-site >/dev/null 2>&1 || true
swanctl --terminate --ike road-warrior >/dev/null 2>&1 || true
# This package enabled wg-quick@wg0, so it takes it down again.
systemctl disable --now wg-quick@wg0 >/dev/null 2>&1 || true
fi
;;
esac
#DEBHELPER#