[Bug 1073077] Re: zsh complains about locale_warn on launch

2013-02-20 Thread Scott Moser
** No longer affects: zsh (Ubuntu) -- 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/1073077 Title: zsh complains about locale_warn on launch To manage notifications about this

[Bug 1073077] Re: zsh complains about locale_warn on launch

2013-01-16 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init - 0.6.3-0ubuntu1.3 --- cloud-init (0.6.3-0ubuntu1.3) precise-proposed; urgency=low * debian/patches/lp-1070345-landscape-restart-after-change.patch, debian/patches/lp-1066115-landscape-install-fix-perms.patch: fix missing or

[Bug 1073077] Re: zsh complains about locale_warn on launch

2013-01-16 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init - 0.7.0-0ubuntu2.2 --- cloud-init (0.7.0-0ubuntu2.2) quantal-proposed; urgency=low * debian/patches/lp-1090482-fix-cloud-config-mirrors.patch: fix issue with cloud-config data in user-data providing mirror info (LP: #1073077)

[Bug 1073077] Re: zsh complains about locale_warn on launch

2013-01-15 Thread Chris Halse Rogers
Scott: Was that verification for Precise or Quantal or both? -- 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/1073077 Title: zsh complains about locale_warn on launch To manage

[Bug 1073077] Re: zsh complains about locale_warn on launch

2013-01-15 Thread Scott Moser
I've verified on both. -- 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/1073077 Title: zsh complains about locale_warn on launch To manage notifications about this bug go to:

[Bug 1073077] Re: zsh complains about locale_warn on launch

2013-01-08 Thread Scott Moser
** Tags removed: verification-needed ** Tags added: verification-done -- 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/1073077 Title: zsh complains about locale_warn on launch To

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-12-13 Thread Clint Byrum
Hello Marti, or anyone else affected, Accepted cloud-init into quantal-proposed. The package will build now and be available at http://launchpad.net/ubuntu/+source/cloud- init/0.7.0-0ubuntu2.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-12-12 Thread Scott Moser
verified fixed. % dpkg-query --show cloud-init cloud-init 0.6.3-0ubuntu1.2 % LC_ALL=fr_FR.UTF-8 zsh /etc/profile.d/Z99-cloud-locale-test.sh _ WARNING! Your environment specifies an invalid locale. This can affect your user

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-12-10 Thread Steve Langasek
Hello Marti, or anyone else affected, Accepted cloud-init into precise-proposed. The package will build now and be available at http://launchpad.net/ubuntu/+source/cloud- init/0.6.3-0ubuntu1.2 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-12-01 Thread Scott Moser
** Changed in: cloud-init (Ubuntu Quantal) Status: Triaged = In Progress ** Changed in: cloud-init (Ubuntu Quantal) Assignee: (unassigned) = Scott Moser (smoser) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-29 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/quantal/cloud-init/sru -- 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/1073077 Title: zsh complains about locale_warn on launch To manage

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-14 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/1073077 Title: zsh complains about locale_warn on launch To

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-14 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init - 0.7.1-0ubuntu1 --- cloud-init (0.7.1-0ubuntu1) raring; urgency=low * New upstream release. * landscape: install landscape-client package if not installed. only take action if cloud-config is present (LP: #1066115) *

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-08 Thread Scott Moser
I believe that I have a fix committed for this in cloud-init but I'm not able to reproduce this issue other than explicitly running: $ zsh /etc/profile.d/Z99-cloud-locale-test.sh /etc/profile.d/Z99-cloud-locale-test.sh locale_warn:13: * not found Ie, it doesn't seem to me that the /etc/profile.d

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-08 Thread Scott Moser
** Description changed: - zsh complains if an '=' occurs in a suffix or prefix shell parameter - expansion. + == SRU Information == + [Impact] + * Users who select zsh as shell and invoke /etc/profile.d scripts +see an error message like: + locale_warn:13: * not found + * This

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-07 Thread Scott Moser
Forwarded this zsh issue upstream at http://www.zsh.org/mla/workers//2012/msg00686.html ** No longer affects: zsh (Ubuntu Quantal) ** No longer affects: zsh (Ubuntu Precise) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-07 Thread Scott Moser
The fix above will make zsh not complain, but it still doesn't function correctly. This is because: % zsh -c 'args=a b c; for f in $args; do echo $f; done' a b c while % sh -c 'args=a b c; for f in $args; do echo $f; done' a b c I need to figure out how to make zsh do the right thing, info

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Scott Moser
It would seem to me that this is a bug in zsh. It is demonstrable like this: ubuntu@quantal$ sh -c 'f=foo=bar; echo ${f%%=*}' foo ubuntu@quantal$ bash -c 'f=foo=bar; echo ${f%%=*}' foo ubuntu@quantal$ zsh -c 'f=foo=bar; echo ${f%%=*}' zsh:1: * not found It is work-aroundable by escaping the '='

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/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/1073077 Title: zsh complains about locale_warn on launch To manage notifications about

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Scott Moser
workaround is staged in lp:ubuntu/raring/cloud-init at revno 224. ** Changed in: cloud-init (Ubuntu) Status: Triaged = 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 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Scott Moser
** Also affects: zsh (Ubuntu Precise) Importance: Undecided Status: New ** Also affects: cloud-init (Ubuntu Precise) Importance: Undecided Status: New ** Also affects: zsh (Ubuntu Quantal) Importance: Undecided Status: New ** Also affects: cloud-init (Ubuntu

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru -- 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/1073077 Title: zsh complains about locale_warn on launch To manage

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Scott Moser
** Changed in: cloud-init (Ubuntu) Status: Fix Committed = Triaged ** Also affects: cloud-init 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.

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 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/1073077 Title: zsh complains about locale_warn on launch To manage notifications about this bug

[Bug 1073077] Re: zsh complains about locale_warn on launch

2012-11-06 Thread Scott Moser
fixed in revno 697 ** Changed in: cloud-init Status: New = Fix Committed ** Changed in: cloud-init Importance: Undecided = Low -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to cloud-init in Ubuntu.