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

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