summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-22 23:34:13 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-22 23:34:13 +0000
commit2a448cb269c7eef5145853d8c5c0ac78d7eca57a (patch)
tree0ef1f532ecf9f8744a8964711c225cbc0f143579 /constants.py
parenta8303266c46448dbe964683a4359dfbfa248b5cf (diff)
downloadanaconda-2a448cb269c7eef5145853d8c5c0ac78d7eca57a.tar.gz
anaconda-2a448cb269c7eef5145853d8c5c0ac78d7eca57a.tar.xz
anaconda-2a448cb269c7eef5145853d8c5c0ac78d7eca57a.zip
handle %packages --ignoredeps and %packages --resolvedeps so that people
can control the handling of any spurious dependencies when using kickstart. if neither is specified, keep the previous behavior (#57297)
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/constants.py b/constants.py
index 9746ebb84..b65406435 100644
--- a/constants.py
+++ b/constants.py
@@ -16,3 +16,8 @@
DISPATCH_BACK = -1
DISPATCH_FORWARD = 1
DISPATCH_NOOP = None
+
+# these are used for kickstart
+CHECK_DEPS = 0
+IGNORE_DEPS = 1
+RESOLVE_DEPS = 2