blob: 800ff036a841d75f369b9c53fa474e76b3adb32b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: INSTALL,v 1.1 2002/09/26 12:29:55 jlam Exp $
case ${STAGE} in
POST-INSTALL)
if [ "${PKG_SYSCONFDIR}" != "${PKG_PREFIX}/etc" ]; then
if [ -f ${PREFIX}/etc/xcdroast.conf ]; then
${CAT} << EOF
===========================================================================
========================
=== IMPORTANT NOTICE ===
========================
The default location of the xcdroast configuration files has changed.
Please move them from ${PKG_PREFIX}/etc to /etc.
===========================================================================
EOF
fi
fi
;;
esac
|