[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2012-04-10 Thread Scott Moser
** Changed in: cloud-init Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu. https://bugs.launchpad.net/bugs/871966 Title: FQDN written to /etc/hosts causes problems for

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2012-01-06 Thread Eric Hammond
Though I don't like the current way Oneiric manages /etc/hosts (and submitted related bug #890501) I agree with Scott that it is how Oneiric works on EC2 and changes could cause existing installations to break. In fact, I have automated system code that works around the bug which would break if

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2012-01-05 Thread Jason X.
Will the fix also be available for Oneiric? -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu. https://bugs.launchpad.net/bugs/871966 Title: FQDN written to /etc/hosts causes problems for clustering systems To

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2012-01-05 Thread Scott Moser
Jason, I would actually like to not pull the fix back to oneiric. As doing so would break people using oneiric who were expecting the behavior that is present there now. At very least we have to think seriously about it and come up with a list of what types of users would be affected. Do

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-12-22 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init - 0.6.3~bzr497-0ubuntu1 --- cloud-init (0.6.3~bzr497-0ubuntu1) precise; urgency=low * New upstream snapshot. - cloud-config support for configuring apt-proxy - selection of local mirror based on presense of 'ubuntu-mirror' dns

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-12-19 Thread Scott Moser
** Changed in: cloud-init Status: New = Triaged ** Changed in: cloud-init Importance: Undecided = Medium ** Changed in: cassandra (juju Charms Collection) Importance: Undecided = Medium -- You received this bug notification because you are a member of Ubuntu Server Team, which is

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-12-19 Thread Launchpad Bug Tracker
** Branch linked: lp:cloud-init -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu. https://bugs.launchpad.net/bugs/871966 Title: FQDN written to /etc/hosts causes problems for clustering systems To manage

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-12-19 Thread Scott Moser
This is fix-commited in cloud-init in revision 491 (http://bazaar.launchpad.net/~cloud-init-dev/cloud- init/trunk/revision/491). See the commit message there for more information. ** Changed in: cloud-init (Ubuntu Precise) Status: Confirmed = Fix Committed -- You received this bug

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-12-19 Thread Scott Moser
This is fix-commited in cloud-init in revision 491 (http://bazaar.launchpad.net/~cloud-init-dev/cloud- init/trunk/revision/491). See the commit message there for more information. ** Changed in: cloud-init (Ubuntu Precise) Status: Fix Committed = Triaged ** Changed in: cloud-init

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-11-15 Thread Scott Moser
** Description changed: *** Ubuntu 11.10 Release Note *** Cloud instances and servers pre-seeded with cloud-init will have their FQDN written to /etc/hosts and pointed to the IP 127.0.1.1. This may cause issues for daemons which try to listen on their hostname, rather than 0.0.0.0,

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-19 Thread Kate Stewart
** Also affects: cloud-init (Ubuntu Precise) Importance: Low Status: Confirmed ** Changed in: ubuntu-release-notes Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-13 Thread Kate Stewart
** Changed in: ubuntu-release-notes Status: New = Incomplete ** Changed in: ubuntu-release-notes Status: Incomplete = Fix Committed -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu.

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-13 Thread James Page
** Changed in: cassandra (juju Charms Collection) Status: In Progress = Fix Released -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu. https://bugs.launchpad.net/bugs/871966 Title: FQDN written to

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-11 Thread James Page
As a work-around until this is resolved in one way or another in juju I'm using: dig +short `unit-get private-address` dig deals with being passed an IP address nicely and will resolve a hostname correctly to the internal IP address of the instance in ec2 and openstack environments. -- You

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-11 Thread James Page
A bit more testing reveals that this solution does not work so well in a local juju environment; adapting with a check to see if an IP address is returned from private-address before trying to resolve using dig -- You received this bug notification because you are a member of Ubuntu Server Team,

Re: [Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-11 Thread Clint Byrum
Excerpts from Scott Moser's message of Tue Oct 11 00:18:27 UTC 2011: gethostbyname(hostname) is non-determinable. there could be multiple responses. and indeterminable order. Agreed, which is precisely why I believe cloud-init must leave the FQDN out of /etc/hosts if there is any response to

Re: [Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-11 Thread Scott Moser
On Tue, 11 Oct 2011, Clint Byrum wrote: Excerpts from Scott Moser's message of Tue Oct 11 00:18:27 UTC 2011: gethostbyname(hostname) is non-determinable. there could be multiple responses. and indeterminable order. Agreed, which is precisely why I believe cloud-init must leave the FQDN

Re: [Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-11 Thread Clint Byrum
Excerpts from Scott Moser's message of Tue Oct 11 16:57:27 UTC 2011: On Tue, 11 Oct 2011, Clint Byrum wrote: Excerpts from Scott Moser's message of Tue Oct 11 00:18:27 UTC 2011: gethostbyname(hostname) is non-determinable. there could be multiple responses. and indeterminable order.

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-11 Thread Clint Byrum
After discussing with Scott Moser, its agreed that this may cause issues, but not necessarily that it is a bug as much as a change in behavior that needs documenting. Adding a ubuntu-release-notes task with suggested release note. ** Changed in: cassandra (juju Charms Collection) Status:

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-10 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: cloud-init (Ubuntu) Status: New = Confirmed -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu.

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-10 Thread Clint Byrum
** Also affects: cassandra (juju Charms Collection) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu. https://bugs.launchpad.net/bugs/871966 Title: FQDN written to

[Bug 871966] Re: FQDN written to /etc/hosts causes problems for clustering systems

2011-10-10 Thread Scott Moser
gethostbyname(hostname) is non-determinable. there could be multiple responses. and indeterminable order. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu. https://bugs.launchpad.net/bugs/871966 Title: FQDN