param: Remove winbindd privileged socket directory option
[bbaumbach/samba-autobuild/.git] / docs-xml / smbdotconf / generate-file-list.sh
1 #!/bin/sh
2 #
3 # This is the fallback table for when we use the docs-xml build
4 # system.  When build as part of the main waf build, these are set to
5 # the full correct path for the system.
6 #
7 echo "<!DOCTYPE section [
8 <!ENTITY pathconfig.SCRIPTSBINDIR        '\${prefix}/sbin'>
9 <!ENTITY pathconfig.LOCKDIR              '\${prefix}/var/lock'>
10 <!ENTITY pathconfig.NCALRPCDIR           '\${prefix}/var/run/ncalrpc'>
11 <!ENTITY pathconfig.PIDDIR               '\${prefix}/var/run'>
12 <!ENTITY pathconfig.STATEDIR             '\${prefix}/var/locks'>
13 <!ENTITY pathconfig.PRIVATE_DIR          '\${prefix}/private'>
14 <!ENTITY pathconfig.SMB_PASSWD_FILE      '\${prefix}/private/smbpasswd'>
15 <!ENTITY pathconfig.WINBINDD_SOCKET_DIR  '\${prefix}/var/run/winbindd'>
16 <!ENTITY pathconfig.CACHEDIR             '\${prefix}/var/cache'>
17 <!ENTITY pathconfig.NTP_SIGND_SOCKET_DIR '\${prefix}/var/lib/ntp_signd'>
18 ]>"
19
20 DIR=.
21 if [ "x$1" != "x" ]
22 then
23         DIR="$1"
24 fi
25
26 OLD=`pwd`
27 cd $DIR
28
29 echo "<section>"
30 for I in `find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs`
31 do 
32         cat $I
33 done
34 echo "</section>"
35
36
37 cd $OLD