From 17d72884403d3926c840cd39bbaa1d47d1b6da55 Mon Sep 17 00:00:00 2001 From: Martin Schwenke Date: Sat, 25 May 2013 19:08:49 +1000 Subject: tests: Fix integration tests to use real private IPs 192.0.2.x was a typo. Signed-off-by: Martin Schwenke (This used to be ctdb commit c9e36f596c63c9af7f80d7cb8d7a5c6dcca4860a) --- ctdb/tests/scripts/integration.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ctdb/tests/scripts/integration.bash b/ctdb/tests/scripts/integration.bash index 429df69de1..7d77139110 100644 --- a/ctdb/tests/scripts/integration.bash +++ b/ctdb/tests/scripts/integration.bash @@ -574,8 +574,8 @@ daemons_setup () echo 127.0.0.$i >>"$CTDB_NODES" # 2 public addresses on most nodes, just to make things interesting. if [ $(($i - 1)) -ne $no_public_ips ] ; then - echo "192.0.2.$i/24 lo" >>"$public_addresses_all" - echo "192.0.2.$(($i + $TEST_LOCAL_DAEMONS))/24 lo" >>"$public_addresses_all" + echo "192.168.234.$i/24 lo" >>"$public_addresses_all" + echo "192.168.234.$(($i + $TEST_LOCAL_DAEMONS))/24 lo" >>"$public_addresses_all" fi fi done -- cgit