blob: 31bb3ffa3fcee8f83e1289cc8748cb81159f7b9c (
plain) (
tree)
|
|
#!/bin/sh
#
# $FreeBSD: ports/sysutils/hal/files/hald.in,v 1.9 2009/11/28 20:06:02 marcus Exp $
# $MCom: ports/sysutils/hal/files/hald.in,v 1.17 2009/09/26 13:42:01 marcus Exp $
#
# PROVIDE: hald
# REQUIRE: DAEMON usbd devd dbus moused
#
# Add the following line to /etc/rc.conf to enable the HAL daemon:
#
# hald_enable="YES"
#
. %%RC_SUBR%%
. %%GNOME_SUBR%%
hald_enable=${hald_enable-${gnome_enable}}
hald_flags=${hald_flags-""}
name=hald
rcvar=`set_rcvar`
command="%%PREFIX%%/sbin/hald"
pidfile="/var/run/${name}/${name}.pid"
stop_postcmd="hald_postcmd"
start_precmd="hald_precmd"
start_cmd="hald_start"
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
}
hald_precmd()
{
if ! checkyesno dbus_enable
then
local_force_depend dbus || return 1
fi
chmod 0755 /var/cache
mkdir -p $(dirname $pidfile)
}
hald_postcmd()
{
rm -f $pidfile
}
hald_start()
{
if ! checkyesno hald_enable ; then
return 0
fi
echo "Starting ${name}."
( iter=0
while ! ps -axoargs | grep "^/usr/libexec/getty " | grep -qv grep >/dev/null 2>&1; do
if [ ${iter} -eq 60 ]; then
break
fi
sleep 1
iter=$(expr ${iter} + 1)
done
${command} ${hald_flags} ) &
}
load_rc_config ${name}
run_rc_command "$1"
|