aboutsummaryrefslogtreecommitdiff
path: root/packages/debian/postrm
blob: 4d2d8c5c054a9a3010199c12447297a9d7e67893 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ "$1" = "remove" -o "$1" = "purge" ]; then
    rm -rf /run/nDPId /run/nDPIsrvd

    if [ "$1" = "purge" ]; then
        deluser ndpid || true
        deluser ndpisrvd || true
        delgroup ndpisrvd-distributor || true
    fi
fi