forked from mirrors/ntfy
10 lines
209 B
Bash
Executable file
10 lines
209 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Delete the config if package is purged
|
|
if [ "$1" = "purge" ]; then
|
|
id ntfy >/dev/null 2>&1 && userdel ntfy
|
|
rm -f /etc/ntfy/server.yml /etc/ntfy/client.yml
|
|
rmdir /etc/ntfy || true
|
|
fi
|
|
|