mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
86a4886e39
easily try this out. I also intend to use this for the selftest, but I'm chasing issues with the OpenlDAP (but not Fedora DS) backend. Andrew Bartlett (This used to be commit 0f457b1d2e20c36ab220b4a6711ce7930c4c7d21)
30 lines
614 B
Bash
Executable File
30 lines
614 B
Bash
Executable File
#!/bin/sh
|
|
# install miscellaneous files
|
|
|
|
SRCDIR="$1"
|
|
JSDIR="$2"
|
|
SETUPDIR="$3"
|
|
BINDIR="$4"
|
|
|
|
cd $SRCDIR || exit 1
|
|
|
|
echo "Installing js libs"
|
|
mkdir -p $JSDIR || exit 1
|
|
cp scripting/libjs/*.js $JSDIR || exit 1
|
|
|
|
echo "Installing setup templates"
|
|
mkdir -p $SETUPDIR || exit 1
|
|
cp setup/schema-map-* $SETUPDIR || exit 1
|
|
cp setup/DB_CONFIG $SETUPDIR || exit 1
|
|
cp setup/*.inf $SETUPDIR || exit 1
|
|
cp setup/*.ldif $SETUPDIR || exit 1
|
|
cp setup/*.zone $SETUPDIR || exit 1
|
|
cp setup/*.conf $SETUPDIR || exit 1
|
|
|
|
echo "Installing script tools"
|
|
mkdir -p "$BINDIR"
|
|
rm -f scripting/bin/*~
|
|
cp scripting/bin/* $BINDIR/ || exit 1
|
|
|
|
exit 0
|