]> git.ipfire.org Git - location/libloc.git/blob - debian/location.postrm
network: Add function to return a reverse pointer for networks
[location/libloc.git] / debian / location.postrm
1 #!/bin/sh
2
3 set -e
4
5 case "$1" in
6 purge)
7 rm -f /var/lib/location/database.db 2>/dev/null
8 rm -f /var/lib/location/signing-key.pem 2>/dev/null
9 rmdir /var/lib/location || true
10 ;;
11 esac
12
13 #DEBHELPER#
14
15 exit 0