opnsense-ports/emulators/linux_base-c6/pkg-deinstall
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

18 lines
390 B
Bash

#!/bin/sh
# a deinstallation script for linux_base
case "$2" in
DEINSTALL)
if [ -n "`mount | grep ^linproc`" ] || \
[ -d /compat/linux/proc ]; then
echo ""
echo "You may need to do by hand:"
echo " o unmount linprocfs if mounted"
echo " o delete ${PKG_PREFIX}/proc if present"
echo " o remove/comment linprocfs from /etc/fstab if present"
echo ""
fi
;;
esac
exit 0