summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)