summaryrefslogtreecommitdiff
blob: d469b46343ef06e3d89afaa25572df9b394feb51 (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
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-auth/consolekit/files/consolekit-0.1.rc,v 1.2 2009/09/12 19:46:19 nirbheek Exp $

depend() {
	need dbus
	use logger
}

start() {
	ebegin "Starting ConsoleKit daemon"

	start-stop-daemon --start -q \
		--pidfile /var/run/ConsoleKit/pid \
		--exec /usr/sbin/console-kit-daemon -- 
	eend $?
}

stop() {
	ebegin "Stopping ConsoleKit daemon"
	start-stop-daemon --stop -q --pidfile /var/run/ConsoleKit/pid 
	eend $?
}