summaryrefslogtreecommitdiff
path: root/net/samba2/INSTALL
diff options
context:
space:
mode:
authorjlam <jlam>2004-01-11 00:41:12 +0000
committerjlam <jlam>2004-01-11 00:41:12 +0000
commit497b953ccc901e5af0a124670b5e1a058a7fff2e (patch)
treed0930d3abc3d71cb10ffc2c18b000cbd8a027e59 /net/samba2/INSTALL
parent984ce45b6f50e3f125c723950e7a09f48c5358a9 (diff)
downloadpkgsrc-497b953ccc901e5af0a124670b5e1a058a7fff2e.tar.gz
Reimport net/samba as net/samba2. net/samba2 will continue to track the
2.x release of Samba, which net/samba will track post-2.x releases of Samba.
Diffstat (limited to 'net/samba2/INSTALL')
-rw-r--r--net/samba2/INSTALL24
1 files changed, 24 insertions, 0 deletions
diff --git a/net/samba2/INSTALL b/net/samba2/INSTALL
new file mode 100644
index 00000000000..137ca7163bc
--- /dev/null
+++ b/net/samba2/INSTALL
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2004/01/11 00:41:13 jlam Exp $
+
+SAMBA_LOCKDIR="@SAMBA_LOCKDIR@"
+SAMBA_PRIVATE="@SAMBA_PRIVATE@"
+
+case ${STAGE} in
+POST-INSTALL)
+ # 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
+ ;;
+esac