manuals: Add script to regenerate vty/counter documentation

Change-Id: I8ee63a3da532285def8de7fe5e90873152adb21e
Related: OS#1700
This commit is contained in:
Daniel Willmann 2019-06-19 14:21:28 +02:00
parent 1fd8a7e887
commit e7a5764f1a
2 changed files with 18 additions and 0 deletions

View File

@ -1,6 +1,7 @@
EXTRA_DIST = osmosgsn-usermanual.adoc \
osmosgsn-usermanual-docinfo.xml \
osmosgsn-vty-reference.xml \
regen_doc.sh \
chapters \
vty

17
doc/manuals/regen_doc.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh -x
if [ -z "$DOCKER_PLAYGROUND" ]; then
echo "You need to set DOCKER_PLAYGROUND"
exit 1
fi
SCRIPT=$(realpath "$0")
MANUAL_DIR=$(dirname "$SCRIPT")
COMMIT=${COMMIT:-$(git log -1 --format=format:%H)}
cd "$DOCKER_PLAYGROUND/scripts" || exit 1
OSMO_SGSN_BRANCH=$COMMIT ./regen_doc.sh osmo-sgsn 4245 \
"$MANUAL_DIR/chapters/counters_generated.adoc" \
"$MANUAL_DIR/vty/sgsn_vty_reference.xml"