mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 07:11:25 +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")
|
||||
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):
|
||||
"""Create or remove locale.
|
||||
|
||||
Reference in New Issue
Block a user