[Bug 1315741] Re: After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1 instead of 127.0.1.1 in resolv.conf

2014-05-03 Thread Thomas Hood
Can you find the nameserver 127.0.0.1 line in one of the files in
/etc/resolvconf/resolv.conf.d/ or /run/resolvconf/interface ?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1315741

Title:
  After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1
  instead of 127.0.1.1 in resolv.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resolvconf/+bug/1315741/+subscriptions

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


[Bug 1315741] Re: After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1 instead of 127.0.1.1 in resolv.conf

2014-05-03 Thread Josh Hill
Yes, it's in /run/resolvconf/interface/lo.dnsmasq

I deleted the file and restarted network-manager and resolv.conf is
generated correctly.

Weird that it completely ignored the other file in that directory,
/run/resolvconf/interface/NetworkManager, which had the correct
nameserver line but was never added into resolv.conf.

Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1315741

Title:
  After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1
  instead of 127.0.1.1 in resolv.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resolvconf/+bug/1315741/+subscriptions

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


[Bug 1315741] Re: After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1 instead of 127.0.1.1 in resolv.conf

2014-05-03 Thread Thomas Hood
/run/resolvconf/interface/lo.dnsmasq arises from /etc/init.d/dnsmasq
registering the standalone dnsmasq's listen address 127.0.0.1 with
resolvconf. Normally the standalone dnsmasq listens at all addresses
including 127.0.0.1. Did you have the standalone dnsmasq running?

It is normal that nameserver 127.0.1.1 was in
/run/resolvconf/interface/NetworkManager but not included in
resolv.conf. Resolvconf normally includes at most one loopback address
in resolv.conf.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1315741

Title:
  After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1
  instead of 127.0.1.1 in resolv.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resolvconf/+bug/1315741/+subscriptions

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


[Bug 1315741] Re: After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1 instead of 127.0.1.1 in resolv.conf

2014-05-03 Thread Josh Hill
I don't remember having installed or setup the standalone dnsmasq daemon
in the past. The dnsmasq package isn't installed (dnsmasq-base and
dnsmasq-utils are though), yet it does appear that /etc/init.d/dnsmasq
exists and does register 127.0.0.1 with resolvconf.

In /etc/default/dnsmasq it has ENABLED=1. Will changing this to
ENABLED=0 disable the standalone dnsmasq and prevent it from registering
127.0.0.1 in the future? Or should I change it in /etc/init.d/dnsmasq
instead? Or is there a better way to make sure it's disabled?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1315741

Title:
  After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1
  instead of 127.0.1.1 in resolv.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resolvconf/+bug/1315741/+subscriptions

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


[Bug 1315741] Re: After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1 instead of 127.0.1.1 in resolv.conf

2014-05-03 Thread Thomas Hood
If the dnsmasq package is not installed then purging the dnsmasq
package will remove /etc/init.d/dnsmasq and solve your problem.

Do not purge or remove the dnsmasq-base package. The dnsmasq-base
package includes the dnsmasq binary which is used by NetworkManager.

Of course, the question remains: why was /etc/init.d/dnsmasq registering
an address with resolvconf when the dnsmasq package was not installed?

Ah.

At the top of /etc/init.d/dnsmasq there is a test - x /usr/sbin/dnsmasq
|| exit 0 which causes the initscript to exit if the dnsmasq binary is
not present. When a daemon is packaged in the standard way, the binary
is present if and only if the package is installed and a test like this
suffices to disable the initscript if and only if the package is not
installed.

But not in the case of the dnsmasq package. The binary is in dnsmasq-
base. So the initscript does not disable itself when the dnsmasq package
is removed.

This is a bug.

For reference, Debian policy §9.3.2 says the following.

«
These scripts should not fail obscurely when the configuration files remain but 
the package has been removed, as configuration files remain on the system after 
the package has been removed. Only when dpkg is executed with the --purge 
option will configuration files be removed. In particular, as the 
/etc/init.d/package script itself is usually a conffile, it will remain on the 
system if the package is removed but not purged. Therefore, you should include 
a test statement at the top of the script, like this:

 test -f program-executed-later-in-script || exit 0
»

I am quite surprised that this bug hasn't been noticed before.

Reading the initscript I see another bug: the script fails to look at
the return value of the start function. I will file a separate report
about that, since it is not the cause of your problem.

** Changed in: resolvconf (Ubuntu)
   Status: New = Confirmed

** Summary changed:

- After upgrading from 12.04 to 14.04, network manager puts 127.0.0.1 instead 
of 127.0.1.1 in resolv.conf
+ The dnsmasq initscript fails to disable itself when the dnsmasq package is 
removed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1315741

Title:
  The dnsmasq initscript fails to disable itself when the dnsmasq
  package is removed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resolvconf/+bug/1315741/+subscriptions

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