Take SHADOWFILE from existing user object rather than class

This commit is contained in:
Nigel Metheringham 2012-11-04 09:54:50 +00:00
parent 75a2b2ba2d
commit 1ab1c8d374

View file

@ -407,8 +407,8 @@ class User(object):
return passwd
else:
# Read shadow file for user's encrypted password string
if os.path.exists(User.SHADOWFILE) and os.access(User.SHADOWFILE, os.R_OK):
for line in open(User.SHADOWFILE).readlines():
if os.path.exists(self.SHADOWFILE) and os.access(self.SHADOWFILE, os.R_OK):
for line in open(self.SHADOWFILE).readlines():
if line.startswith('%s:' % self.name):
passwd = line.split(':')[1]
return passwd