summaryrefslogtreecommitdiffstats
path: root/pyanaconda/constants.py
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2012-11-08 15:50:21 +0100
committerMartin Sivak <msivak@redhat.com>2012-12-17 14:37:31 +0100
commite9b998cdae5c7ec22f18ecde3dd6447fe015f2c3 (patch)
tree8cca9d387b59c8bea81262a2541b6e3c59f7d606 /pyanaconda/constants.py
parentaa363d5e512d7ecd44058fa3d409587da3aa4371 (diff)
downloadanaconda-e9b998cdae5c7ec22f18ecde3dd6447fe015f2c3.tar.gz
anaconda-e9b998cdae5c7ec22f18ecde3dd6447fe015f2c3.tar.xz
anaconda-e9b998cdae5c7ec22f18ecde3dd6447fe015f2c3.zip
Add support for KS %addon section and the API+code to use it
Diffstat (limited to 'pyanaconda/constants.py')
-rw-r--r--pyanaconda/constants.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pyanaconda/constants.py b/pyanaconda/constants.py
index 7ff50203f..ab92a0a39 100644
--- a/pyanaconda/constants.py
+++ b/pyanaconda/constants.py
@@ -38,6 +38,9 @@ MAX_PART_SIZE = 1024*1024*1024
# install key related constants
SKIP_KEY = -50
+# where to look for 3rd party addons
+ADDON_PATHS = ["/usr/share/anaconda/addons"]
+
# pull in kickstart constants as well
from pykickstart.constants import *
@@ -96,4 +99,4 @@ USEVNC = _("Start VNC")
USETEXT = _("Use text mode")
# Runlevel files
-RUNLEVELS = {3: 'multi-user.target', 5: 'graphical.target'} \ No newline at end of file
+RUNLEVELS = {3: 'multi-user.target', 5: 'graphical.target'}