I had that installed previously and yes, i noticed that the vpnc package added something to the script. This may have prevented the script from being updated. Would someone who has updated his machine be so kind to put his /etc/udhcpc/libicd_network_ipv4.script somewhere so i can compare them?
#!/bin/sh -e if route -n | grep -e "^0\.0\.0\.0" | grep -q tun0; then route -n | grep -e "^0\.0\.0\.0" | grep $interface | awk '{print $2}' > /tmp/vpnc_route ip=`cat /var/run/vpnc/defaultroute | cut -f3 -d' '` if [ -z $ip ]; then killall vpnc else if route -n | grep -e "^0\.0\.0\.0" | grep -q $ip; then route delete default $interface fi fi fi