diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | anaconda.spec | 7 | ||||
-rw-r--r-- | instdata.py | 2 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2007-06-15 Jeremy Katz <katzj@redhat.com> + + * anaconda.spec: Bump version + + * instdata.py (InstallData.writeKS): Fix syntax error (jkeating) + 2007-06-15 Chris Lumens <clumens@redhat.com> * exception.py (dumpException): Don't capture passwords from the diff --git a/anaconda.spec b/anaconda.spec index 643d4c587..f0d04d5d7 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -1,7 +1,7 @@ %define livearches %{ix86} x86_64 Name: anaconda -Version: 11.3.0.1 +Version: 11.3.0.2 Release: 1 License: GPL Summary: Graphical system installer @@ -142,6 +142,11 @@ rm -rf $RPM_BUILD_ROOT /sbin/chkconfig --del reconfig >/dev/null 2>&1 || : %changelog +* Fri Jun 15 2007 Jeremy Katz <katzj@redhat.com> - 11.3.0.2-1 +- fix syntax error (jkeating) +- don't capture passwords from kickstart in exception dumps (clumens) +- don't write out unicode text to install.log (clumens, #243477) + * Fri Jun 15 2007 Chris Lumens <clumens@redhat.com> - 11.3.0.1-1 - Fix call to mksquashfs in mk-images so we get stage2.img again. - Other minor image creation fixes. diff --git a/instdata.py b/instdata.py index c07a87aff..f0ab0a29c 100644 --- a/instdata.py +++ b/instdata.py @@ -245,7 +245,7 @@ class InstallData: if self.rootPassword["isCrypted"]: args = " --iscrypted %s" % self.rootPassword["password"] else: - args = " --iscrypted %s" % users.cryptPassword(self.rootPassword["password"], useMD5)) + args = " --iscrypted %s" % users.cryptPassword(self.rootPassword["password"], useMD5) if self.rootPassword["lock"]: args += " --lock" |