Fix error reporting in case locale-gen fails on non-Ubuntu systems.

This commit is contained in:
Augustus Kling 2014-01-20 00:11:01 +01:00
parent eabc9cd775
commit de19375d1b

View file

@ -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.