diff options
author | Mike Fulbright <msf@redhat.com> | 1999-11-17 18:06:17 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 1999-11-17 18:06:17 +0000 |
commit | e9aa9738134d436d5d105735214a604ac0fd2e02 (patch) | |
tree | 630c97cde7449f973176b54a2e8d54882dae8b62 /iw | |
parent | a56b5b1405da565cb4ab2134ba187e6006255b8d (diff) | |
download | anaconda-e9aa9738134d436d5d105735214a604ac0fd2e02.tar.gz anaconda-e9aa9738134d436d5d105735214a604ac0fd2e02.tar.xz anaconda-e9aa9738134d436d5d105735214a604ac0fd2e02.zip |
Renamed all references to 'unconfig' to 'reconfig'.
Added authentification dialog to reconfig mode.
Dr Mike
Diffstat (limited to 'iw')
-rw-r--r-- | iw/congrats.py | 2 | ||||
-rw-r--r-- | iw/xconfig.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/iw/congrats.py b/iw/congrats.py index f16ecf59b..85689e019 100644 --- a/iw/congrats.py +++ b/iw/congrats.py @@ -28,7 +28,7 @@ class CongratulationWindow (InstallWindow): a.set (0.5, 0.5, 1.0, 1.0) hbox.pack_start (a, FALSE) - if not self.ics.cw.todo.unconfigOnly: + if not self.ics.cw.todo.reconfigOnly: label = GtkLabel(_("Congratulations, installation is complete.\n\n" "Remove the boot media and " "press return to reboot. For information on fixes which are " diff --git a/iw/xconfig.py b/iw/xconfig.py index d14e8da37..b5af89424 100644 --- a/iw/xconfig.py +++ b/iw/xconfig.py @@ -168,10 +168,10 @@ class XConfigWindow (InstallWindow): def getScreen (self): # - # if in unconfigOnly mode we query existing rpm db + # if in reconfigOnly mode we query existing rpm db # if X not installed, just skip this step # - if self.todo.unconfigOnly: + if self.todo.reconfigOnly: import rpm db = rpm.opendb() rc = db.findbyname ("XFree86") |