| Server IP : 3.138.164.131 / Your IP : 216.73.216.136 Web Server : Apache System : Linux ns1.techtime.me 4.18.0-147.8.1.el8.lve.1.x86_64 #1 SMP Mon Jun 29 09:55:57 EDT 2020 x86_64 User : injazaat ( 1471) PHP Version : 8.1.20 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/python3.6/site-packages/cloudinit/config/ |
Upload File : |
# Copyright (C) 2011 Canonical Ltd.
# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
#
# Author: Scott Moser <scott.moser@canonical.com>
# Author: Juerg Haefliger <juerg.haefliger@hp.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
"""Locale: set system locale"""
from textwrap import dedent
from cloudinit import util
from cloudinit.config.schema import (
MetaSchema,
get_meta_doc,
validate_cloudconfig_schema,
)
from cloudinit.settings import PER_INSTANCE
frequency = PER_INSTANCE
distros = ["all"]
meta: MetaSchema = {
"id": "cc_locale",
"name": "Locale",
"title": "Set system locale",
"description": dedent(
"""\
Configure the system locale and apply it system wide. By default use
the locale specified by the datasource."""
),
"distros": distros,
"examples": [
dedent(
"""\
# Set the locale to ar_AE
locale: ar_AE
"""
),
dedent(
"""\
# Set the locale to fr_CA in /etc/alternate_path/locale
locale: fr_CA
locale_configfile: /etc/alternate_path/locale
"""
),
],
"frequency": frequency,
}
schema = {
"type": "object",
"properties": {
"locale": {
"type": "string",
"description": (
"The locale to set as the system's locale (e.g. ar_PS)"
),
},
"locale_configfile": {
"type": "string",
"description": (
"The file in which to write the locale configuration (defaults"
" to the distro's default location)"
),
},
},
}
__doc__ = get_meta_doc(meta, schema) # Supplement python help()
def handle(name, cfg, cloud, log, args):
if len(args) != 0:
locale = args[0]
else:
locale = util.get_cfg_option_str(cfg, "locale", cloud.get_locale())
if util.is_false(locale):
log.debug(
"Skipping module named %s, disabled by config: %s", name, locale
)
return
validate_cloudconfig_schema(cfg, schema)
log.debug("Setting locale to %s", locale)
locale_cfgfile = util.get_cfg_option_str(cfg, "locale_configfile")
cloud.distro.apply_locale(locale, locale_cfgfile)
# vi: ts=4 expandtab