mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
9155c49571
This reverts commit 0821b8a25f
.
14 lines
349 B
Bash
Executable file
14 lines
349 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Stop systemd service
|
|
if [ -d /run/systemd/system ]; then
|
|
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
|