Codebase list unbound / debian/1.3.3-1 debian / unbound.postrm
debian/1.3.3-1

Tree @debian/1.3.3-1 (Download .tar.gz)

unbound.postrm @debian/1.3.3-1raw · history · blame

1
2
3
4
5
6
7
8
#!/bin/sh -e

if [ "$1" = remove ]; then
    rm -rf /var/lib/unbound
    deluser --quiet unbound >/dev/null || true
fi

#DEBHELPER#