docs: fix type for create mask parameter
[Samba.git] / docs-xml / smbdotconf / generate-file-list.sh
bloba03ed1111282303a87cb3f3c77796618eee5f669
1 #!/bin/sh
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.
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/ncalrpc'>
16 ]>"
18 DIR=.
19 if [ "x$1" != "x" ]
20 then
21 DIR="$1"
24 OLD=`pwd`
25 cd $DIR
27 echo "<section>"
28 for I in `find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs`
29 do
30 cat $I
31 done
32 echo "</section>"
35 cd $OLD