mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
9155c49571
This reverts commit 0821b8a25f
.
10 lines
227 B
Bash
Executable file
10 lines
227 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Delete the config if package is purged
|
|
if [ "$1" = "purge" ] || [ "$1" = "0" ]; then
|
|
id ntfy >/dev/null 2>&1 && userdel ntfy
|
|
rm -f /etc/ntfy/server.yml /etc/ntfy/client.yml
|
|
rmdir /etc/ntfy || true
|
|
fi
|
|
|