mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
-
16 lines
545 B
Bash
Executable File
16 lines
545 B
Bash
Executable File
#!/bin/sh
|
|
sh generate-file-list.sh >parameters.all.xml
|
|
|
|
xsltproc --xinclude \
|
|
--param smb.context "'G'" \
|
|
--output parameters.global.xml \
|
|
generate-context.xsl parameters.all.xml
|
|
|
|
xsltproc --xinclude \
|
|
--param smb.context "'S'" \
|
|
--output parameters.service.xml \
|
|
generate-context.xsl parameters.all.xml
|
|
|
|
xsltproc --xinclude expand-smb.conf.xsl smb.conf.5.xml | \
|
|
xsltproc http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl -
|