summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-07-22 13:08:29 -0400
committerChris Lumens <clumens@redhat.com>2008-07-22 15:59:55 -0400
commit5a910a7623d5beacc43ca7ec1da9bf0fa08ef643 (patch)
tree08c2f55a0c7d227849a05cdc6dcb7a70adfbae98 /installclass.py
parenteb7845d41f78d54939006c67edb663992c35c5f6 (diff)
downloadanaconda-5a910a7623d5beacc43ca7ec1da9bf0fa08ef643.tar.gz
anaconda-5a910a7623d5beacc43ca7ec1da9bf0fa08ef643.tar.xz
anaconda-5a910a7623d5beacc43ca7ec1da9bf0fa08ef643.zip
Support an abstract bug filing layer.
Different products and distributions could support completely different bug filing system (or none at all, for that matter) so support an abstraction that allows us to use multiple kinds of bug files. We still need to commit that abstraction somewhere and also make sure we allow full customization through the product.img.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/installclass.py b/installclass.py
index 0127e7130..029900535 100644
--- a/installclass.py
+++ b/installclass.py
@@ -32,6 +32,7 @@ from instdata import InstallData
from autopart import getAutopartitionBoot, autoCreatePartitionRequests, autoCreateLVMPartitionRequests
from constants import *
+from filer import *
import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)
@@ -56,6 +57,8 @@ class BaseInstallClass(object):
# default to showing the upgrade option
showUpgrade = True
+ bugFiler = AbstractFiler()
+
# list of of (txt, grplist) tuples for task selection screen
tasks = []