summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-admin/abrt/files/abrt-2.0.12-r1-init')
-rw-r--r--app-admin/abrt/files/abrt-2.0.12-r1-init76
1 files changed, 0 insertions, 76 deletions
diff --git a/app-admin/abrt/files/abrt-2.0.12-r1-init b/app-admin/abrt/files/abrt-2.0.12-r1-init
deleted file mode 100644
index 3fb32b7c3e43..000000000000
--- a/app-admin/abrt/files/abrt-2.0.12-r1-init
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description="Automated crash detection service"
-
-depend() {
- need dbus logger
-}
-
-start() {
- ebegin "Starting abrtd"
- start-stop-daemon --start --quiet --pidfile /var/run/abrt/abrtd.pid \
- --exec /usr/sbin/abrtd -- ${ABRTD_OPTS}
- eend $?
-
- if [ "${START_VMCORE}" = "yes" ]; then
- ebegin "Running abrt-harvest-vmcore"
- /usr/sbin/abrt-harvest-vmcore
- eend $?
- fi
-
- if [ "${START_CCPP}" = "yes" ]; then
- ebegin "Installing abrt-ccpp hook"
- /usr/sbin/abrt-install-ccpp-hook install
- eend $?
- fi
-
- if [ "${START_OOPS}" = "yes" ]; then
- ebegin "Starting abrt-dump-oops"
- start-stop-daemon --start --quiet \
- --pidfile /var/run/abrt/abrt-dump-oops.pid \
- --make-pidfile --background \
- --exec /usr/bin/abrt-watch-log -- \
- -F "`/usr/bin/abrt-dump-oops -m`" ${OOPS_WATCH_LOG} -- \
- /usr/bin/abrt-dump-oops ${OOPS_DUMP_OPTS}
- eend $?
- fi
-
- if [ "${START_XORG}" = "yes" ]; then
- ebegin "Starting abrt-dump-xorg"
- start-stop-daemon --start --quiet \
- --pidfile /var/run/abrt/abrt-dump-xorg.pid \
- --make-pidfile --background \
- --exec /usr/bin/abrt-watch-log -- \
- -F "`/usr/bin/abrt-dump-xorg -m`" ${XORG_WATCH_LOG} -- \
- /usr/bin/abrt-dump-xorg ${XORG_DUMP_OPTS}
- eend $?
- fi
-}
-
-stop() {
- if [ "${START_XORG}" = "yes" ]; then
- ebegin "Stopping abrt-dump-xorg"
- start-stop-daemon --stop --quiet \
- --pidfile /var/run/abrt/abrt-dump-xorg.pid
- eend $?
- fi
-
- if [ "${START_OOPS}" = "yes" ]; then
- ebegin "Stopping abrt-dump-oops"
- start-stop-daemon --stop --quiet \
- --pidfile /var/run/abrt/abrt-dump-oops.pid
- eend $?
- fi
-
- if [ "${START_CCPP}" = "yes" ]; then
- ebegin "Uninstalling abrt-ccpp hook"
- /usr/sbin/abrt-install-ccpp-hook uninstall
- eend $?
- fi
-
- ebegin "Stopping abrtd"
- start-stop-daemon --stop --quiet --pidfile /var/run/abrt/abrtd.pid
- eend $?
-}