blob: bbcccaa82d0247f252b39c05eb53c5814770f84d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $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
|