[Bug 694192] Re: vmbuilder crashed with VMBuilderException in run_cmd()
Jamie Strandboge
jamie at ubuntu.com
Mon Jan 10 21:28:28 UTC 2011
This looks to be because of this in VMBuilder/plugins/ubuntu/dapper.py:
def set_locale(self):
lang = self.context.get_setting('lang')
if lang:
self.install_from_template('/etc/default/locale', 'locale', { 'lang' : lang })
self.run_in_target('locale-gen', lang)
...
The version in natty does:
def set_locale(self):
lang = self.context.get_setting('lang')
if lang:
self.install_from_template('/etc/default/locale', 'locale', { 'lang' : lang })
if lang != "C":
self.run_in_target('locale-gen', lang)
...
--
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.
https://bugs.launchpad.net/bugs/694192
Title:
vmbuilder crashed with VMBuilderException in run_cmd()
More information about the Ubuntu-server-bugs
mailing list