mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
15c1801a5c
The Web 2.0, async client tools were really interesting, but without
developer backing they remain impossible to support into a release.
The most interesting app was the LDB browser, and I intend to replace
this with phpLdapAdmin, preconfigured for Apache during provision.
This also removes the need to 'compile' SWAT on SVN checkouts.
Andrew Bartlett
(This used to be commit cda965e908
)
38 lines
803 B
Bash
Executable File
38 lines
803 B
Bash
Executable File
#!/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
|
|
|