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