2000-05-02 17:25:18 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-02-05 06:14:46 +01:00
|
|
|
# $NetBSD: INSTALL,v 1.4 2002/02/05 05:14:46 jlam Exp $
|
2001-05-14 20:56:15 +02:00
|
|
|
|
2002-02-05 01:36:25 +01:00
|
|
|
SAMBA_LOCKDIR="@SAMBA_LOCKDIR@"
|
2001-05-14 20:56:15 +02:00
|
|
|
SAMBA_PRIVATE="@SAMBA_PRIVATE@"
|
2000-05-02 17:25:18 +02:00
|
|
|
|
|
|
|
case ${STAGE} in
|
|
|
|
POST-INSTALL)
|
2002-02-05 01:36:25 +01:00
|
|
|
# Check for files in old "lock" directory.
|
|
|
|
if [ -e /var/run/samba ]
|
|
|
|
then
|
|
|
|
${CAT} << EOF
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
The location of the Samba cache directory has moved to ${SAMBA_LOCKDIR}.
|
|
|
|
If you have any files under /var/run/samba, please move them into
|
|
|
|
${SAMBA_LOCKDIR} and restart the SMB and NMB servers.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
EOF
|
|
|
|
fi
|
2000-05-02 17:25:18 +02:00
|
|
|
;;
|
|
|
|
esac
|