ntfy/scripts/prerm.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
349 B
Bash
Raw Permalink Normal View History

#!/bin/sh
set -e
# Stop systemd service
if [ -d /run/systemd/system ]; then
2022-01-05 14:44:02 +01:00
if [ "$1" = "remove" ] || [ "$1" = "0" ]; then
echo "Stopping ntfy.service ..."
if [ -x /usr/bin/deb-systemd-invoke ]; then
deb-systemd-invoke stop 'ntfy.service' >/dev/null || true
else
systemctl stop ntfy >/dev/null 2>&1 || true
fi
fi
fi