aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2002-02-05 19:52:03 +0000
committerFrederic Lepied <flepied@mandriva.com>2002-02-05 19:52:03 +0000
commit5033bf4cacffd7ecddf3600d93142e151b01b148 (patch)
treebfb0a30a86fdc5666cd36ac47dd9b91dd690b905
parent85ad9fb9ad37313694f8e900c3ad4cbb7662ef31 (diff)
downloadmsec-5033bf4cacffd7ecddf3600d93142e151b01b148.tar
msec-5033bf4cacffd7ecddf3600d93142e151b01b148.tar.gz
msec-5033bf4cacffd7ecddf3600d93142e151b01b148.tar.bz2
msec-5033bf4cacffd7ecddf3600d93142e151b01b148.tar.xz
msec-5033bf4cacffd7ecddf3600d93142e151b01b148.zip
handle allowed delay in password changing.
-rw-r--r--share/libmsec.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/share/libmsec.py b/share/libmsec.py
index 1c29e7e..e35214d 100644
--- a/share/libmsec.py
+++ b/share/libmsec.py
@@ -525,11 +525,12 @@ def enable_at_crontab(arg):
atallow.replace_line_matching('root', 'root', 1)
maximum_regex = re.compile('^Maximum:\s*([0-9]+)', re.MULTILINE)
+inactive_regex = re.compile('^Inactive:\s*(-?[0-9]+)', re.MULTILINE)
# TODO FL Sat Dec 29 20:18:20 2001
# replace chage calls and /etc/shadow parsing by a python API to the shadow functions.
-def password_aging(max):
- ''' Set password aging to \\fImax\\fP days.'''
+def password_aging(max, inactive=-1):
+ ''' Set password aging to \\fImax\\fP days and delay to change to \\fIinactive\\fP.'''
uid_min = 500
_interactive and log(_('Setting password maximum aging for new user to %d') % max)
logindefs = ConfigFile.get_config_file(LOGINDEFS)
@@ -540,7 +541,7 @@ def password_aging(max):
uid_min = int(uid_min)
shadow = ConfigFile.get_config_file(SHADOW)
if shadow.exists():
- _interactive and log(_('Setting password maximum aging for root and users with id greater than %d to %d') % (uid_min, max))
+ _interactive and log(_('Setting password maximum aging for root and users with id greater than %d to %d and delay to %d days') % (uid_min, max, inactive))
for line in shadow.get_lines():
field = string.split(line, ':')
if len(field) < 2:
@@ -554,10 +555,12 @@ def password_aging(max):
_interactive and log(_('got current maximum password aging for user %s with command \'%s\'') % (entry[0], cmd))
if ret[0] == 0:
res = maximum_regex.search(ret[1])
- if res:
+ res2 = inactive_regex.search(ret[1])
+ if res and res2:
current_max = int(res.group(1))
- if max != current_max:
- cmd = '/usr/bin/chage -M %d %s' % (max, entry[0])
+ current_inactive = int(res2.group(1))
+ if max != current_max or current_inactive != inactive:
+ cmd = '/usr/bin/chage -M %d -I %d %s' % (max, inactive, entry[0])
ret = commands.getstatusoutput(cmd)
log(_('changed maximum password aging for user %s with command %s') % (entry[0], cmd))
if ret[0] != 0: