Files
trove/devstack/plugin.sh
Lingxian Kong 4a85d9b77f Fix the way to get localhost IP in devstack
In Ubuntu Bionic, the following command returns "uid" so that the
guest-agent service will fail because of invalid IP address.

$ ip route get 8.8.8.8 | head -1 | cut -d' ' -f8
uid
$ ip route get 8.8.8.8 | head -1
8.8.8.8 via 10.0.17.1 dev ens3 src 10.0.17.131 uid 0

In Ubuntu Xenial:

$ ip route get 8.8.8.8 | head -1 | cut -d' ' -f8
10.0.17.132
$ ip route get 8.8.8.8 | head -1
8.8.8.8 via 192.168.192.1 dev eth0  src 10.0.17.132

Change-Id: Iae24686fa65603b7d22b09da99b7590e4e117454
2019-03-26 11:22:26 +13:00

30 KiB