forked from rpm-software-management/rpmlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PamCheck.py
37 lines (27 loc) · 1.05 KB
/
PamCheck.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
#############################################################################
# Project : Mandriva Linux
# Module : rpmlint
# File : PamCheck.py
# Author : Michael Scherer
# Created On : 31/01/2006
# Purpose : Apply pam policy
#############################################################################
import re
import AbstractCheck
from Filter import addDetails, printError
pam_stack_re = re.compile(r'^\s*[^#].*pam_stack\.so\s*service')
class PamCheck(AbstractCheck.AbstractFilesCheck):
def __init__(self):
AbstractCheck.AbstractFilesCheck.__init__(self, "PamCheck",
r"/etc/pam\.d/.*")
def check_file(self, pkg, filename):
lines = pkg.grep(pam_stack_re, filename)
if lines:
printError(pkg, 'use-old-pam-stack', filename,
'(line %s)' % ", ".join(lines))
check = PamCheck()
addDetails(
'use-old-pam-stack',
'''Update pam file to use include instead of pam_stack.''',
)