summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2001-06-01 12:05:47 +0000
committerGerald Carter <jerry@samba.org>2001-06-01 12:05:47 +0000
commitc0ee3984b5968a94f604fdf625739f84b9116349 (patch)
tree03475f3112c539ed2e63de19ca7943fe83421cf5 /packaging
parent3e3d75db700ddca5f1c008d8ffb9aa3e5cce6649 (diff)
downloadsamba-c0ee3984b5968a94f604fdf625739f84b9116349.tar.gz
samba-c0ee3984b5968a94f604fdf625739f84b9116349.tar.bz2
samba-c0ee3984b5968a94f604fdf625739f84b9116349.zip
beginning of merge with SAMBA_2_2
(This used to be commit 3daa174cba4b53f57dfb963e7facb60667113b48)
Diffstat (limited to 'packaging')
-rw-r--r--packaging/Caldera/OpenLinux/README.Public9
-rw-r--r--packaging/Caldera/OpenLinux/README.home15
-rw-r--r--packaging/Caldera/OpenLinux/README.profiles10
-rwxr-xr-xpackaging/Caldera/OpenLinux/convertsmbpasswd.perl15
-rwxr-xr-xpackaging/Caldera/OpenLinux/make_smbpasswd.perl13
5 files changed, 34 insertions, 28 deletions
diff --git a/packaging/Caldera/OpenLinux/README.Public b/packaging/Caldera/OpenLinux/README.Public
new file mode 100644
index 0000000000..00f41f3738
--- /dev/null
+++ b/packaging/Caldera/OpenLinux/README.Public
@@ -0,0 +1,9 @@
+This directory is exported to any windows computer, if the daemon
+"SMB server processes (samba)" is started and the distributed
+configuration is used. So be careful about any data you put into
+this directory.
+
+The default configuration restricts the access rights to read only
+access.
+
+2000-03-13, Klaus Singvogel, Caldera (Deutschland) GmbH.
diff --git a/packaging/Caldera/OpenLinux/README.home b/packaging/Caldera/OpenLinux/README.home
new file mode 100644
index 0000000000..5a893eb0e1
--- /dev/null
+++ b/packaging/Caldera/OpenLinux/README.home
@@ -0,0 +1,15 @@
+This directory $HOME/Samba is exported to any windows computer, if
+the daemon "SMB server processes (samba)" is started and the distributed
+configuration is used. So be careful about the data you put into this
+directory.
+
+Note: Only the user of this account can connect to this share. The
+shares name is equal to the users Linux account, e.g.
+\\your_linuxmachine\\your_linuxaccount
+
+If you want to have the files public accessible use the public browseable
+share instead. It's currently /srv/samba/Public, but have a look at file
+/etc/samba.d/smb.conf to get the latest name.
+
+
+2000-03-13, Klaus Singvogel, Caldera (Deutschland) GmbH.
diff --git a/packaging/Caldera/OpenLinux/README.profiles b/packaging/Caldera/OpenLinux/README.profiles
new file mode 100644
index 0000000000..b629e10966
--- /dev/null
+++ b/packaging/Caldera/OpenLinux/README.profiles
@@ -0,0 +1,10 @@
+This directory is used to store the roaming Profiles of your Windows
+users. For more information install the package samba-doc and read the
+file /usr/share/doc/packages/samba-2.0.7/docs/textdocs/DOMAIN.txt
+
+The default configuration sets the access rights to read/write for
+anyone. If you see a problem in this, disable the Profiles support in
+your samba configuration: either edit file /etc/samba.d/smb.conf or
+use swat (http://localhost:901/).
+
+2000-03-13, Klaus Singvogel, Caldera (Deutschland) GmbH.
diff --git a/packaging/Caldera/OpenLinux/convertsmbpasswd.perl b/packaging/Caldera/OpenLinux/convertsmbpasswd.perl
deleted file mode 100755
index 6b83886cd4..0000000000
--- a/packaging/Caldera/OpenLinux/convertsmbpasswd.perl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Convert a Samba 1.9.18 smbpasswd file format into
-# a Samba 2.0 smbpasswd file format.
-# Read from stdin and write to stdout for simplicity.
-# Set the last change time to the time of conversion.
-while ( <> ) {
- @V = split(/:/);
- if ( ! /^\#/ ) {
- $V[6] = $V[4] . "\n";
- $V[5] = sprintf( "LCT-%X", time());
- $V[4] = "[U ]";
- }
- print( join( ':', @V));
-}
diff --git a/packaging/Caldera/OpenLinux/make_smbpasswd.perl b/packaging/Caldera/OpenLinux/make_smbpasswd.perl
deleted file mode 100755
index 2666c19666..0000000000
--- a/packaging/Caldera/OpenLinux/make_smbpasswd.perl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/perl
-$X= "X" x 32;
-$U="[U ]";
-$L="LCT-00000000";
-print("#\n# SMB password file.\n#\n");
-
-while ( <> ) {
- next unless (/^[A-Za-z0-9_]/);
- chop;
- @V = split(/:/);
- printf( "%s:%s:%s:%s:%s:%s:%s\n", $V[0], $V[2], $X, $X, $U, $L, $V[4]);
-}
-