blob: 4fd1140fe20969c6cd5e97fe1ecb47a397ea6a69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
description="consolekit - tracks login sessions and seats"
pidfile="/run/ConsoleKit/pid"
command="/usr/sbin/console-kit-daemon"
depend() {
need dbus
use logger
}
start_pre() {
checkpath -q -d -m 0755 /run/ConsoleKit
}
|