mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix error reporting in case locale-gen fails on non-Ubuntu systems.
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user