beginning of merge with SAMBA_2_2
authorGerald Carter <jerry@samba.org>
Fri, 1 Jun 2001 12:05:47 +0000 (12:05 +0000)
committerGerald Carter <jerry@samba.org>
Fri, 1 Jun 2001 12:05:47 +0000 (12:05 +0000)
(This used to be commit 3daa174cba4b53f57dfb963e7facb60667113b48)

packaging/Caldera/OpenLinux/README.Public [new file with mode: 0644]
packaging/Caldera/OpenLinux/README.home [new file with mode: 0644]
packaging/Caldera/OpenLinux/README.profiles [new file with mode: 0644]
packaging/Caldera/OpenLinux/convertsmbpasswd.perl [deleted file]
packaging/Caldera/OpenLinux/make_smbpasswd.perl [deleted file]

diff --git a/packaging/Caldera/OpenLinux/README.Public b/packaging/Caldera/OpenLinux/README.Public
new file mode 100644 (file)
index 0000000..00f41f3
--- /dev/null
@@ -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 (file)
index 0000000..5a893eb
--- /dev/null
@@ -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 (file)
index 0000000..b629e10
--- /dev/null
@@ -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 (executable)
index 6b83886..0000000
+++ /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 (executable)
index 2666c19..0000000
+++ /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]);
-}
-