Lines Matching refs:expire
471 local function exec_change_password(user, password, type, expire)
488 if expire then
505 local function change_password_from_line(line, expire)
517 exec_change_password(user, password, type, expire)
526 local expire = false
527 if obj.expire ~= nil then
528 if type(obj.expire) == "boolean" then
529 expire = obj.expire
531 warnmsg("Invalid type for chpasswd.expire, expecting a boolean, got a ".. type(obj.expire))
552 exec_change_password(u.name, u.password, u.type, expire)
561 change_password_from_line(line, expire)
565 change_password_from_line(u, expire)