Selaa lähdekoodia

Merge pull request #9448 from bysnupy/pr4

Be more accuracy for getting def_route_int and def_route_ip
Michael Gugino 6 vuotta sitten
vanhempi
commit
e4e96ab82a
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      roles/openshift_node/files/networkmanager/99-origin-dns.sh

+ 2 - 2
roles/openshift_node/files/networkmanager/99-origin-dns.sh

@@ -42,8 +42,8 @@ if [[ $2 =~ ^(up|dhcp4-change|dhcp6-change)$ ]]; then
   # couldn't find an existing method to determine if the interface owns the
   # default route
   def_route=$(/sbin/ip route list match 0.0.0.0/0 | awk '{print $3 }')
-  def_route_int=$(/sbin/ip route get to ${def_route} | awk '{print $3}')
-  def_route_ip=$(/sbin/ip route get to ${def_route} | awk '{print $5}')
+  def_route_int=$(/sbin/ip route get to ${def_route} | awk -F 'dev' '{print $2}' | head -n1 | awk '{print $1}')
+  def_route_ip=$(/sbin/ip route get to ${def_route}  | awk -F 'src' '{print $2}' | head -n1 | awk '{print $1}')
   if [[ ${DEVICE_IFACE} == ${def_route_int} ]]; then
     if [ ! -f /etc/dnsmasq.d/origin-dns.conf ]; then
       cat << EOF > /etc/dnsmasq.d/origin-dns.conf