summaryrefslogtreecommitdiff
path: root/net/ja-samba/INSTALL
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2002-06-25 15:31:32 +0000
committertaca <taca@pkgsrc.org>2002-06-25 15:31:32 +0000
commit937cbe444d31c5490306189c26a0784812317bba (patch)
treee52053348ff418cf08826173b8da9d0ee9316cfd /net/ja-samba/INSTALL
parent18f9bcffc889a2e731762da3315bfc8e5fad414f (diff)
downloadpkgsrc-937cbe444d31c5490306189c26a0784812317bba.tar.gz
Importing ja-samba 2.2.2.1.1 package.
This is modified version deveopled by Samba Users Group Japan. o I18N for SWAT. Select display language based on information supplied by Web browser. o L10N for Japanese. Support various use of Japanese name; share name, computer name, workgroup name, user name. Solve some problems when different version of Windows are mixed. Especially, vanilla samba dosen't support vendor depended characters completely. (Those characters are differently handled among Windows 95, Windows 98, Windows NT and something changed in Windows XP.) This cause practical problem on real world. o Some Bugfix go ahead to original samba. o Some original feature Supoprt a recycle bin. Currently it is samba 2.2.2 base, and they are developing newer version based on samba 2.2.4.
Diffstat (limited to 'net/ja-samba/INSTALL')
-rw-r--r--net/ja-samba/INSTALL24
1 files changed, 24 insertions, 0 deletions
diff --git a/net/ja-samba/INSTALL b/net/ja-samba/INSTALL
new file mode 100644
index 00000000000..4fbf6b02719
--- /dev/null
+++ b/net/ja-samba/INSTALL
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2002/06/25 15:31:32 taca 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