Review at  https://gerrit.osmocom.org/4392

OsmoHLR: add make target to update the example ctrl and vty files

Change-Id: I88027396ec15101697a79aa5e964387d47abdae2
---
M OsmoHLR/Makefile
1 file changed, 41 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-gsm-manuals 
refs/changes/92/4392/1

diff --git a/OsmoHLR/Makefile b/OsmoHLR/Makefile
index a9dc393..234a48c 100644
--- a/OsmoHLR/Makefile
+++ b/OsmoHLR/Makefile
@@ -8,3 +8,44 @@
 include $(TOPDIR)/build/Makefile.vty-reference.inc
 
 include $(TOPDIR)/build/Makefile.common.inc
+
+OSMO_HLR_PATH ?= ../../osmo-hlr
+TMP_DB = generated/hlr.db
+
+update-examples: update-examples-ctrl update-examples-vty
+
+.PHONY: found-update-deps
+found-update-deps:
+       @if [ ! -f "$(OSMO_HLR_PATH)/sql/hlr.sql" ]; then \
+               echo "You need to define OSMO_HLR_PATH to point at an 
osmo-hlr.git"; \
+               exit 1; \
+       fi
+       @if [ -z "$(shell which osmo-hlr)" ]; then \
+               echo "osmo-hlr needs to be installed / available in the PATH"; \
+               exit 1; \
+       fi
+       @if [ -z "$(shell which osmo_verify_transcript_ctrl.py)" ]; then \
+               echo "You need to install 
git.osmocom.org/python/osmo-python-tests.git"; \
+               exit 1; \
+       fi
+       @if [ -z "$(shell which osmo_verify_transcript_vty.py)" ]; then \
+               echo "You need to install 
git.osmocom.org/python/osmo-python-tests.git"; \
+               exit 1; \
+       fi
+
+update-examples-ctrl: found-update-deps
+       mkdir -p generated
+       rm -f "$(TMP_DB)"
+       sqlite3 "$(TMP_DB)" < "$(OSMO_HLR_PATH)/sql/hlr.sql"
+       sqlite3 "$(TMP_DB)" < "$(OSMO_HLR_PATH)/tests/test_subscriber.sql"
+       osmo_verify_transcript_ctrl.py \
+         -r "osmo-hlr -l $(TMP_DB) -c 
/n/s/osmo/src/osmo-hlr/doc/examples/osmo-hlr.cfg" \
+         -p 4259 --update *.ctrl
+
+update-examples-vty: found-update-deps
+       mkdir -p generated
+       rm -f "$(TMP_DB)"
+       sqlite3 "$(TMP_DB)" < "$(OSMO_HLR_PATH)/sql/hlr.sql"
+       osmo_verify_transcript_vty.py \
+         -r "osmo-hlr -l $(TMP_DB) -c 
/n/s/osmo/src/osmo-hlr/doc/examples/osmo-hlr.cfg" \
+         -p 4258 --update *.vty

-- 
To view, visit https://gerrit.osmocom.org/4392
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I88027396ec15101697a79aa5e964387d47abdae2
Gerrit-PatchSet: 1
Gerrit-Project: osmo-gsm-manuals
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <[email protected]>

Reply via email to