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
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/694192

Title:
  vmbuilder crashed with VMBuilderException in run_cmd()

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to