mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
1cf930b9cc
Installation of linux_base-7.1_2 fails when linprocfs is mounted. Unmounting linprocfs before installing works around the issue. At Lars' suggestion, this script also mounts the linprocfs after installation. I assume that if the user has a linprocfs entry in /etc/fstab, the user wants it to be mounted. It also seemed like a good idea to un-mount it before de-installation. PR: 46172
35 lines
740 B
Bash
35 lines
740 B
Bash
#!/bin/sh
|
|
# an installation script for linux_base
|
|
|
|
case "$2" in
|
|
PRE-INSTALL)
|
|
if [ -z "`kldstat -v | grep -E 'linux(aout|elf)'`" ]; then
|
|
echo 'Linux mode is not enabled.'
|
|
echo 'Loading linux kernel module now...'
|
|
if ! kldload linux; then
|
|
echo 'The linux kernel module could not be loaded.'
|
|
echo 'Please enable linux mode manually and retry.'
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -n "`mount | grep -w ^linprocfs`" ]; then
|
|
echo 'Un-mounting linprocfs...'
|
|
umount linprocfs
|
|
fi
|
|
;;
|
|
POST-INSTALL)
|
|
if [ -n "`grep -w ^linprocfs /etc/fstab`" ]; then
|
|
echo 'Re-mounting linprocfs...'
|
|
mount linprocfs
|
|
fi
|
|
;;
|
|
DEINSTALL)
|
|
if [ -n "`mount | grep -w ^linprocfs`" ]; then
|
|
echo 'Un-mounting linprocfs...'
|
|
umount linprocfs
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
exit 0
|