1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-07-20 03:57:29 +02:00
ntfy/scripts/prerm.sh

13 lines
304 B
Bash
Executable file

#!/bin/sh
set -e
# Stop systemd service
if [ -d /run/systemd/system ] && [ "$1" = remove ]; 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