25 lines
786 B
Text
25 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
|