diff options
author | Chris Lumens <clumens@redhat.com> | 2009-12-21 11:53:09 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2010-02-04 15:07:20 -0500 |
commit | 7959758242dfbed72be1376daeecb2132a1b5f23 (patch) | |
tree | 31b9bf4151ebb4f7e49ed66bc18c4bf87de5e018 /packages.py | |
parent | e5998dbf0c6627668d09851401a681025743f4ca (diff) | |
download | anaconda-7959758242dfbed72be1376daeecb2132a1b5f23.tar.gz anaconda-7959758242dfbed72be1376daeecb2132a1b5f23.tar.xz anaconda-7959758242dfbed72be1376daeecb2132a1b5f23.zip |
Move desktop to the Anaconda object.
This is also the last thing in InstallData.write, so it can go away too.
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.py b/packages.py index 6f352eace..eda06975b 100644 --- a/packages.py +++ b/packages.py @@ -312,7 +312,7 @@ def rpmSetupGraphicalSystem(anaconda): if ts.dbMatch('provides', 'service(graphical-login)').count() and \ anaconda.displayMode == 'g' and not flags.usevnc: - anaconda.id.desktop.setDefaultRunLevel(5) + anaconda.desktop.setDefaultRunLevel(5) #Recreate initrd for use when driver disks add modules def recreateInitrd (kernelTag, instRoot): |