summaryrefslogtreecommitdiffstats
path: root/constants.py
blob: d119a32d7f8f425ae8ae29f478a936a3c04379e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#
# constants.py: anaconda constants
#
# Erik Troan <ewt@redhat.com>
#
# Copyright 2001 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#

from rhpl.translate import _, N_

BETANAG = 1

DEBUG = 0

SELINUX_DEFAULT = 1

cmdline = open("/proc/cmdline", "r").read()
if cmdline.find("debug") != -1:
    DEBUG = 1

DISPATCH_BACK = -1
DISPATCH_FORWARD = 1
DISPATCH_NOOP = None

# different types of partition requests
# REQUEST_PREEXIST is a placeholder for a pre-existing partition on the system
# REQUEST_NEW is a request for a partition which will be automatically
#              created based on various constraints on size, drive, etc
# REQUEST_RAID is a request for a raid device
# REQUEST_PROTECTED is a preexisting partition which can't change
#              (harddrive install, harddrive with the isos on it)
#
REQUEST_PREEXIST = 1
REQUEST_NEW = 2
REQUEST_RAID = 4
REQUEST_PROTECTED = 8
REQUEST_VG = 16 # volume group
REQUEST_LV = 32 # logical volume

# when clearing partitions, what do we clear
CLEARPART_TYPE_LINUX = 1
CLEARPART_TYPE_ALL   = 2
CLEARPART_TYPE_NONE  = 3

# XXX this is made up and used by the size spinner; should just be set with
# a callback
MAX_PART_SIZE = 1024*1024*1024

# these are used for kickstart
CHECK_DEPS = 0
IGNORE_DEPS = 1
RESOLVE_DEPS = 2

# firstboot settings
FIRSTBOOT_DEFAULT = 0
FIRSTBOOT_SKIP = 1
FIRSTBOOT_RECONFIG = 2

# common string needs to be easy to change
import product
productName = product.productName
productVersion = product.productVersion
productPath = product.productPath
bugzillaUrl = product.bugUrl

exceptionText = _("An unhandled exception has occurred.  This "
                  "is most likely a bug.  Please copy the "
                  "full text of this exception or save the crash "
                  "dump to a floppy then file a detailed bug "
                  "report against anaconda at "
                  "%s") %(bugzillaUrl,)

exceptionTextNoFloppy = _("An unhandled exception has occurred.  This "
                          "is most likely a bug.  Please copy the "
                          "full text of this exception and file a detailed "
                          "bug report against anaconda at "
                          "%s") %(bugzillaUrl,)