summaryrefslogtreecommitdiffstats
path: root/debian/nmap-common.prerm
blob: 8a76f493cad488d6e289606e879cc5b604757314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

case "$1" in
    remove|upgrade|deconfigure)
        rm -f /usr/share/nmap/nselib/data/psexec/nmap_service.exe ;;

    failed-upgrade) ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0