headscale/docs/packaging/postremove.sh
Kristoffer Dalby d6224f2454
Initial work on nfpm
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2023-04-06 11:58:48 +02:00

16 lines
405 B
Bash

#!/bin/sh
# Determine OS platform
# shellcheck source=/dev/null
. /etc/os-release
if command -V systemctl >/dev/null 2>&1; then
echo "Stop and disable headscale service"
systemctl stop headscale >/dev/null 2>&1 || true
systemctl disable headscale >/dev/null 2>&1 || true
echo "Running daemon-reload"
systemctl daemon-reload || true
fi
echo "Removing run directory"
rm -rf "/var/run/headscale.sock"