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
This commit is contained in:
Daniel Willmann 2019-07-24 18:05:02 +02:00
parent ae82b3fad2
commit 533fef5815
1 changed files with 4 additions and 4 deletions

View File

@ -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"