1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/comms/aprsd/pkg-deinstall
Diane Bruce 86b4c48051 - aprsd is a server daemon that provides Internet gateway and client
access to amateur radio APRS packet data.
2008-01-24 18:23:27 +00:00

17 lines
383 B
Bash

#!/bin/sh
if [ "x$2" != "xPOST-DEINSTALL" ]; then
exit 0;
fi
echo "Killing aprsd if running"
kill -9 `cat /var/run/aprsd.pid`
rm -f /var/run/aprsd.pid
cat<<EOF
If you really want to remove this package completely
remove what is left in /usr/local/etc/aprsd /var/log/aprsd.
Also be sure to remove user and groups aprsd and tnc
and remember to remove aprsd from dialer group.
EOF