From 2b2f3018bd91e50c874cfab4df4a847941cb140c Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 20 Apr 2011 13:53:42 +0200 Subject: run abrt oops log scanner as a separate service In preparation for https://fedorahosted.org/abrt/ticket/189 "abrtd should reload configuration when some of it's config files changes" I would like to stop running abrt-dump-oops as a child of abrtd. We experimented with it: we made abrt-ccpp hook (de)installation a separate service, and in my opinion it ended up a better solution than making it a part of daemon. Among other things, it made abrt and abrt-addon-ccpp packages independent. This change does the same for abrt-dump-oops. Signed-off-by: Denys Vlasenko --- scripts/dbg_mkrpm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/dbg_mkrpm b/scripts/dbg_mkrpm index c3dbcf84..68ab9e2e 100755 --- a/scripts/dbg_mkrpm +++ b/scripts/dbg_mkrpm @@ -31,8 +31,7 @@ mkdir "$BUILDDIR" 2>/dev/null (tar -czf - -C "$T" "abrt-$ABRTVER") >"$BUILDDIR"/"abrt-$ABRTVER".tar.gz rm -rf "$T" cp "$SRCDIR"/abrt.spec "$BUILDDIR" -cp "$SRCDIR"/abrt.init "$BUILDDIR" -cp "$SRCDIR"/abrt-ccpp.init "$BUILDDIR" +cp "$SRCDIR"/abrt*.init "$BUILDDIR" #cp "$SRCDIR"/dbg_* "$BUILDDIR" 2>/dev/null # developers' toys { -- cgit