diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-29 18:51:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-29 18:51:54 +0000 |
commit | 20c05bd428b0f6e1229003e8dbf7afd7a79d4aa0 (patch) | |
tree | 926e167a613e7761724f669f2aed3244df67683f /installclass.py | |
parent | 664738eea1787a4bc740173810809f2f7e3c01cc (diff) | |
download | anaconda-20c05bd428b0f6e1229003e8dbf7afd7a79d4aa0.tar.gz anaconda-20c05bd428b0f6e1229003e8dbf7afd7a79d4aa0.tar.xz anaconda-20c05bd428b0f6e1229003e8dbf7afd7a79d4aa0.zip |
wire up the default desktop choice
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/installclass.py b/installclass.py index 00fd51cab..292c139da 100644 --- a/installclass.py +++ b/installclass.py @@ -206,6 +206,12 @@ class BaseInstallClass: def setKeyboard(self, kb): self.keyboard = kb + def setDesktop(self, desktop): + self.desktop = desktop + + def getDesktop(self): + return self.desktop + def __init__(self): self.skipSteps = {} self.hostname = None |