49 lines
1.9 KiB
Diff
49 lines
1.9 KiB
Diff
From 3389fbeb5cf00fd515049a6a9db3c5cc4ca383a0 Mon Sep 17 00:00:00 2001
|
|
From: Michal Srb <michal@redhat.com>
|
|
Date: Thu, 26 Aug 2021 19:20:52 +0200
|
|
Subject: [PATCH] Change the default Bugzilla group
|
|
|
|
Signed-off-by: Michal Srb <michal@redhat.com>
|
|
---
|
|
configure.ac | 6 +++---
|
|
src/plugins/bugzilla.conf | 4 ++--
|
|
2 files changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index fa97fa78..aa383083 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -98,14 +98,14 @@ AC_PATH_PROG([XMLRPC], [xmlrpc-c-config], [no])
|
|
AC_ARG_WITH([redhatbugzillacreateprivate],
|
|
AS_HELP_STRING([--with-redhatbugzillacreateprivate="yes/no"],
|
|
[Whether the Red Hat Bugzilla plugin should open
|
|
- bugs private by default ("no")]),
|
|
- [], [with_redhatbugzillacreateprivate="no"])
|
|
+ bugs private by default ("yes")]),
|
|
+ [], [with_redhatbugzillacreateprivate="yes"])
|
|
AC_SUBST([RED_HAT_BUGZILLA_CREATE_PRIVATE], [$with_redhatbugzillacreateprivate])
|
|
|
|
AC_ARG_WITH([redhatbugzillaprivategroups],
|
|
AS_HELP_STRING([--with-redhatbugzillaprivategroups="CSV"],
|
|
[Name of groups separated by comma]),
|
|
- [], [with_redhatbugzillaprivategroups="fedora_contrib_private"])
|
|
+ [], [with_redhatbugzillaprivategroups="redhat"])
|
|
AC_SUBST([RED_HAT_BUGZILLA_PRIVATE_GROUPS], [$with_redhatbugzillaprivategroups])
|
|
|
|
|
|
diff --git a/src/plugins/bugzilla.conf b/src/plugins/bugzilla.conf
|
|
index a7727392..dbbbd05c 100644
|
|
--- a/src/plugins/bugzilla.conf
|
|
+++ b/src/plugins/bugzilla.conf
|
|
@@ -22,5 +22,5 @@ Password =
|
|
DontMatchComponents = selinux-policy
|
|
|
|
# for more info about these settings see: https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets
|
|
-# CreatePrivate = no
|
|
-# PrivateGroups = fedora_contrib_private
|
|
+# CreatePrivate = yes
|
|
+# PrivateGroups = redhat
|
|
--
|
|
2.31.1
|
|
|