a13f0bce70
* Honor PKG_SYSCONFDIR * use bsd.pkg.install.mk to handle the rc.d scripts and config files
24 lines
786 B
Text
24 lines
786 B
Text
# $NetBSD: INSTALL,v 1.1 2002/09/25 00:06:33 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if [ ! -f /sbin/mount_xfs ]; then
|
|
${ECHO} "Creating /sbin/mount_xfs"
|
|
${LN} -s ${PKG_PREFIX}/sbin/mount_xfs /sbin/mount_xfs
|
|
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
|