The following was filed automatically by anaconda: anaconda 13.26 exception report Traceback (most recent call first): File "/tmp/updates/users.py", line 302, in writeKS args = " --iscrypted %s" % self.cryptPassword(self.rootPassword["password"], algo=self.getPassAlgo()) File "/tmp/updates/anaconda", line 738, in writeKS self.users.writeKS(f) File "/usr/lib/anaconda/packages.py", line 66, in writeKSConfiguration anaconda.writeKS(fn) File "/usr/lib/anaconda/dispatch.py", line 205, in moveStep rc = stepFunc(self.anaconda) File "/usr/lib/anaconda/dispatch.py", line 126, in gotoNext self.moveStep() File "/usr/lib/anaconda/gui.py", line 1311, in nextClicked self.anaconda.dispatch.gotoNext() File "/usr/lib/anaconda/iw/progress_gui.py", line 79, in renderCallback self.intf.icw.nextClicked() File "/usr/lib/anaconda/gui.py", line 1332, in handleRenderCallback self.currentWindow.renderCallback() AttributeError: Users instance has no attribute 'cryptPassword'
Created attachment 394371 [details] Attached traceback automatically from anaconda.
Discovered while testing a fix for bug#565599
The following patch appears to resolve the reported issue ... --- users.py 2010-02-15 12:26:13.458766396 -0500 +++ /tmp/updates/users.py 2010-02-15 13:38:48.954516160 -0500 @@ -299,7 +299,7 @@ if self.rootPassword["isCrypted"]: args = " --iscrypted %s" % self.rootPassword["password"] else: - args = " --iscrypted %s" % self.cryptPassword(self.rootPassword["password"], algo=self.getPassAlgo()) + args = " --iscrypted %s" % cryptPassword(self.rootPassword["password"], algo=self.getPassAlgo()) if self.rootPassword["lock"]: args += " --lock" Updates.img available for testing at http://jlaska.fedorapeople.org/updates-565611.img
Fixed in anaconda-13.29