1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/docs-xml/smbdotconf/generate-file-list.sh
Andrew Bartlett 45094bd891 docs-xml: Use &pathconfig.WINBINDD_SOCKET_DIR; to avoid reference to old /tmp/.winbindd
We can now write docs that follow how the software on this system was
built, which is much less confusing for users.  Also /tmp/.winbindd
has not been used for a long time.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15101

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
2022-06-22 15:50:33 +00:00

24 lines
308 B
Bash
Executable File

#!/bin/sh
#
set -e
echo "<!DOCTYPE section ["
$(dirname $0)/../generate-pathconf-entities.sh
echo "]>"
DIR=.
if [ "x$1" != "x" ]; then
DIR="$1"
fi
OLD=$(pwd)
cd $DIR
echo "<section>"
for I in $(find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs); do
cat $I
done
echo "</section>"
cd $OLD