summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-04-11 20:33:45 +0000
committerChris Lumens <clumens@redhat.com>2006-04-11 20:33:45 +0000
commitc2b8b0d52929d74d16ebad531041138893aef9ec (patch)
tree3ec71247f385d9adffd8d6a08bcec4f1629be5a8
parent6626128c5d044390579f515bd0688255ae5dfa23 (diff)
downloadanaconda-c2b8b0d52929d74d16ebad531041138893aef9ec.tar.gz
anaconda-c2b8b0d52929d74d16ebad531041138893aef9ec.tar.xz
anaconda-c2b8b0d52929d74d16ebad531041138893aef9ec.zip
We probably don't want to log the root password.
-rw-r--r--instdata.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/instdata.py b/instdata.py
index 59b79ac58..2d159d85a 100644
--- a/instdata.py
+++ b/instdata.py
@@ -168,11 +168,9 @@ class InstallData:
rootUser = self.luAdmin.lookupUserByName("root")
if self.rootPassword["isCrypted"]:
- log.warning("password is crypted, setting to %s" % self.rootPassword["password"])
self.luAdmin.setpassUser(rootUser, self.rootPassword["password"], True)
self.luAdmin.modifyUser(rootUser)
else:
- log.warning("password is not crypted, setting to %s" % self.rootPassword["password"])
self.luAdmin.setpassUser(rootUser, cryptPassword(self.rootPassword["password"], useMD5), True)
self.luAdmin.modifyUser(rootUser)