diff options
author | Gerald Carter <jerry@samba.org> | 2003-09-05 13:36:14 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-09-05 13:36:14 +0000 |
commit | 666d0fa721561978fe088cc665e16f8f1b65954f (patch) | |
tree | 9e82bda59fcc363ebfddf3d3c05803dbf5705422 /packaging | |
parent | 0283b0152e4cbe3d26b305ab9867e2b0765addfe (diff) | |
download | samba-666d0fa721561978fe088cc665e16f8f1b65954f.tar.gz samba-666d0fa721561978fe088cc665e16f8f1b65954f.tar.xz samba-666d0fa721561978fe088cc665e16f8f1b65954f.zip |
updating readme with new links/address and removing outdated packages
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/Digital/Instructions | 55 | ||||
-rw-r--r-- | packaging/Digital/PackageDate | 1 | ||||
-rw-r--r-- | packaging/Digital/Packager | 2 | ||||
-rw-r--r-- | packaging/Digital/Packaging-instructions | 14 | ||||
-rwxr-xr-x | packaging/Digital/package-prep | 30 | ||||
-rwxr-xr-x | packaging/Digital/samba.init | 34 | ||||
-rwxr-xr-x | packaging/Digital/setup.sh | 24 | ||||
-rw-r--r-- | packaging/Digital/skeleton.tar | bin | 30720 -> 0 bytes | |||
-rw-r--r-- | packaging/README | 20 |
9 files changed, 3 insertions, 177 deletions
diff --git a/packaging/Digital/Instructions b/packaging/Digital/Instructions deleted file mode 100644 index f764ad350dd..00000000000 --- a/packaging/Digital/Instructions +++ /dev/null @@ -1,55 +0,0 @@ -Copyright (C) 1997-1998 John H Terpstra -E-mail: jht@samba.org - -Subject: Installation Instructions for Digital Unix v4.0 --------------------------------------------------------- - -1) cd / -2) tar xvf [path-to-]/install.tar -3) cd /usr/local/samba/lib -4) vi smb.conf - -Now modify smb.conf to reflect your site needs. - -5) samba start - -To stop samba: - - samba stop - -You could install samba to run from the system start-up scripts -(recommended) by running ./setup.sh - -Start / Stop Samba as follows:- - - samba [start | stop] - - -Subject: Encrypted password support ------------------------------------ - -Encrypted password support is quite distinct from Digital Enhanced -Security Mode operation of the Unix system. Encrypted passwords -applies to the SMB connections serviced by this machine, not to -local user logons. Local user logons are services by the security -system chosen by your system administrator. - -Digital Unix knows of either BASIC or ENHANCED security mode -operation. BASIC mode uses the traditional /etc/passwd database -containing Unix crypted passwords. ENHANCED mode uses a TCB database. -Samba-1.9.18p10 has been modified so that if OSF1_ENH_SEC is defined -at compile time then a password check will be made first using ENHANCED -mode and if that fails then it will try BASIC mode. This is the case -for this binary distribution - you need not recompile. In other -words: this binary distribution will work with either security mode. - -To enable SMB encrypted password support do the following: - -1) Put /usr/local/samba/bin in your PATH -2) Edit /usr/local/samba/lib/smb.conf and uncomment the - line "encrypt passwd = yes" -3) Execute: smbpasswd -a "username" "password" - -The above will create your /usr/local/samba/private/smbpasswd file -in which will be the NT and LanMAN hashed passwords. - diff --git a/packaging/Digital/PackageDate b/packaging/Digital/PackageDate deleted file mode 100644 index 360e4148aa0..00000000000 --- a/packaging/Digital/PackageDate +++ /dev/null @@ -1 +0,0 @@ -November 14, 1998, Australia/Sydney diff --git a/packaging/Digital/Packager b/packaging/Digital/Packager deleted file mode 100644 index 75252978dc1..00000000000 --- a/packaging/Digital/Packager +++ /dev/null @@ -1,2 +0,0 @@ -Date: November 14, 1998 -Packager: John H Terpstra <jht@samba.org> diff --git a/packaging/Digital/Packaging-instructions b/packaging/Digital/Packaging-instructions deleted file mode 100644 index 77eafd312f5..00000000000 --- a/packaging/Digital/Packaging-instructions +++ /dev/null @@ -1,14 +0,0 @@ -The package building files should be located in a directory -called: samba-2.0.0 - -Step Directions -==== ============================================ -1. Copy the samba distribution tarball into the packaging directory -2. Make sure you have a installed on your system the GNU gzip/gunzip files -3. Edit "package-prep" script as required -4. Run "package-prep" - -If all goes well, you should now have a usable distribution package. - -Note: Update the Instructions file as required. - diff --git a/packaging/Digital/package-prep b/packaging/Digital/package-prep deleted file mode 100755 index 2daee8b69ef..00000000000 --- a/packaging/Digital/package-prep +++ /dev/null @@ -1,30 +0,0 @@ -tar xvf skeleton.tar -NOWDIR=`pwd`; -( cd /usr/local; - if [ -x man ]; then mv man man.orig; fi - if [ -x samba ]; then mv samba samba.orig; fi - ln -sf $NOWDIR/usr/local/man man; - ln -sf $NOWDIR/usr/local/samba samba; ) -gunzip samba-2.0.0.tar.gz -tar xvf samba-2.0.0.tar -cd samba-2.0.0/source -./configure -make -make install -cd $NOWDIR/usr/local/samba -cp -pr man ../ -rm -rf man -cd $NOWDIR -tar cvf install.tar usr var -cd samba-2.0.0/source -rm -f ../source/bin/* -make clean -cd ../.. -tar cvf samba-2.0.0.tar samba-2.0.0 -rm -rf samba-2.0.0 -rm -rf usr var -cd .. -find samba-2.0.0 -print | cpio -o > samba-2.0.0-OSF1-v4.0-beta5.cpio -gzip samba-2.0.0-OSF1-v4.0-beta5.cpio -cd samba-2.0.0 -tar xvf install.tar diff --git a/packaging/Digital/samba.init b/packaging/Digital/samba.init deleted file mode 100755 index 6a742440890..00000000000 --- a/packaging/Digital/samba.init +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -if [ ! -d /usr/bin ]; then - echo "The /usr file system is not mounted." - exit 1 -fi - -killproc() { - pid=`/bin/ps ax | grep -w $1 | sed -e 's/^ *//' -e 's/ .*//'` - echo "Stopping $1 now." - [ "$pid" != "" ] && kill -15 $pid - echo $pid -} - - -# Start/stop processes required for samba server - -case "$1" in - - 'start') - echo "Starting Samba" - /usr/local/samba/bin/smbd - /usr/local/samba/bin/nmbd - echo "Done." - ;; - 'stop') - killproc smbd - killproc nmbd - ;; - *) - echo "Usage: /sbin/init.d/samba.init [ start | stop ]" - ;; -esac -exit 0 diff --git a/packaging/Digital/setup.sh b/packaging/Digital/setup.sh deleted file mode 100755 index 81b04878bb1..00000000000 --- a/packaging/Digital/setup.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -echo "Setting up for SWAT - The Samba Web Administration Tool" - -echo 'swat 901/tcp' >> /etc/services -uniq /etc/services /tmp/tempserv -cp /tmp/tempserv /etc/services -rm /tmp/tempserv -echo 'swat stream tcp nowait.400 root /usr/local/samba/bin/swat swat' >> /etc/inetd.conf -uniq /etc/inetd.conf /tmp/tempinetd -cp /tmp/tempinetd /etc/inetd.conf -rm /tmp/tempinetd -echo "Creating Symbolic Links for Start up Scripts" -cp -f samba.init /sbin/init.d -chown bin.bin /sbin/init.d/samba.init -chmod 750 /sbin/init.d/samba.init -ln -sf /sbin/init.d/samba.init /sbin/rc0.d/K01samba -ln -sf /sbin/init.d/samba.init /sbin/rc2.d/K91samba -ln -sf /sbin/init.d/samba.init /sbin/rc3.d/S91samba -echo "Done. Now settting up samba command" -ln /sbin/init.d/samba.init /sbin/samba -echo "Done." -echo "To start / stop samba:" -echo " execute: samba [start | stop] diff --git a/packaging/Digital/skeleton.tar b/packaging/Digital/skeleton.tar Binary files differdeleted file mode 100644 index 92598d0c5e7..00000000000 --- a/packaging/Digital/skeleton.tar +++ /dev/null diff --git a/packaging/README b/packaging/README index 1cf147f3f9f..74445508e0b 100644 --- a/packaging/README +++ b/packaging/README @@ -3,6 +3,7 @@ Date: November 16, 1998 Updates: First Release - 19970819 19981116 20030329 + 20030905 =============================================================================== Note: @@ -17,19 +18,10 @@ packages for distribution via the official samba ftp sites. The files contained here are intended for use only by those wishing to build distribution packages and are NOT considered suitable material for anyone who wants to just install Samba from the pristine source files contained under -the ~/source directory. +the ../source directory. All contributions / modifications / additions / etc. to the packaging files -should be sent to samba-patches@samba.org with the subject marked: - PACKAGING: [add|mod|contrib] Your subject. - -Should you, or anyone you know of, have package build instructions and/or files -that may be of use to the wider community of Samba users please mail the above -account with subject: PACKAGING: [avail] OS xxxxxxxxxx -where xxxxxxxxxx is the operating system platform that may be contributed. - -We will contact the person who is offering to contribute package build details -to ensure that their contribution can be included in the official Samba sources. +should be logged in https://bugzilla.samba.org/. In the event that anyone wishes to contribute package build information please indicate in your response how we may access a suitable system to ensure our @@ -38,9 +30,3 @@ ability to keep the binary distribution itself current with the released source. The future of cooperatively developed software such as Samba depends on the willingness of all partners to share the fruit of their labours. -If you have a compelling need for binary packages for your platform and it is -not available from this packaging repository please notify jht@samba.org. We -can not guarrantee our ability to satisfy your need, but your feedback may help -us to find a solution. - -- John T. |