summaryrefslogtreecommitdiff
blob: b3e57431bf48501114654f63a8e25e2a93898e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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 $?
}