1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/script/installswat.sh
Andrew Tridgell dfac41840a we don't have any jpeg images any more
(This used to be commit ae5f174ef1)
1998-11-12 23:57:18 +00:00

51 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
#fist version March 1998, Andrew Tridgell
SWATDIR=$1
SRCDIR=$2/
echo Installing SWAT in $SWATDIR
echo Installing the Samba Web Admisistration Tool
for d in $SWATDIR $SWATDIR/help $SWATDIR/images $SWATDIR/include; do
if [ ! -d $d ]; then
mkdir $d
if [ ! -d $d ]; then
echo Failed to make directory $d, does $USER have privileges?
exit 1
fi
fi
done
for f in $SRCDIR../swat/images/*.gif; do
FNAME=$SWATDIR/images/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
for f in $SRCDIR../swat/help/*.html; do
FNAME=$SWATDIR/help/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
for f in $SRCDIR../swat/include/*.html; do
FNAME=$SWATDIR/include/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
cat << EOF
======================================================================
The SWAT files have been installed. Remember to read the swat/README
for information on enabling and using SWAT
======================================================================
EOF
exit 0