From 904a53d9990d692705486521c951e95d4ed919f1 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 6 Oct 2005 00:22:50 +0000 Subject: 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. --- constants.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'constants.py') 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 -- cgit