blob: 7eada3e639c227b1a7443b648e748518989bfb55 (
plain) (
blame)
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
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: consolekit
# REQUIRE: DAEMON dbus
#
# Add the following line to /etc/rc.conf to enable the ConsoleKit daemon:
#
# consolekit_enable="YES"
#
. %%RC_SUBR%%
. %%GNOME_SUBR%%
consolekit_enable=${consolekit_enable-${gnome_enable}}
name=consolekit
rcvar=`set_rcvar`
command="%%PREFIX%%/sbin/console-kit-daemon"
pidfile="/var/run/${name}.pid"
start_precmd="consolekit_precmd"
stop_postcmd="consolekit_postcmd"
local_force_depend()
{
_depend="$1"
if [ -f %%LOCALBASE%%/etc/rc.d/${_depend}.sh ]; then
_depend="${_depend}.sh"
fi
if ! %%LOCALBASE%%/etc/rc.d/${_depend} forcestatus 1>/dev/null 2>&1 &&
! %%LOCALBASE%%/etc/rc.d/${_depend} forcestart; then
return 1
fi
return 0
}
consolekit_precmd()
{
if ! checkyesno dbus_enable
then
local_force_depend dbus || return 1
fi
mkdir -p $(dirname $pidfile)
}
consolekit_postcmd()
{
rm -f $pidfile
}
load_rc_config ${name}
run_rc_command "$1"
|