Fix error reporting in case locale-gen fails on non-Ubuntu systems.
This commit is contained in:
parent
eabc9cd775
commit
de19375d1b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ def apply_change(targetState, name, encoding):
|
||||||
|
|
||||||
localeGenExitValue = call("locale-gen")
|
localeGenExitValue = call("locale-gen")
|
||||||
if localeGenExitValue!=0:
|
if localeGenExitValue!=0:
|
||||||
module.fail_json(msg="locale.gen failed to execute, it returned "+str(localeGenExitValue))
|
raise EnvironmentError(localeGenExitValue, "locale.gen failed to execute, it returned "+str(localeGenExitValue))
|
||||||
|
|
||||||
def apply_change_ubuntu(targetState, name, encoding):
|
def apply_change_ubuntu(targetState, name, encoding):
|
||||||
"""Create or remove locale.
|
"""Create or remove locale.
|
||||||
|
|
Loading…
Reference in a new issue