i had found a simple work around: 
place the following script in /etc/network/if-up.d/zzz_resolvconffix
-----
#!/bin/sh
[ -x /sbin/resolvconf ] || exit 0

[ "x$ADDRFAM" == "xinet6" ] && exit 0

rm /etc/resolv.conf
ln -s /etc/resolvconf/run/resolv.conf /etc/resolv.conf

for NS in $DHCP4_DOMAIN_NAME_SERVERS ; do
    R="${R}nameserver $NS
"
done 
echo -n "$R" | /sbin/resolvconf -a "${IFACE}.${ADDRFAM}"
----
 and run "chmod 755 /etc/network/if-up.d/zzz_resolvconffix"

 ... just reconnect your  nm session

-- 
network-manager 0.7 breaks resolvconf integration
https://bugs.launchpad.net/bugs/256480
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to