pkgsrc/net/arla/INSTALL
jlam a13f0bce70 * buildlink1 -> buildlink2
* Honor PKG_SYSCONFDIR
* use bsd.pkg.install.mk to handle the rc.d scripts and config files
2002-09-25 00:06:33 +00:00

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