Use default standard users/groups from LSB. Distributors may want to customize StandardUsers/StandardGroups.

git-svn-id: svn+ssh://rpmlint.zarb.org/home/projects/rpmlint/svn/trunk@1212 9bc8b190-ac0f-0410-8968-dc7d1f502856
This commit is contained in:
Ville Skyttä 2006-06-28 11:38:48 +00:00
parent 16946571b1
commit 467d6d3130
1 changed files with 7 additions and 7 deletions

View File

@ -158,13 +158,13 @@ DEFAULT_GAMES_GROUPS='Games'
DEFAULT_DANGLING_EXCEPTIONS = (['consolehelper$', 'usermode-consoleonly'],
)
DEFAULT_STANDARD_GROUPS = ('root', 'bin', 'daemon', 'sys', 'adm', 'tty',
'disk', 'lp', 'mem', 'kmem', 'wheel', 'mail',
'news', 'uucp', 'man', 'games', 'cdrom', 'users',
'cdwriter', 'audio',)
DEFAULT_STANDARD_USERS = ('root', 'bin', 'daemon', 'adm', 'lp', 'sync',
'shutdown', 'halt', 'mail', 'news', 'uucp',
'operator', 'games',)
# Standard users and groups from LSB 3.1: 21.2 User & Group Names
DEFAULT_STANDARD_USERS = ('root', 'bin', 'daemon', 'adm', 'lp', 'sync',
'shutdown', 'halt', 'mail', 'news', 'uucp',
'operator', 'man', 'nobody',)
DEFAULT_STANDARD_GROUPS = ('root', 'bin', 'daemon', 'adm', 'lp', 'sync',
'shutdown', 'halt', 'mail', 'news', 'uucp',
'man', 'nobody',)
tmp_regex=re.compile('^/tmp/|^(/var|/usr)/tmp/')
mnt_regex=re.compile('^/mnt/')