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

18 lines
297 B
Text
Raw Normal View History

#!/bin/sh
# a deinstallation script for linux_base
case "$2" in
DEINSTALL)
if [ -n "`mount | grep -w ^linprocfs`" ]; then
echo 'Un-mounting linprocfs...'
umount linprocfs
fi
if [ -n "`mount | grep -w ^linproc`" ]; then
echo 'Un-mounting linproc...'
umount linproc
fi
;;
esac
exit 0