mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
cf09c00c4e
(This used to be commit 7512270ffa
)
33 lines
647 B
Bash
Executable File
33 lines
647 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SERVICESDIR=$1
|
|
SRCDIR=$2
|
|
|
|
echo Installing JSON-RPC services in $SERVICESDIR
|
|
|
|
cd $SRCDIR/../services || exit 1
|
|
|
|
mkdir -p $SERVICESDIR || exit 1
|
|
|
|
installdir() {
|
|
for f in $*; do
|
|
dname=`dirname $f`
|
|
echo "Installing $f in $dname"
|
|
test -d $SERVICESDIR/$dname || mkdir -p $SERVICESDIR/$dname || exit 1
|
|
cp $f $SERVICESDIR/$dname/ || exit 1
|
|
chmod 0644 $SERVICESDIR/$f || exit 1
|
|
done
|
|
}
|
|
|
|
installdir `find . -name '*.esp'`
|
|
|
|
cat << EOF
|
|
======================================================================
|
|
The JSON-RPC services have been installed.
|
|
======================================================================
|
|
EOF
|
|
|
|
|
|
exit 0
|
|
|