You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-2.2-lib/pym/cl_vars.py

184 lines
6.5 KiB

#-*- coding: utf-8 -*-
# Copyright 2008-2010 Mir Calculate Ltd. http://www.calculate-linux.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#Допустимые ключи значений
# mode - режим переменной r-не переназначается из командной строки,
# w-переназначается из командной строки
# type - тип переменной состоит из двух элементов(что это и для чего
# это)
# value - значение переменной
# official - флаг того, что данная переменная служебная и не отображается
# при печати списка значений переменных
class Data:
# имя компьютера
os_net_hostname = {'mode':"w"}
# разрешенные сети
os_net_allow ={}
# ip на всех интерфейсах
os_net_ip ={}
# Существующие сетевые интерфейсы
os_net_interfaces={'official':True}
#короткое название системы (CLD)
os_linux_shortname={}
#домен
os_net_domain = {'mode':"w"}
14 years ago
# Алиасы и пути к ini файлам
cl_env_data = {'official':True,
'value':[('default', '/etc/calculate/calculate2.env'),
('local', '/var/calculate/calculate2.env'),
('remote', '/var/calculate/remote/calculate2.env')]}
14 years ago
# Алиасы путей к ini файлам (из cl_env_data)
cl_env_location = {'official':True}
# Пути к ini файлам (из cl_env_data)
cl_env_path = {}
# Путь к информационному файлу сервера
cl_env_server_path = {'official':True,
'value':'/var/calculate/remote/server.env'}
# paths to template files
14 years ago
cl_template_path = {'value':["/usr/share/calculate-2.2/templates",
"/var/calculate/templates",
"/var/calculate/remote/templates"]}
# paths to clt-template files
cl_template_clt_path = {'value':""}
# locale (at example: ru_RU.UTF-8)
os_locale_locale = {}
# full language (at example: ru_RU)
os_locale_lang = {}
# short language (at example ru)
os_locale_language = {}
# keyboard layout for X server
os_locale_xkb = {}
# keyboard layout name for X server
os_locale_xkbname = {}
# keymap of locale (used for /etc/conf.d/keymaps)
os_locale_keymap = {}
# dumpkeys_charset for keymap
os_locale_dumpkeys = {}
# consolefont
os_locale_consolefont = {}
# timezone for clock
os_clock_timezone = {}
# type of clock (UTC or local)
os_clock_type = {}
# архитектура компьютера (i686,x86_64)
os_arch_machine = {}
#проход при наложении профилей 1,2,3,4,5 и.т д
cl_pass_step = {}
# обрабатываемый файл профиля
cl_pass_file = {'mode':"w"}
# корневой раздел файловой системы
os_root_dev = {}
# тип носителя (ram, hdd, usb-hdd, livecd)
os_root_type = {}
# полное название системы
os_linux_name = {}
# постфикс к названию системы
os_linux_subname = {}
# system (desktop or server)
os_linux_system = {}
# motherboard model
hr_board_model = {}
# motherboard vendor
hr_board_vendor = {}
# processors count
hr_cpu_num = {}
# название виртуальной машины (virtualbox, vmware, qemu)
hr_virtual = {}
# версия системы
os_linux_ver = {}
14 years ago
# Логин пользователя
ur_login = {}
14 years ago
# Название группы пользователя
ur_group = {'official':True}
14 years ago
#Полное имя пользователя
ur_fullname = {'official':True}
# Домашняя директория пользователя
ur_home_path = {'official':True}
# Путь к директории относительно которой происходит наложение профилей на
#файлы системы (песочница)
14 years ago
cl_root_path = {'mode':"w", 'value':"/"}
# Путь к директории другой системы
cl_chroot_path = {'mode':"w", 'value':"/"}
14 years ago
# Действие программы
# user - генерация профиля пользователя
14 years ago
# install / uninstall - установка и удаление программы
cl_pass_action = {}
# Состояние программы
# Указываем дополнительно к cl_pass_action в случае необходимости
cl_pass_state = {}
# Jabber ID пользователя
ur_jid = {'official':True}
# Почтовый адрес пользователя
ur_mail = {'official':True}
14 years ago
# Переменные пакета calculate-client для calculate-desktop
# ip или имя домена (под управлением calculate-server)
14 years ago
cl_remote_host = {'mode':'r', 'official':True}
# Переменная работающая совместно с функцией шаблонов belong(имя_пакета)
# Если переменная будет определена то будут использованы шаблоны
# у которых параметр имя пакета функции шаблонов belong(имя_пакета)
# совпадает с значением этой переменной
# (имя_пакета == значение cl_belong_pkg)
cl_belong_pkg = {'mode':'r', 'official':True}
# Название производителя видеокарты
hr_video = {'official':True}
# Video driver used by xorg
hr_x11_video_drv = {'official':True}