From 52e4c1928f514856e3f9d4d6ff391ac5e4a270ca Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Tue, 29 Nov 2016 16:54:10 -0500 Subject: Renames 'usable_ip_range' to 'overcloud_ip_range' 'usable_ip_range' was confusing for a lot of users, and most thought it encompassed all of the defined ranges in the network settings file (like floating_ip_range and introspection_range). This renames it to be more accurate. JIRA: APEX-288 Change-Id: I2e106666df1bfd007f150279e2e0387a64cd0f48 Signed-off-by: Tim Rozet --- lib/post-install-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/post-install-functions.sh') diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index d396f8bf..1055994e 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -39,7 +39,7 @@ EOI else echo -e "${blue}INFO: OVS Bridge ${NET_MAP[$network]} missing IP, will configure${reset}" # use last IP of allocation pool - eval "ip_range=\${${network}_usable_ip_range}" + eval "ip_range=\${${network}_overcloud_ip_range}" ovs_ip=${ip_range##*,} eval "net_cidr=\${${network}_cidr}" if [[ $ovs_ip =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then -- cgit 1.2.3-korg