summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-04-29 07:51:32 +0200
committerStefan Metzmacher <metze@samba.org>2010-04-29 12:36:47 +0200
commit1765732f82719a4bc925f21ef4999bd19a8d1f6c (patch)
treeb127164d625a3cccff271e63e85b09b72fd4992f /source4/script
parent8e792d7b9bd1f9ce35fdaf6db4fc1d08e2ba8bda (diff)
downloadsamba-1765732f82719a4bc925f21ef4999bd19a8d1f6c.tar.gz
samba-1765732f82719a4bc925f21ef4999bd19a8d1f6c.tar.bz2
samba-1765732f82719a4bc925f21ef4999bd19a8d1f6c.zip
s4: remove unused references to swat
metze
Diffstat (limited to 'source4/script')
-rwxr-xr-xsource4/script/installswat.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/source4/script/installswat.sh b/source4/script/installswat.sh
deleted file mode 100755
index 4304e3e490..0000000000
--- a/source4/script/installswat.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-SWATDIR=$1
-SRCDIR=$2
-
-echo Installing swat files in $SWATDIR
-
-cd $SRCDIR/../swat || exit 1
-
-mkdir -p $SWATDIR || exit 1
-
-installdir() {
- for f in $*; do
- dname=`dirname $f`
- echo "Installing $f in $dname"
- test -d $SWATDIR/$dname || mkdir -p $SWATDIR/$dname || exit 1
- cp $f $SWATDIR/$dname/ || exit 1
- chmod 0644 $SWATDIR/$f || exit 1
- done
-}
-
-installdir `find . -name '*.js'`
-installdir `find . -name '*.esp'`
-installdir `find . -name '*.css'`
-installdir `find . -name '*.png'`
-installdir `find . -name '*.ico'`
-installdir `find . -name '*.gif'`
-installdir `find . -name '*.ejs'`
-
-cat << EOF
-======================================================================
-The swat files have been installed.
-======================================================================
-EOF
-
-exit 0
-