Do not assume that /var/lib/locales/supported.d/local exist

Since people can generate their own image with debootstrap, and
this wouldn't create a file /var/lib/locales/supported.d/local,
better check if it exist and work if it doesn't.

Fix #656
This commit is contained in:
Michael Scherer 2015-07-25 11:57:21 +02:00
parent dfdd2bb5ed
commit 1d5afdc139

View file

@ -176,7 +176,7 @@ def main():
state = module.params['state']
if not os.path.exists("/etc/locale.gen"):
if os.path.exists("/var/lib/locales/supported.d/local"):
if os.path.exists("/var/lib/locales/supported.d/"):
# Ubuntu created its own system to manage locales.
ubuntuMode = True
else: