remove non-existent files from 3.0 tree
authorGerald Carter <jerry@samba.org>
Thu, 28 Aug 2003 16:53:40 +0000 (16:53 +0000)
committerGerald Carter <jerry@samba.org>
Thu, 28 Aug 2003 16:53:40 +0000 (16:53 +0000)
docs/docbook/smbdotconf/ldap/ldaptrustids.xml [deleted file]
packaging/Caldera/OpenLinux/.cvsignore [deleted file]
packaging/PHT/TurboLinux/.cvsignore [deleted file]
packaging/README.UnixWare [deleted file]
packaging/Solaris/makepkg.sh [deleted file]
source/include/version.h [deleted file]
source/smbadduser [deleted file]
swat/README [deleted file]

diff --git a/docs/docbook/smbdotconf/ldap/ldaptrustids.xml b/docs/docbook/smbdotconf/ldap/ldaptrustids.xml
deleted file mode 100644 (file)
index 36bbcb2..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<samba:parameter name="ldap trust ids"
-                 context="G"
-                 advanced="1" developer="1"
-                 xmlns:samba="http://samba.org/common">
-<listitem>
-
-       <para>Normally, Samba validates each entry in the LDAP server
-       against getpwnam(). This allows LDAP to be used for Samba with
-       the unix system using NIS (for example) and also ensures that
-       Samba does not present accounts that do not otherwise exist. 
-       </para> 
-
-       <para>This option is used to disable this functionality, and    
-       instead to rely on the presence of the appropriate  attributes
-       in LDAP directly, which can result in a  significant performance
-       boost in some situations.  Setting this option to yes effectivly
-       assumes that the local machine is running <command
-       moreinfo="none">nss_ldap</command> against the same LDAP
-       server.</para>
-
-       <para>Default: <command moreinfo="none">ldap trust ids = No</command></para>
-</listitem>
-</samba:parameter>
diff --git a/packaging/Caldera/OpenLinux/.cvsignore b/packaging/Caldera/OpenLinux/.cvsignore
deleted file mode 100644 (file)
index 062afa2..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-convertsmbpasswd.perl
-make_smbpasswd.perl
-makerpms.sh
-samba2.spec
-samba2.spec-lsb
-samba3.spec
diff --git a/packaging/PHT/TurboLinux/.cvsignore b/packaging/PHT/TurboLinux/.cvsignore
deleted file mode 100644 (file)
index 0238ed8..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-makefile-path.patch
-makerpms.sh
-samba2.spec
diff --git a/packaging/README.UnixWare b/packaging/README.UnixWare
deleted file mode 100644 (file)
index a4b0895..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-Date:          January 9, 2001
-Maintainer:    John H Terpstra
-Subject:       UnixWare Packaging Files
-Modifications: Initial release 20010109
-
-Note:          The packaging build files for UnixWare are located under ~samba/packaging/Caldera/UnixWare.
diff --git a/packaging/Solaris/makepkg.sh b/packaging/Solaris/makepkg.sh
deleted file mode 100755 (executable)
index bd370e9..0000000
+++ /dev/null
@@ -1,154 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) Shirish A Kalele 2000
-#
-# Builds a Samba package from the samba distribution. 
-# By default, the package will be built to install samba in /usr/local
-# Change the INSTALL_BASE variable to change this: will modify the pkginfo 
-# and samba.server files to point to the new INSTALL_BASE
-#
-INSTALL_BASE=/usr/local
-
-add_dynamic_entries() 
-{
-  # Add the binaries, docs and SWAT files
-
-  echo "#\n# Binaries \n#"
-  cd $DISTR_BASE/source/bin
-  for binfile in *
-  do
-    if [ -f $binfile ]; then
-      echo f none samba/bin/$binfile=source/bin/$binfile 0755 root other
-    fi
-  done
-
-  # Add the scripts to bin/
-  echo "#\n# Scripts \n#"
-  cd $DISTR_BASE/source/script
-  for shfile in *
-  do
-    if [ -f $shfile ]; then
-       echo f none samba/bin/$shfile=source/script/$shfile 0755 root other
-    fi
-  done
-
-  # Add the manpages
-  echo "#\n# man pages \n#"
-  echo d none /usr ? ? ?
-  echo d none /usr/share ? ? ?
-  echo d none /usr/share/man ? ? ?
-
-  # Create directories for man page sections if nonexistent
-  cd $DISTR_BASE/docs/manpages
-  for i in 1 2 3 4 5 6 7 8 9
-  do
-     manpages=`ls *.$i 2>/dev/null`
-     if [ $? -eq 0 ]
-     then
-       echo d none /usr/share/man/man$i ? ? ?
-       for manpage in $manpages 
-       do
-               echo f none /usr/share/man/man${i}/${manpage}=docs/manpages/$manpage 0644 root other
-       done
-     fi
-  done
-
-  echo "#\n# HTML documentation \n#"
-  cd $DISTR_BASE
-  list=`find docs/htmldocs -type d | grep -v "/CVS$"`
-  for docdir in $list
-  do
-    if [ -d $docdir ]; then
-       echo d none samba/$docdir 0755 root other
-    fi
-  done
-
-  list=`find docs/htmldocs -type f | grep -v /CVS/`
-  for htmldoc in $list
-  do
-    if [ -f $htmldoc ]; then
-      echo f none samba/$htmldoc=$htmldoc 0644 root other
-    fi
-  done
-
-  # Create a symbolic link to the Samba book in docs/ for beginners
-  echo 's none samba/docs/samba_book=htmldocs/using_samba'
-
-  echo "#\n# Text Docs \n#"
-  echo d none samba/docs/textdocs 0755 root other
-  cd $DISTR_BASE/docs/textdocs
-  for textdoc in *
-  do 
-    if [ -f $textdoc ]; then
-      echo f none samba/docs/textdocs/$textdoc=docs/textdocs/$textdoc 0644 root other
-    fi
-  done
-  echo "#\n# SWAT \n#"
-  cd $DISTR_BASE
-  list=`find swat -type d | grep -v "/CVS$"`
-  for i in $list
-  do
-    echo "d none samba/$i 0755 root other"
-  done
-  list=`find swat -type f | grep -v /CVS/`
-  for i in $list
-  do
-    echo "f none samba/$i=$i 0644 root other"
-  done
-  echo "#\n# HTML documentation for SWAT\n#"
-  cd $DISTR_BASE/docs/htmldocs
-  for htmldoc in *
-  do
-    if [ -f $htmldoc ]; then
-      echo f none samba/swat/help/$htmldoc=docs/htmldocs/$htmldoc 0644 root other
-    fi
-  done
-
-  echo "#\n# Using Samba Book files for SWAT\n#"
-  cd $DISTR_BASE/docs/htmldocs
-
-# set up a symbolic link instead of duplicating the book tree
-  echo 's none samba/swat/using_samba=../docs/htmldocs/using_samba'
-
-}
-
-if [ $# = 0 ]
-then
-       # Try to guess the distribution base..
-       CURR_DIR=`pwd`
-       DISTR_BASE=`echo $CURR_DIR | sed 's|\(.*\)/packaging.*|\1|'`
-       echo "Assuming Samba distribution is rooted at $DISTR_BASE.."
-else
-       DISTR_BASE=$1
-fi
-
-#
-if [ ! -d $DISTR_BASE ]; then
-       echo "Source build directory $DISTR_BASE does not exist."
-       exit 1
-fi
-
-# Set up the prototype file from prototype.master
-if [ -f prototype ]; then
-       rm prototype
-fi
-
-# Setup version from version.h
-VERSION=`sed 's/#define VERSION \"\(.*\)\"$/\1/' ../../source/include/version.h`
-sed -e "s|__VERSION__|$VERSION|" -e "s|__ARCH__|`uname -p`|" -e "s|__BASEDIR__|$INSTALL_BASE|g" pkginfo.master >pkginfo
-
-sed -e "s|__BASEDIR__|$INSTALL_BASE|g" inetd.conf.master >inetd.conf
-sed -e "s|__BASEDIR__|$INSTALL_BASE|g" samba.server.master >samba.server
-
-cp prototype.master prototype
-
-# Add the dynamic part to the prototype file
-(add_dynamic_entries >> prototype)
-
-# Create the package
-pkgmk -o -d /tmp -b $DISTR_BASE -f prototype
-if [ $? = 0 ]
-then
-       pkgtrans /tmp samba.pkg samba
-fi
-echo The samba package is in /tmp
diff --git a/source/include/version.h b/source/include/version.h
deleted file mode 100644 (file)
index 956f535..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#define VERSION "CVS 3.0.0rc2"
diff --git a/source/smbadduser b/source/smbadduser
deleted file mode 100755 (executable)
index 9837413..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/bin/csh
-#
-# smbadduser - Written by Mike Zakharoff
-#
-unalias *
-set path = ($path /usr/local/samba/bin)
-
-set smbpasswd = /usr/local/samba/private/smbpasswd
-#set smbpasswd = /etc/samba/smbpasswd
-set user_map  = /usr/local/samba/lib/users.map
-#set user_map  = /etc/samba/smbusers
-#
-# Set to site specific passwd command
-#
-set passwd    = "cat /etc/passwd"
-#set passwd    = "niscat passwd.org_dir"
-#set passwd    = "ypcat passwd"
-
-set line = "----------------------------------------------------------"
-if ($#argv == 0) then
-       echo $line
-       echo "Written: Mike Zakharoff email: michael.j.zakharoff@boeing.com"
-       echo ""
-       echo "   1) Updates $smbpasswd"
-       echo "   2) Updates $user_map"
-       echo "   3) Executes smbpasswd for each new user"
-       echo ""
-       echo "smbadduser unixid:ntid unixid:ntid ..."
-       echo ""
-       echo "Example: smbadduser zak:zakharoffm johns:smithj"
-       echo $line
-       exit 1
-endif
-
-touch $smbpasswd $user_map
-set new  = ()
-foreach one ($argv)
-       echo $one | grep ':' >& /dev/null
-       if ($status != 0) then
-               echo "ERROR: Must use unixid:ntid like -> zak:zakharoffm"
-               continue
-       endif
-       set unix = `echo $one | awk -F: '{print $1}'`
-       set ntid = `echo $one | awk -F: '{print $2}'`
-
-       set usr = `eval $passwd | awk -F: '$1==USR {print $1}' USR=$unix`
-       if ($#usr != 1) then
-               echo "ERROR: $unix Not in passwd database SKIPPING..."
-               continue
-       endif
-        set tmp = `cat $smbpasswd | awk -F: '$1==USR {print $1}' USR=$unix`
-       if ($#tmp != 0) then
-               echo "ERROR: $unix is already in $smbpasswd SKIPPING..."
-               continue
-       endif
-
-       echo "Adding: $unix to $smbpasswd"
-       /usr/bin/smbpasswd -a -n $unix
-       if ($unix != $ntid) then
-               echo "Adding: {$unix = $ntid} to $user_map"
-               echo "$unix = $ntid" >> $user_map
-       endif
-       set new = ($new $unix)
-end
-
-#
-# Enter password for new users
-#
-foreach one ($new)
-       echo $line
-       echo "ENTER password for $one"
-       smbpasswd $one
-end
diff --git a/swat/README b/swat/README
deleted file mode 100644 (file)
index 588ecef..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-This is a brief description of how to install and use the Samba Web
-Administration Tool on your machine.
-
-Installation
-------------
-
-After you compile SWAT you need to run "make install" to install the
-swat binary and the various help files and images. A default install
-would put these in:
-
-/usr/local/samba/bin/swat
-/usr/local/samba/swat/images/*
-/usr/local/samba/swat/help/*
-
-Running via inetd
------------------
-
-You then need to edit your /etc/inetd.conf and /etc/services to enable
-SWAT to be launched via inetd. 
-
-In /etc/services you need to add a line like this:
-
-swat            901/tcp
-
-the choice of port number isn't really important except that it should
-be less than 1024 and not currently used (using a number above 1024
-presents an obscure security hole depending on the implementation
-details of your inetd daemon).
-
-In /etc/inetd.conf you should add a line like this:
-
-swat    stream  tcp     nowait.400  root    /usr/local/samba/bin/swat swat
-
-One you have edited /etc/services and /etc/inetd.conf you need to send
-a HUP signal to inetd. On many systems "killall -1 inetd" will do this
-on others you will need to use "kill -1 PID" where PID is the process
-ID of the inetd daemon.
-
-
-
-Launching
----------
-
-To launch SWAT just run your favourite web browser and point it at
-http://localhost:901/ 
-
-Note that you can attach to SWAT from any IP connected machine but
-connecting from a remote machine leaves your connection open to
-password sniffing as passwords will be sent in the clear over the
-wire.
-
-You should be prompted for a username/password when you connect. You
-will need to provide the username "root" and the correct root
-password. 
-
-Running
--------
-
-Just follow your nose! If you can't work out how to use it then maybe
-you should use "vi smb.conf" instead.
-
-
-WARNINGS
---------
-
-SWAT will rewrite your smb.conf file. It will rearrange the entries
-and delete all comments, include= and copy= options. If you have a
-carefully crafted smb.conf then back it up or don't use SWAT!
-
-
-Development
------------
-
-Please join the samba-technical mailing list if you want to discuss
-the development of SWAT. Note that this list is for technical developer
-discussions and is not a general help list.
-