mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
![]() |
from base import Task
|
||
|
from common import phases
|
||
|
from common.exceptions import TaskError
|
||
|
from common.tools import log_command
|
||
|
import os.path
|
||
|
import logging
|
||
|
log = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
class GenerateLocale(Task):
|
||
|
description = 'Generating the selected locale'
|
||
|
phase = phases.system_modification
|
||
|
|
||
|
def run(self, info):
|
||
|
from common.tools import sed_i
|
||
|
locale_gen = os.path.join(info.root, 'etc/locale.gen')
|
||
|
locale_str = '{locale}.{charmap} {charmap}'.format(locale=info.manifest.system['locale'],
|
||
|
charmap=info.manifest.system['charmap'])
|
||
|
search = '# ' + locale_str
|
||
|
sed_i(locale_gen, search, locale_str)
|
||
|
if log_command(['chroot', info.root, 'dpkg-reconfigure', '--priority=critical', 'locales'], log) != 0:
|
||
|
raise TaskError('Failed to regenerate locales')
|
||
|
|
||
|
|
||
|
class SetTimezone(Task):
|
||
|
description = 'Setting the selected timezone'
|
||
|
phase = phases.system_modification
|
||
|
|
||
|
def run(self, info):
|
||
|
from shutil import copy
|
||
|
tz_path = os.path.join(info.root, 'etc/timezone')
|
||
|
timezone = info.manifest.system['timezone']
|
||
|
with open(tz_path, 'w') as tz_file:
|
||
|
tz_file.write(timezone)
|
||
|
zoneinfo_path = os.path.join(info.root, '/usr/share/zoneinfo', timezone)
|
||
|
localtime_path = os.path.join(info.root, 'etc/localtime')
|
||
|
copy(zoneinfo_path, localtime_path)
|