aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2019-07-24 18:05:02 +0200
committerDaniel Willmann <dwillmann@sysmocom.de>2019-07-24 18:05:02 +0200
commit533fef581518aec974a10e91a35a6848f51b2b3f (patch)
treefc2c84f3b48df76fb708e7a85447106e5ea3a056 /scripts
parentae82b3fad22262488274fd5b79ec18358551f096 (diff)
regen_doc: Change IP network to an unused subnet
Previously we were using 178.18.12.0/24 which could have conflicted with the osmo-bsc sccplite TTCN3 tests. Change-Id: Ib5ab391ebb21ce2455fbb1ae47dd01ed53cd2e41
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/regen_doc.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/regen_doc.sh b/scripts/regen_doc.sh
index cd85d01..ca540f9 100755
--- a/scripts/regen_doc.sh
+++ b/scripts/regen_doc.sh
@@ -21,7 +21,7 @@ fi
docker_images_require \
"$NAME-$IMAGE_SUFFIX"
-network_create 172.18.12.0/24
+network_create 172.18.16.0/24
container_create() {
CONTAINERNAME=$1
@@ -35,15 +35,15 @@ container_create() {
}
-container_create "$NAME-$IMAGE_SUFFIX" 172.18.12.23
+container_create "$NAME-$IMAGE_SUFFIX" 172.18.16.23
# Get asciidoc counter info
${OSMO_INTERACT_VTY} \
- -c "enable;show asciidoc counters" -p "$PORT" -H 172.18.12.23 -O "$COUNTERFILE"
+ -c "enable;show asciidoc counters" -p "$PORT" -H 172.18.16.23 -O "$COUNTERFILE"
# Get vty reference
${OSMO_INTERACT_VTY} \
- -X -p "$PORT" -H 172.18.12.23 -O "$VTYFILE"
+ -X -p "$PORT" -H 172.18.16.23 -O "$VTYFILE"
docker container kill "${BUILD_TAG}-$NAME-$IMAGE_SUFFIX"