File: postrm.sh

package info (click to toggle)
ntfy 2.11.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 19,364 kB
  • sloc: javascript: 16,782; makefile: 282; sh: 105; php: 21; python: 19
file content (10 lines) | stat: -rwxr-xr-x 227 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/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