Comment 34 for bug 90681

Revision history for this message
Martin Pitt (pitti) wrote :

Thanks, Philip! Two questions:

 - It looks like this patch would stop renewing leases for *all* interfaces if *any* interface is using a VPN.

 - This looks very complicated to me:

       [ -n "( ifconfig -s | awk ' ( $1 ~ /^(tun|cipsec)/ ) {print $1}' )"]

   I'm no awk guru, but isn't that the same as

       ifconfig -s | egrep -q '^(tun|cipsec'
   ?