summaryrefslogtreecommitdiff
path: root/emulators/linux_base-c6/pkg-deinstall
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
commita54fe1ca9c33931d7c4381a84ee11454f9831c08 (patch)
tree16cc7f849128603b27ba13f7bdb8ae11e1eadd30 /emulators/linux_base-c6/pkg-deinstall
parentc7651500a041b224f401ba85fc192aac6ad83c1c (diff)
Diffstat (limited to 'emulators/linux_base-c6/pkg-deinstall')
-rw-r--r--emulators/linux_base-c6/pkg-deinstall18
1 files changed, 0 insertions, 18 deletions
diff --git a/emulators/linux_base-c6/pkg-deinstall b/emulators/linux_base-c6/pkg-deinstall
deleted file mode 100644
index 176d678141fc..000000000000
--- a/emulators/linux_base-c6/pkg-deinstall
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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