summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-10-06 00:22:50 +0000
committerChris Lumens <clumens@redhat.com>2005-10-06 00:22:50 +0000
commit904a53d9990d692705486521c951e95d4ed919f1 (patch)
tree8ebec8b49fd5b4018b4a849e43599dffa77782dd /constants.py
parent8806a0a86a6c7e458cc073d65730db0fbf223df2 (diff)
downloadanaconda-904a53d9990d692705486521c951e95d4ed919f1.tar.gz
anaconda-904a53d9990d692705486521c951e95d4ed919f1.tar.xz
anaconda-904a53d9990d692705486521c951e95d4ed919f1.zip
Move generic kickstart file processing code into its own package and make
sure to include it properly. Also fixed a variety of typos related to LVM and RAID on kickstart.
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/constants.py b/constants.py
index dd5898fb6..d4c1f4673 100644
--- a/constants.py
+++ b/constants.py
@@ -44,11 +44,6 @@ 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
@@ -58,10 +53,8 @@ CHECK_DEPS = 0
IGNORE_DEPS = 1
RESOLVE_DEPS = 2
-# firstboot settings
-FIRSTBOOT_DEFAULT = 0
-FIRSTBOOT_SKIP = 1
-FIRSTBOOT_RECONFIG = 2
+# pull in kickstart constants as well
+from pykickstart.constants import *
# common string needs to be easy to change
import product