2011-01-18 09:24:57 +00:00
#
# constants.py: anaconda constants
#
# Copyright (C) 2001 Red Hat, Inc. All rights reserved.
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#
2015-05-30 11:20:59 +00:00
# Used for digits, ascii_letters, punctuation constants
import string # pylint: disable=deprecated-module
2014-04-07 12:38:09 +00:00
from pyanaconda . i18n import N_
2011-01-18 09:24:57 +00:00
2015-03-23 11:36:12 +00:00
# Use -1 to indicate that the selinux configuration is unset
SELINUX_DEFAULT = - 1
2011-01-18 09:24:57 +00:00
2014-04-07 12:38:09 +00:00
# where to look for 3rd party addons
ADDON_PATHS = [ " /usr/share/anaconda/addons " ]
2011-01-18 09:24:57 +00:00
2018-01-15 00:20:18 +00:00
from pykickstart . constants import AUTOPART_TYPE_LVM_THINP
2011-01-18 09:24:57 +00:00
# common string needs to be easy to change
2014-04-07 12:38:09 +00:00
from pyanaconda import product
2011-01-18 09:24:57 +00:00
productName = product . productName
productVersion = product . productVersion
productArch = product . productArch
bugzillaUrl = product . bugUrl
2013-01-23 17:28:19 +00:00
isFinal = product . isFinal
2011-01-18 09:24:57 +00:00
2013-01-23 17:28:19 +00:00
# for use in device names, eg: "fedora", "rhel"
2017-01-09 02:09:07 +00:00
shortProductName = productName . lower ( ) # pylint: disable=no-member
if productName . count ( " " ) : # pylint: disable=no-member
2013-01-23 17:28:19 +00:00
shortProductName = ' ' . join ( s [ 0 ] for s in shortProductName . split ( ) )
2011-01-18 09:24:57 +00:00
# DriverDisc Paths
2013-01-23 17:28:19 +00:00
DD_ALL = " /tmp/DD "
DD_FIRMWARE = " /tmp/DD/lib/firmware "
2011-01-18 09:24:57 +00:00
DD_RPMS = " /tmp/DD-* "
2016-04-10 04:00:00 +00:00
TRANSLATIONS_UPDATE_DIR = " /tmp/updates/po "
2013-01-23 17:28:19 +00:00
ANACONDA_CLEANUP = " anaconda-cleanup "
2015-05-30 11:20:59 +00:00
MOUNT_DIR = " /run/install "
2013-01-23 17:28:19 +00:00
DRACUT_REPODIR = " /run/install/repo "
DRACUT_ISODIR = " /run/install/source "
ISO_DIR = MOUNT_DIR + " /isodir "
2014-04-07 12:38:09 +00:00
IMAGE_DIR = MOUNT_DIR + " /image "
2013-01-23 17:28:19 +00:00
INSTALL_TREE = MOUNT_DIR + " /source "
BASE_REPO_NAME = " anaconda "
2014-04-07 12:38:09 +00:00
# NOTE: this should be LANG_TERRITORY.CODESET, e.g. en_US.UTF-8
2013-01-23 17:28:19 +00:00
DEFAULT_LANG = " en_US.UTF-8 "
2015-05-30 11:20:59 +00:00
DEFAULT_VC_FONT = " eurlatgr "
2014-04-07 12:38:09 +00:00
DEFAULT_KEYBOARD = " us "
2013-01-23 17:28:19 +00:00
2014-04-07 12:38:09 +00:00
DRACUT_SHUTDOWN_EJECT = " /run/initramfs/usr/lib/dracut/hooks/shutdown/99anaconda-eject.sh "
2013-01-23 17:28:19 +00:00
# VNC questions
2014-04-07 12:38:09 +00:00
USEVNC = N_ ( " Start VNC " )
USETEXT = N_ ( " Use text mode " )
2013-01-23 17:28:19 +00:00
# Runlevel files
2017-01-09 02:09:07 +00:00
TEXT_ONLY_TARGET = ' multi-user.target '
GRAPHICAL_TARGET = ' graphical.target '
2014-04-07 12:38:09 +00:00
# Network
NETWORK_CONNECTION_TIMEOUT = 45 # in seconds
NETWORK_CONNECTED_CHECK_INTERVAL = 0.1 # in seconds
# DBus
DEFAULT_DBUS_TIMEOUT = - 1 # use default
# Thread names
THREAD_EXECUTE_STORAGE = " AnaExecuteStorageThread "
THREAD_STORAGE = " AnaStorageThread "
THREAD_STORAGE_WATCHER = " AnaStorageWatcher "
THREAD_CHECK_STORAGE = " AnaCheckStorageThread "
THREAD_CUSTOM_STORAGE_INIT = " AnaCustomStorageInit "
THREAD_WAIT_FOR_CONNECTING_NM = " AnaWaitForConnectingNMThread "
THREAD_PAYLOAD = " AnaPayloadThread "
2015-03-23 11:36:12 +00:00
THREAD_PAYLOAD_RESTART = " AnaPayloadRestartThread "
2014-04-07 12:38:09 +00:00
THREAD_INPUT_BASENAME = " AnaInputThread "
THREAD_SYNC_TIME_BASENAME = " AnaSyncTime "
THREAD_EXCEPTION_HANDLING_TEST = " AnaExceptionHandlingTest "
THREAD_LIVE_PROGRESS = " AnaLiveProgressThread "
THREAD_SOFTWARE_WATCHER = " AnaSoftwareWatcher "
THREAD_CHECK_SOFTWARE = " AnaCheckSoftwareThread "
THREAD_SOURCE_WATCHER = " AnaSourceWatcher "
THREAD_INSTALL = " AnaInstallThread "
THREAD_CONFIGURATION = " AnaConfigurationThread "
THREAD_FCOE = " AnaFCOEThread "
THREAD_ISCSI_DISCOVER = " AnaIscsiDiscoverThread "
THREAD_ISCSI_LOGIN = " AnaIscsiLoginThread "
THREAD_GEOLOCATION_REFRESH = " AnaGeolocationRefreshThread "
THREAD_DATE_TIME = " AnaDateTimeThread "
THREAD_TIME_INIT = " AnaTimeInitThread "
2015-03-23 11:36:12 +00:00
THREAD_DASDFMT = " AnaDasdfmtThread "
THREAD_KEYBOARD_INIT = " AnaKeyboardThread "
THREAD_ADD_LAYOUTS_INIT = " AnaAddLayoutsInitThread "
2017-01-09 02:09:07 +00:00
THREAD_NTP_SERVER_CHECK = " AnaNTPserver "
2014-04-07 12:38:09 +00:00
# Geolocation constants
# geolocation providers
# - values are used by the geoloc CLI/boot option
GEOLOC_PROVIDER_FEDORA_GEOIP = " provider_fedora_geoip "
GEOLOC_PROVIDER_HOSTIP = " provider_hostip "
GEOLOC_PROVIDER_GOOGLE_WIFI = " provider_google_wifi "
# geocoding provider
GEOLOC_GEOCODER_NOMINATIM = " geocoder_nominatim "
# default providers
GEOLOC_DEFAULT_PROVIDER = GEOLOC_PROVIDER_FEDORA_GEOIP
GEOLOC_DEFAULT_GEOCODER = GEOLOC_GEOCODER_NOMINATIM
# timeout (in seconds)
GEOLOC_TIMEOUT = 3
ANACONDA_ENVIRON = " anaconda "
FIRSTBOOT_ENVIRON = " firstboot "
# Tainted hardware
UNSUPPORTED_HW = 1 << 28
# Password validation
2015-05-30 11:20:59 +00:00
PASSWORD_MIN_LEN = 8
2014-04-07 12:38:09 +00:00
PASSWORD_EMPTY_ERROR = N_ ( " The password is empty. " )
PASSWORD_CONFIRM_ERROR_GUI = N_ ( " The passwords do not match. " )
PASSWORD_CONFIRM_ERROR_TUI = N_ ( " The passwords you entered were different. Please try again. " )
2015-05-30 11:20:59 +00:00
PASSWORD_WEAK = N_ ( " The password you have provided is weak. %s " )
2016-04-10 04:00:00 +00:00
PASSWORD_WEAK_WITH_ERROR = N_ ( " The password you have provided is weak: %s . " )
2014-04-07 12:38:09 +00:00
PASSWORD_WEAK_CONFIRM = N_ ( " You have provided a weak password. Press Done again to use anyway. " )
PASSWORD_WEAK_CONFIRM_WITH_ERROR = N_ ( " You have provided a weak password: %s . Press Done again to use anyway. " )
2015-03-23 11:36:12 +00:00
PASSWORD_ASCII = N_ ( " The password you have provided contains non-ASCII characters. You may not be able to switch between keyboard layouts to login. Press Done to continue. " )
2015-05-30 11:20:59 +00:00
PASSWORD_DONE_TWICE = N_ ( " You will have to press Done twice to confirm it. " )
2014-04-07 12:38:09 +00:00
PASSWORD_STRENGTH_DESC = [ N_ ( " Empty " ) , N_ ( " Weak " ) , N_ ( " Fair " ) , N_ ( " Good " ) , N_ ( " Strong " ) ]
2015-03-23 11:36:12 +00:00
2017-01-09 02:09:07 +00:00
PASSWORD_HIDE = N_ ( " Hide password. " )
PASSWORD_SHOW = N_ ( " Show password. " )
PASSWORD_HIDE_ICON = " anaconda-password-show-off "
PASSWORD_SHOW_ICON = " anaconda-password-show-on "
2015-03-23 11:36:12 +00:00
# the number of seconds we consider a noticeable freeze of the UI
NOTICEABLE_FREEZE = 0.1
# all ASCII characters
PW_ASCII_CHARS = string . digits + string . ascii_letters + string . punctuation + " "
# Recognizing a tarfile
TAR_SUFFIX = ( " .tar " , " .tbz " , " .tgz " , " .txz " , " .tar.bz2 " , " tar.gz " , " tar.xz " )
2016-04-10 04:00:00 +00:00
# screenshots
SCREENSHOTS_DIRECTORY = " /tmp/anaconda-screenshots "
SCREENSHOTS_TARGET_DIRECTORY = " /root/anaconda-screenshots "
2015-03-23 11:36:12 +00:00
# cmdline arguments that append instead of overwrite
2017-01-09 02:09:07 +00:00
CMDLINE_APPEND = [ " modprobe.blacklist " , " ifname " ]
2015-03-23 11:36:12 +00:00
2018-01-15 00:20:18 +00:00
DEFAULT_AUTOPART_TYPE = AUTOPART_TYPE_LVM_THINP
2015-03-23 11:36:12 +00:00
2015-05-30 11:20:59 +00:00
# Default to these units when reading user input when no units given
SIZE_UNITS_DEFAULT = " MiB "
# Constants for reporting status to IPMI. These are from the IPMI spec v2 rev1.1, page 512.
2016-04-10 04:00:00 +00:00
IPMI_STARTED = 0x7 # installation started
2015-05-30 11:20:59 +00:00
IPMI_FINISHED = 0x8 # installation finished successfully
2016-04-10 04:00:00 +00:00
IPMI_ABORTED = 0x9 # installation finished unsuccessfully, due to some non-exn error
IPMI_FAILED = 0xA # installation hit an exception
2015-05-30 11:20:59 +00:00
2015-03-23 11:36:12 +00:00
# for how long (in seconds) we try to wait for enough entropy for LUKS
# keep this a multiple of 60 (minutes)
2015-05-30 11:20:59 +00:00
MAX_ENTROPY_WAIT = 10 * 60
# X display number to use
X_DISPLAY_NUMBER = 1
2016-04-10 04:00:00 +00:00
# Payload status messages
PAYLOAD_STATUS_PROBING_STORAGE = N_ ( " Probing storage... " )
PAYLOAD_STATUS_PACKAGE_MD = N_ ( " Downloading package metadata... " )
PAYLOAD_STATUS_GROUP_MD = N_ ( " Downloading group metadata... " )
2017-01-09 02:09:07 +00:00
# Window title text
WINDOW_TITLE_TEXT = N_ ( " Anaconda Installer " )
# NTP server checking
NTP_SERVER_OK = 0
NTP_SERVER_NOK = 1
NTP_SERVER_QUERY = 2