From 9cfcc3a1417e8d7730312ecd4f3d16a01cffe5ef Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Fri, 29 Apr 2016 13:29:56 +0200 Subject: [PATCH] doc: improve documentation of AllowedGroups, AllowedUsers and IgnoredPaths Signed-off-by: Matej Habrnal --- doc/abrt-CCpp.conf.txt | 10 ++++++---- src/hooks/CCpp.conf | 14 +++++++++++--- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt index b05aefc..bcefc4d 100644 --- a/doc/abrt-CCpp.conf.txt +++ b/doc/abrt-CCpp.conf.txt @@ -42,18 +42,20 @@ SaveFullCore = 'yes' / 'no' ...:: Default is 'yes'. IgnoredPaths = /path/to/ignore/*, */another/ignored/path* ...:: - ABRT will ignore crashes in executables whose absolute path matches one of - specified patterns. + ABRT will ignore crashes in executables whose absolute path matches + any of the glob patterns listed in the comma separated list. -AllowedUsers = root, ...:: +AllowedUsers = root, wheel, ...:: ABRT will process only crashes of either allowed users 'AllowedUsers' or users who are members of allowed group 'AllowedGroups'. If no allowed users nor allowed group are specified ABRT will process crashes of all users. + 'AllowedUsers' is a comma separated list. -AllowedGroups = root, ...:: +AllowedGroups = root, wheel, ...:: ABRT will process only crashes of either allowed users 'AllowedUsers' or users who are members of allowed group 'AllowedGroups'. If no allowed users nor allowed group are specified ABRT will process crashes of all users. + 'AllowedGroups' is a comma separated list. VerboseLog = NUM:: Used to make the hook more verbose diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf index 2466aff..82c6b78 100644 --- a/src/hooks/CCpp.conf +++ b/src/hooks/CCpp.conf @@ -58,14 +58,22 @@ SaveFullCore = yes # # StandaloneHook = yes -# ABRT will ignore crashes in executables whose absolute path matches one of -# specified patterns. +# ABRT will ignore crashes in executables whose absolute path matches +# one of any of the glob patterns listed in the comma separated list. +# +# For example: +# IgnoredPaths = /path/to/ignore/*, */another/ignored/path* # #IgnoredPaths = # ABRT will process only crashes of either allowed users or users who are # members of allowed group. If no allowed users nor allowed group are specified -# ABRT will process crashes of all users. +# ABRT will process crashes of all users. Both AllowedUsers and AllowedGroups +# are a comma sepparated list. +# +# For example: +# AllowedUsers = root, wheel, ... +# AllowedGroups = root, wheel, ... # #AllowedUsers = #AllowedGroups = -- 2.7.4