9f1c532d9b
The update during the pkgsrc freeze has been approved by <wiz>. Two patches have been provided by <christos>. Tested on NetBSD-1.6.1/i386 and NetBSD-2.0/i386. Closes PR pkg/20906.
24 lines
798 B
Text
24 lines
798 B
Text
# $NetBSD: INSTALL,v 1.2 2005/03/15 15:58:52 wennmach Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if [ ! -f /sbin/mount_nnpfs ]; then
|
|
${ECHO} "Creating /sbin/mount_nnpfs"
|
|
${LN} -s ${PKG_PREFIX}/sbin/mount_nnpfs /sbin/mount_nnpfs
|
|
fi
|
|
if [ "${PKG_SYSCONFDIR}" != "${PKG_PREFIX}/etc" ]; then
|
|
if [ -f ${PREFIX}/etc/arla.conf ]; then
|
|
${CAT} << EOF
|
|
===========================================================================
|
|
========================
|
|
=== IMPORTANT NOTICE ===
|
|
========================
|
|
|
|
The default location of the arla configuration files has changed.
|
|
Please move them from ${PKG_PREFIX}/etc to /etc.
|
|
===========================================================================
|
|
EOF
|
|
fi
|
|
fi
|
|
;;
|
|
esac
|