diff options
author | Matt Wilson <msw@redhat.com> | 1999-10-08 15:25:16 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-10-08 15:25:16 +0000 |
commit | 2ce4cb7787273e220dba719e49941846d6b417ff (patch) | |
tree | 1409148692324c603f0b87ad6f56aeb30a0c5b0f /installclass.py | |
parent | e65ef0d52ad7416256a0d846fd500a2fe92365a6 (diff) | |
download | anaconda-2ce4cb7787273e220dba719e49941846d6b417ff.tar.gz anaconda-2ce4cb7787273e220dba719e49941846d6b417ff.tar.xz anaconda-2ce4cb7787273e220dba719e49941846d6b417ff.zip |
1) added /etc/sysconfig/desktop writing
2) open /dev/tty5 earlier - may be this will make sparc installs less ugly
3) french
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/installclass.py b/installclass.py index 1dcebae56..9510ce00d 100644 --- a/installclass.py +++ b/installclass.py @@ -212,6 +212,7 @@ class InstallClass: self.postInChroot = 0 self.fstab = [] self.earlySwapOn = 0 + self.desktop = "" # we need to be able to differentiate between this and custom class DefaultInstall(InstallClass): @@ -251,6 +252,7 @@ class GNOMEWorkstation(Workstation): def __init__(self): Workstation.__init__(self) + self.desktop = "GNOME" self.setGroups(["GNOME Workstation"]) self.addToSkipList("package-selection") @@ -258,6 +260,7 @@ class KDEWorkstation(Workstation): def __init__(self): Workstation.__init__(self) + self.desktop = "KDE" self.setGroups(["KDE Workstation"]) class Server(InstallClass): |