We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2db5f08 + 10db44d commit 5a70e3fCopy full SHA for 5a70e3f
stack.sh
@@ -298,7 +298,7 @@ SCHEDULER=${SCHEDULER:-nova.scheduler.filter_scheduler.FilterScheduler}
298
HOST_IP_IFACE=${HOST_IP_IFACE:-eth0}
299
# Use the eth0 IP unless an explicit is set by ``HOST_IP`` environment variable
300
if [ -z "$HOST_IP" -o "$HOST_IP" == "dhcp" ]; then
301
- HOST_IP=`LC_ALL=C /sbin/ifconfig ${HOST_IP_IFACE} | grep -m 1 'inet addr:'| cut -d: -f2 | awk '{print $1}'`
+ HOST_IP=`LC_ALL=C ip -f inet addr show ${HOST_IP_IFACE} | awk '/inet/ {split($2,parts,"/"); print parts[1]}' | head -n1`
302
if [ "$HOST_IP" = "" ]; then
303
echo "Could not determine host ip address."
304
echo "Either localrc specified dhcp on ${HOST_IP_IFACE} or defaulted to eth0"
0 commit comments