summaryrefslogtreecommitdiffstats
path: root/debian/ncat.prerm
blob: 58a15ee7e1a3291537d386dbddbb71afde0bb9ef (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -e

if [ "$1" = "remove" ]; then
    update-alternatives --remove nc /usr/bin/ncat
fi

#DEBHELPER#