From 3daa174cba4b53f57dfb963e7facb60667113b48 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 1 Jun 2001 12:05:47 +0000 Subject: [PATCH] beginning of merge with SAMBA_2_2 --- packaging/Caldera/OpenLinux/README.Public | 9 +++++++++ packaging/Caldera/OpenLinux/README.home | 15 +++++++++++++++ packaging/Caldera/OpenLinux/README.profiles | 10 ++++++++++ packaging/Caldera/OpenLinux/convertsmbpasswd.perl | 15 --------------- packaging/Caldera/OpenLinux/make_smbpasswd.perl | 13 ------------- 5 files changed, 34 insertions(+), 28 deletions(-) create mode 100644 packaging/Caldera/OpenLinux/README.Public create mode 100644 packaging/Caldera/OpenLinux/README.home create mode 100644 packaging/Caldera/OpenLinux/README.profiles delete mode 100755 packaging/Caldera/OpenLinux/convertsmbpasswd.perl delete mode 100755 packaging/Caldera/OpenLinux/make_smbpasswd.perl diff --git a/packaging/Caldera/OpenLinux/README.Public b/packaging/Caldera/OpenLinux/README.Public new file mode 100644 index 00000000000..00f41f37382 --- /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 00000000000..5a893eb0e12 --- /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 00000000000..b629e10966b --- /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 6b83886cd4d..00000000000 --- 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 2666c19666e..00000000000 --- 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]); -} - -- 2.11.4.GIT