freebsd-ports/emulators/linux_base-c6/pkg-deinstall

19 lines
390 B
Text
Raw Normal View History

2006-03-18 20:07:04 +01:00
#!/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"
2006-03-18 20:07:04 +01:00
echo ""
fi
;;
esac
exit 0