Merge "Fix incorrect nova config init script"

This commit is contained in:
Zuul 2018-07-10 13:27:38 +00:00 committed by Gerrit Code Review
commit 3a48b149c5
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ if [ -z "${client_address}" ] ; then
fi
# determine client ip dynamically based on interface provided
client_address=$(ip a s $client_interface | grep 'inet ' | awk '{print $2}' | awk -F "/" '{print $1}')
client_address=$(ip a s $client_interface | grep 'inet ' | awk '{print $2}' | awk -F "/" '{print $1}' | head -n 1)
fi
if [ -z "${listen_ip}" ] ; then

View File

@ -37,7 +37,7 @@ if [ -z "${client_address}" ] ; then
fi
# determine client ip dynamically based on interface provided
client_address=$(ip a s $client_interface | grep 'inet ' | awk '{print $2}' | awk -F "/" '{print $1}')
client_address=$(ip a s $client_interface | grep 'inet ' | awk '{print $2}' | awk -F "/" '{print $1}' | head -n 1)
fi
if [ -z "${listen_ip}" ] ; then