Fix function call in /etc/rc.local script

Change-Id: Icb2906de493ee0b100add11847331f152bea35ae
Related-bug: #1507728
This commit is contained in:
Sergey Kulanov 2015-10-19 22:01:00 +03:00
parent a2d78bdf7b
commit c0c7176b12
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ function get_ethernet_interfaces() {
done
}
first=yes
for intf in \$(get_ethernet_interfaces()) ; do
for intf in \$(get_ethernet_interfaces) ; do
ip = "\$ip_list |\$(ip -4 -o addr show dev \$intf | awk '{ print \$4 }' | cut -d/ -f1)"
if [ "\$first" = "yes" ]; then
ipstr="Fuel UI is available on: https://\$ip:8443"