Blame SOURCES/0019-bugzilla-change-the-default-bugzilla-group.patch

4188e0
From 1aa9e3a987439fd4435b40b9c7f56d063097f980 Mon Sep 17 00:00:00 2001
4188e0
From: Martin Kutlak <mkutlak@redhat.com>
4188e0
Date: Thu, 3 Jan 2019 16:32:00 +0100
4188e0
Subject: [PATCH] bugzilla: change the default bugzilla group
4188e0
4188e0
Changes the default bugzilla group to redhat and also makes the
4188e0
reported bugs private by default.
4188e0
4188e0
Related to rhbz#1660449
4188e0
4188e0
Signed-off-by: Martin Kutlak <mkutlak@redhat.com>
4188e0
---
4188e0
 configure.ac              | 6 +++---
4188e0
 src/plugins/bugzilla.conf | 4 ++--
4188e0
 2 files changed, 5 insertions(+), 5 deletions(-)
4188e0
4188e0
diff --git a/configure.ac b/configure.ac
4188e0
index feafc28e..ce453895 100644
4188e0
--- a/configure.ac
4188e0
+++ b/configure.ac
4188e0
@@ -92,14 +92,14 @@ AC_PATH_PROG([XMLRPC], [xmlrpc-c-config], [no])
4188e0
 AC_ARG_WITH([redhatbugzillacreateprivate],
4188e0
             AS_HELP_STRING([--with-redhatbugzillacreateprivate="yes/no"],
4188e0
                            [Whether the Red Hat Bugzilla plugin should open
4188e0
-                            bugs private by default ("no")]),
4188e0
-            [], [with_redhatbugzillacreateprivate="no"])
4188e0
+                            bugs private by default ("yes")]),
4188e0
+            [], [with_redhatbugzillacreateprivate="yes"])
4188e0
 AC_SUBST([RED_HAT_BUGZILLA_CREATE_PRIVATE], [$with_redhatbugzillacreateprivate])
4188e0
 
4188e0
 AC_ARG_WITH([redhatbugzillaprivategroups],
4188e0
             AS_HELP_STRING([--with-redhatbugzillaprivategroups="CSV"],
4188e0
                            [Name of groups separated by comma]),
4188e0
-            [], [with_redhatbugzillaprivategroups="fedora_contrib_private"])
4188e0
+            [], [with_redhatbugzillaprivategroups="redhat"])
4188e0
 AC_SUBST([RED_HAT_BUGZILLA_PRIVATE_GROUPS], [$with_redhatbugzillaprivategroups])
4188e0
 
4188e0
 
4188e0
diff --git a/src/plugins/bugzilla.conf b/src/plugins/bugzilla.conf
4188e0
index a7727392..dbbbd05c 100644
4188e0
--- a/src/plugins/bugzilla.conf
4188e0
+++ b/src/plugins/bugzilla.conf
4188e0
@@ -22,5 +22,5 @@ Password =
4188e0
 DontMatchComponents = selinux-policy
4188e0
 
4188e0
 # for more info about these settings see: https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets
4188e0
-# CreatePrivate = no
4188e0
-# PrivateGroups = fedora_contrib_private
4188e0
+# CreatePrivate = yes
4188e0
+# PrivateGroups = redhat
4188e0
-- 
4188e0
2.21.0
4188e0