mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Simple fix for locale.present on Ubuntu.
Signed-off-by: René Jochum <rene@jochums.at>
This commit is contained in:
parent
2f0f59b6cb
commit
20032c55f3
1 changed files with 1 additions and 2 deletions
|
@ -304,8 +304,7 @@ def gen_locale(locale, **kwargs):
|
|||
cmd = ['locale-gen']
|
||||
if on_gentoo:
|
||||
cmd.append('--generate')
|
||||
if not on_ubuntu:
|
||||
cmd.append(locale)
|
||||
cmd.append(locale)
|
||||
elif salt.utils.which("localedef") is not None:
|
||||
cmd = ['localedef', '--force',
|
||||
'-i', "{0}_{1}".format(locale_info['language'], locale_info['territory']),
|
||||
|
|
Loading…
Add table
Reference in a new issue