Files
server/var/lib/dpkg/info/netcat-openbsd.prerm
2026-01-07 20:52:11 +01:00

11 lines
112 B
Bash
Executable File

#!/bin/sh
set -e
if [ "$1" = "remove" ]; then
update-alternatives --remove nc /bin/nc.openbsd
fi
exit 0