2021-10-24 03:29:45 +02:00
|
|
|
#!/bin/sh
|
2021-12-04 21:32:21 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
# Delete the config if package is purged
|
2021-10-24 03:29:45 +02:00
|
|
|
if [ "$1" = "purge" ]; then
|
2021-12-04 21:32:21 +01:00
|
|
|
echo "Deleting /etc/ntfy ..."
|
|
|
|
rm -rf /etc/ntfy || true
|
2021-10-24 03:29:45 +02:00
|
|
|
fi
|