ntfy/scripts/postrm.sh
2022-11-05 14:12:57 +01:00

11 lines
227 B
Bash

#!/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