mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
7 lines
112 B
Bash
7 lines
112 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
systemctl stop ntfy >/dev/null 2>&1 || true
|
||
|
if [ "$1" = "purge" ]; then
|
||
|
rm -rf /etc/ntfy
|
||
|
fi
|