From 2285033933448836e1c0e3e1c4b75da941a6c9b8 Mon Sep 17 00:00:00 2001 From: Samba Release Account Date: Fri, 5 Jul 1996 03:51:27 +0000 Subject: Changed install scripts so they don't have hardcoded values Dan (This used to be commit 2eccc5eea289fa4b6af120d0bc92d568ca925482) --- source3/script/installbin.sh | 4 +++- source3/script/installman.sh | 37 ++++++++++++++++++++----------------- source3/script/installscripts.sh | 33 +++++++++++++++++++++++++-------- 3 files changed, 48 insertions(+), 26 deletions(-) diff --git a/source3/script/installbin.sh b/source3/script/installbin.sh index 633e6cb5bb..b976a3e5ea 100755 --- a/source3/script/installbin.sh +++ b/source3/script/installbin.sh @@ -34,7 +34,9 @@ done cat << EOF ====================================================================== The binaries are installed. You may restore the old binaries (if there -were any) using the command "make revert" +were any) using the command "make revert". You may uninstall the binaries +using the command "make uninstallbin" or "make uninstall" to uninstall +binaries, man pages and shell scripts. ====================================================================== EOF diff --git a/source3/script/installman.sh b/source3/script/installman.sh index a79d157c5f..3c8fc71865 100755 --- a/source3/script/installman.sh +++ b/source3/script/installman.sh @@ -1,4 +1,6 @@ #!/bin/sh +#5 July 96 Dan.Shearer@unisa.edu.au removed hardcoded values + MANDIR=$1 SRCDIR=$2 @@ -8,28 +10,29 @@ for d in $MANDIR $MANDIR/man1 $MANDIR/man5 $MANDIR/man7 $MANDIR/man8; do if [ ! -d $d ]; then mkdir $d if [ ! -d $d ]; then - echo Failed to make directory $d + echo Failed to make directory $d, does $USER have privileges? exit 1 fi fi done -cp $SRCDIR../docs/*.1 $MANDIR/man1 -cp $SRCDIR../docs/*.5 $MANDIR/man5 -cp $SRCDIR../docs/*.8 $MANDIR/man8 -cp $SRCDIR../docs/*.7 $MANDIR/man7 -echo Setting permissions on man pages -chmod 0644 $MANDIR/man1/smbstatus.1 -chmod 0644 $MANDIR/man1/smbclient.1 -chmod 0644 $MANDIR/man1/smbrun.1 -chmod 0644 $MANDIR/man1/testparm.1 -chmod 0644 $MANDIR/man1/testprns.1 -chmod 0644 $MANDIR/man1/smbtar.1 -chmod 0644 $MANDIR/man5/smb.conf.5 -chmod 0644 $MANDIR/man7/samba.7 -chmod 0644 $MANDIR/man8/smbd.8 -chmod 0644 $MANDIR/man8/nmbd.8 +for sect in 1 5 7 8 ; do + for m in $MANDIR/man$sect ; do + for s in $SRCDIR../docs/*$sect; do + FNAME=$m/`basename $s` + cp $s $m || echo Cannot create $FNAME... does $USER have privileges? + chmod 0644 $FNAME + done + done +done + +cat << EOF +====================================================================== +The man pages have been installed. You may uninstall them using the command +the command "make uninstallman" or make "uninstall" to uninstall binaries, +man pages and shell scripts. +====================================================================== +EOF -echo Man pages installed exit 0 diff --git a/source3/script/installscripts.sh b/source3/script/installscripts.sh index c27d41c36b..ab9035ff81 100755 --- a/source3/script/installscripts.sh +++ b/source3/script/installscripts.sh @@ -1,26 +1,43 @@ #!/bin/sh # this script courtesy of James_K._Foote.PARC@xerox.com +# 5 July 96 Dan.Shearer@UniSA.Edu.Au Don't hardcode script names, get from Make + INSTALLPERMS=$1 BINDIR=$2 -SRCDIR=$3 + +shift +shift echo Installing scripts in $BINDIR -for d in $BINDIR; do +for d in [ $BINDIR ]; do if [ ! -d $d ]; then mkdir $d if [ ! -d $d ]; then echo Failed to make directory $d + echo Have you run installbin first? exit 1 fi fi done -cp ${SRCDIR}smbtar $BINDIR -cp ${SRCDIR}addtosmbpass $BINDIR -echo Setting permissions on scripts -chmod $INSTALLPERMS $BINDIR/smbtar -chmod $INSTALLPERMS $BINDIR/addtosmbpass +for p in $*; do + echo Installing $BINDIR/$p + cp $p $BINDIR/$p + if [ ! -f $BINDIR/$p ]; then + echo Cannot copy $p... does $USER have privileges? + fi + echo Setting permissions on $BINDIR/$p + chmod $INSTALLPERMS $BINDIR/$p +done + +cat << EOF +====================================================================== +The scripts have been installed. You may uninstall them using +the command "make uninstallscripts" or "make install" to install binaries, +man pages and shell scripts. You may recover the previous version (if any +by "make revert". +====================================================================== +EOF -echo Scripts installed exit 0 -- cgit