2014-11-13 05:10:20 +01:00
|
|
|
#!/usr/bin/env python3
|
2015-02-18 15:06:10 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2014-11-13 05:10:20 +01:00
|
|
|
# === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
#
|
|
|
|
# Copyright 2014, Anke Boersma <demm@kaosx.us>
|
2015-02-17 14:38:30 +01:00
|
|
|
# Copyright 2015, Philip Müller <philm@manjaro.org>
|
2014-11-13 05:10:20 +01:00
|
|
|
#
|
|
|
|
# Calamares is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Calamares is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
import libcalamares
|
|
|
|
|
|
|
|
|
|
|
|
def run():
|
|
|
|
""" Create locale """
|
|
|
|
|
|
|
|
us = '#en_US'
|
2014-11-26 18:15:39 +01:00
|
|
|
locale = libcalamares.globalstorage.value("lcLocale")
|
2014-11-25 17:56:38 +01:00
|
|
|
if not locale:
|
|
|
|
locale = 'en_US.UTF-8 UTF-8'
|
2014-11-13 05:10:20 +01:00
|
|
|
|
|
|
|
install_path = libcalamares.globalstorage.value("rootMountPoint")
|
|
|
|
|
2014-11-28 20:05:54 +01:00
|
|
|
# restore backup if available
|
|
|
|
if os.path.exists('/etc/locale.gen.bak'):
|
2015-02-17 14:38:30 +01:00
|
|
|
shutil.copy2("{!s}/etc/locale.gen.bak".format.(install_path),
|
|
|
|
"{!s}/etc/locale.gen".format(install_path))
|
2014-11-13 05:10:20 +01:00
|
|
|
|
2014-11-28 20:05:54 +01:00
|
|
|
# run locale-gen if detected
|
|
|
|
if os.path.exists('/etc/locale.gen'):
|
2014-11-13 05:10:20 +01:00
|
|
|
text = []
|
2015-02-17 14:38:30 +01:00
|
|
|
with open("{!s}/etc/locale.gen".format(install_path), "r") as gen:
|
2014-11-13 05:10:20 +01:00
|
|
|
text = gen.readlines()
|
|
|
|
|
|
|
|
# always enable en_US
|
2015-02-17 14:38:30 +01:00
|
|
|
with open("{!s}/etc/locale.gen".format(install_path), "w") as gen:
|
2014-11-13 05:10:20 +01:00
|
|
|
for line in text:
|
|
|
|
if us in line and line[0] == "#":
|
|
|
|
# uncomment line
|
|
|
|
line = line[1:]
|
|
|
|
if locale in line and line[0] == "#":
|
|
|
|
# uncomment line
|
|
|
|
line = line[1:]
|
|
|
|
gen.write(line)
|
|
|
|
|
|
|
|
libcalamares.utils.chroot_call(['locale-gen'])
|
|
|
|
print('locale.gen done')
|
|
|
|
|
|
|
|
locale_conf_path = os.path.join(install_path, "etc/locale.conf")
|
|
|
|
with open(locale_conf_path, "w") as locale_conf:
|
2015-02-17 14:38:30 +01:00
|
|
|
locale_split = locale.split(' ')[0]
|
|
|
|
locale_conf.write("LANG={!s}\n".format(locale_split))
|
2014-11-13 05:10:20 +01:00
|
|
|
|
|
|
|
return None
|