public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jiri Moskovcak <jmoskovc@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/abrt] update-2.17.9-f44: enable plugins unconditionally rhbz#819113
Date: Mon, 03 Aug 2026 11:03:40 GMT [thread overview]
Message-ID: <178575502049.1.4583048409216504114.rpms-abrt-43894a7cdb35@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/abrt
Branch : update-2.17.9-f44
Commit : 43894a7cdb35213cc88894ae92854702ea8752ff
Author : Jiri Moskovcak <jmoskovc@redhat.com>
Date : 2012-05-10T15:00:39+02:00
Stats : +57/-11 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/abrt/c/43894a7cdb35213cc88894ae92854702ea8752ff?branch=update-2.17.9-f44
Log:
enable plugins unconditionally rhbz#819113
---
diff --git a/abrt.spec b/abrt.spec
index 69ddb68..2a44564 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -25,7 +25,7 @@
Summary: Automatic bug detection and reporting tool
Name: abrt
Version: 2.0.10
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: Applications/System
URL: https://fedorahosted.org/abrt/
@@ -38,6 +38,7 @@ Patch3: 0002-gui-fixed-crash-when-chowning-directory-using-dbus-c.patch
Patch4: 0003-dbus-use-the-helper-dir_accessible_by_uid-more-consi.patch
Patch5: 0001-a-a-analyze-core-check-the-len-if-the-line-array-bef.patch
Patch6: 0001-pyhook-add-timetout-to-sockets-rhbz-808562.patch
+Patch7: abrt_systemd_requisite.patch
BuildRequires: dbus-devel
BuildRequires: gtk2-devel
BuildRequires: rpm-devel >= 4.6
@@ -239,7 +240,9 @@ uses PolicyKit to authorize to access the problem data.
%patch2 -p1 -b .gpgcheck
%patch3 -p1
%patch4 -p1
-%patch5 -p1 -b .rhbz804309
+%patch5 -p1 -b .rhbz804309
+%patch6 -p1 -b .socket_timeouts
+%patch7 -p1 -b .systemd_requisit
%build
autoconf
@@ -308,10 +311,8 @@ if [ $1 -eq 1 ]; then
# If this old abrtd was enabled, then the new package
# should have abrt-ccpp enabled too.
%if %{with systemd}
- if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then
# Enable (but don't start) the units by default
/bin/systemctl enable abrt-ccpp.service >/dev/null 2>&1 || :
- fi
%else
if /sbin/chkconfig abrtd >/dev/null 2>&1; then
/sbin/chkconfig --add abrt-ccpp
@@ -323,10 +324,8 @@ fi
if [ $1 -eq 1 ]; then
# (see explanation in addon-ccpp section)
%if %{with systemd}
- if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then
# Enable (but don't start) the units by default
/bin/systemctl enable abrt-oops.service >/dev/null 2>&1 || :
- fi
%else
if /sbin/chkconfig abrtd >/dev/null 2>&1; then
/sbin/chkconfig --add abrt-oops
@@ -338,10 +337,8 @@ fi
if [ $1 -eq 1 ]; then
# (see explanation in addon-ccpp section)
%if %{with systemd}
- if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then
# Enable (but don't start) the units by default
/bin/systemctl enable abrt-xorg.service >/dev/null 2>&1 || :
- fi
%else
if /sbin/chkconfig abrtd >/dev/null 2>&1; then
/sbin/chkconfig --add abrt-xorg
@@ -353,10 +350,8 @@ fi
if [ $1 -eq 1 ]; then
# (see explanation in addon-ccpp section)
%if %{with systemd}
- if [ "`/bin/systemctl is-enabled abrtd.service`" = "enabled" ]; then
# Enable (but don't start) the units by default
/bin/systemctl enable abrt-vmcore.service >/dev/null 2>&1 || :
- fi
%else
if /sbin/chkconfig abrtd >/dev/null 2>&1; then
/sbin/chkconfig --add abrt-vmcore
@@ -640,7 +635,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%{_datadir}/polkit-1/actions/abrt_polkit.policy
%changelog
-* Wed Apr 18 2012 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.10-3
+* Thu May 10 2012 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.10-3
+- enable plugins unconditionally rhbz#819113
+
+* Wed Apr 18 2012 Jiri Moskovcak <jmoskovc@redhat.com>
- fixed freeze in crashing python apps rhbz#808562
- Resolves: #808562
diff --git a/abrt_systemd_requisite.patch b/abrt_systemd_requisite.patch
new file mode 100644
index 0000000..f1b6757
--- /dev/null
+++ b/abrt_systemd_requisite.patch
@@ -0,0 +1,48 @@
+diff -urp abrt-2.0.10/init-scripts/abrt-ccpp.service abrt-2.0.10_systemd/init-scripts/abrt-ccpp.service
+--- abrt-2.0.10/init-scripts/abrt-ccpp.service 2012-03-08 11:20:16.000000000 +0100
++++ abrt-2.0.10_systemd/init-scripts/abrt-ccpp.service 2012-05-10 10:27:13.596516564 +0200
+@@ -1,7 +1,7 @@
+ [Unit]
+ Description=Install ABRT coredump hook
+ After=abrtd.service
+-Requires=abrtd.service
++Requisite=abrtd.service
+
+ [Service]
+ Type=oneshot
+diff -urp abrt-2.0.10/init-scripts/abrt-oops.service abrt-2.0.10_systemd/init-scripts/abrt-oops.service
+--- abrt-2.0.10/init-scripts/abrt-oops.service 2012-03-23 14:34:00.000000000 +0100
++++ abrt-2.0.10_systemd/init-scripts/abrt-oops.service 2012-05-10 10:27:34.428515140 +0200
+@@ -1,7 +1,7 @@
+ [Unit]
+ Description=ABRT kernel log watcher
+ After=abrtd.service
+-Requires=abrtd.service
++Requisite=abrtd.service
+
+ [Service]
+ # TODO: do we really need absolute paths here?
+diff -urp abrt-2.0.10/init-scripts/abrt-vmcore.service abrt-2.0.10_systemd/init-scripts/abrt-vmcore.service
+--- abrt-2.0.10/init-scripts/abrt-vmcore.service 2012-03-08 11:20:16.000000000 +0100
++++ abrt-2.0.10_systemd/init-scripts/abrt-vmcore.service 2012-05-10 10:27:41.644514646 +0200
+@@ -1,7 +1,7 @@
+ [Unit]
+ Description=Harvest vmcores for ABRT
+ After=abrtd.service
+-Requires=abrtd.service
++Requisite=abrtd.service
+
+ [Service]
+ Type=oneshot
+diff -urp abrt-2.0.10/init-scripts/abrt-xorg.service abrt-2.0.10_systemd/init-scripts/abrt-xorg.service
+--- abrt-2.0.10/init-scripts/abrt-xorg.service 2012-03-23 14:34:00.000000000 +0100
++++ abrt-2.0.10_systemd/init-scripts/abrt-xorg.service 2012-05-10 10:27:48.444514182 +0200
+@@ -1,7 +1,7 @@
+ [Unit]
+ Description=ABRT Xorg log watcher
+ After=abrtd.service
+-Requires=abrtd.service
++Requisite=abrtd.service
+
+ [Service]
+ ExecStart=/bin/sh -c 'exec /usr/bin/abrt-watch-log -F "`/usr/bin/abrt-dump-xorg -m`" /var/log/Xorg.0.log -- /usr/bin/abrt-dump-xorg -xD'
reply other threads:[~2026-08-03 11:03 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178575502049.1.4583048409216504114.rpms-abrt-43894a7cdb35@fedoraproject.org \
--to=jmoskovc@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox