s4-smbtorture: refactor setprinter devicemode calls in RPC-SPOOLSS-PRINTER.
[ira/wip.git] / source4 / script / installmisc.sh
1 #!/bin/sh
2 # install miscellaneous files
3
4 [ $# -eq 7 ] || {
5     echo "Usage: installmisc.sh DESTDIR SRCDIR SETUPDIR BINDDIR SBINDDIR PYTHONDIR PYTHON"
6     exit 1
7 }
8
9 DESTDIR="$1"
10 SRCDIR="$2"
11 SETUPDIR="$3"
12 BINDIR="$4"
13 SBINDIR="$5"
14 PYTHONDIR="$6"
15 PYTHON="$7"
16
17 cd $SRCDIR || exit 1
18
19 if $PYTHON -c "import sys; sys.exit('$PYTHONDIR' in sys.path)"; then
20         PYTHON_PATH_NEEDS_FIXING=yes
21         echo "sys.path in python scripts will be updated to include $PYTHONDIR"
22 else
23         PYTHON_PATH_NEEDS_FIXING=no
24 fi
25
26 # fixup a python script to use the right path
27 fix_python_path() {
28     f="$1"
29     if egrep 'sys.path.insert.*bin/python' $f > /dev/null; then
30         if [ "$PYTHON_PATH_NEEDS_FIXING" = "yes" ]; then
31             # old systems don't have sed -i :-(
32             sed "s|\(sys.path.insert.*\)bin/python\(.*\)$|\1$PYTHONDIR\2|g" < $f > $f.$$ || exit 1
33         else
34             # old systems don't have sed -i :-(
35             sed "s|\(sys.path.insert.*\)bin/python\(.*\)$||g" < $f > $f.$$ || exit 1
36         fi
37         mv -f $f.$$ $f || exit 1
38         chmod +x $f
39     fi
40 }
41
42 echo "Installing setup templates"
43 mkdir -p $SETUPDIR || exit 1
44 mkdir -p $SBINDIR || exit 1
45 mkdir -p $BINDIR || exit 1
46 mkdir -p $SETUPDIR/ad-schema || exit 1
47 mkdir -p $SETUPDIR/display-specifiers || exit1
48 cp setup/ad-schema/*.txt $SETUPDIR/ad-schema || exit 1
49 cp setup/display-specifiers/*.txt $SETUPDIR/display-specifiers || exit 1
50
51 echo "Installing sbin scripts from setup/*"
52 for p in provision
53 do
54         cp setup/$p $SBINDIR || exit 1
55         chmod a+x $SBINDIR/$p
56         fix_python_path $SBINDIR/$p || exit 1
57 done
58
59 echo "Installing sbin scripts from scripting/bin/*"
60 for p in upgradeprovision
61 do
62         cp scripting/bin/$p $SBINDIR || exit 1
63         chmod a+x $SBINDIR/$p
64         fix_python_path $SBINDIR/$p || exit 1
65 done
66
67 echo "Installing remaining files in $SETUPDIR"
68 cp setup/schema-map-* $SETUPDIR || exit 1
69 cp setup/DB_CONFIG $SETUPDIR || exit 1
70 cp setup/*.inf $SETUPDIR || exit 1
71 cp setup/*.ldif $SETUPDIR || exit 1
72 cp setup/*.reg $SETUPDIR || exit 1
73 cp setup/*.zone $SETUPDIR || exit 1
74 cp setup/*.conf $SETUPDIR || exit 1
75 cp setup/*.php $SETUPDIR || exit 1
76 cp setup/*.txt $SETUPDIR || exit 1
77 cp setup/provision.smb.conf.dc $SETUPDIR || exit 1
78 cp setup/provision.smb.conf.member $SETUPDIR || exit 1
79 cp setup/provision.smb.conf.standalone $SETUPDIR || exit 1
80
81 exit 0