2012-02-07 23:13:24 +04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2012-08-30 00:34:18 +04:00
|
|
|
# $NetBSD: makemandb,v 1.4 2012/08/29 20:34:19 wiz Exp $
|
2012-02-07 23:13:24 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: makemandb
|
|
|
|
# REQUIRE: DAEMON
|
|
|
|
# BEFORE: LOGIN
|
|
|
|
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
|
|
|
|
name="makemandb"
|
2012-06-12 06:25:29 +04:00
|
|
|
rcvar=$name
|
2012-02-07 23:13:24 +04:00
|
|
|
required_files="/etc/man.conf /usr/sbin/makemandb"
|
|
|
|
start_cmd="makemandb_start"
|
|
|
|
stop_cmd=":"
|
|
|
|
|
|
|
|
makemandb_start()
|
|
|
|
{
|
2012-06-17 06:13:13 +04:00
|
|
|
# Initiate update build in the background
|
2012-08-30 00:34:18 +04:00
|
|
|
nice -n 5 /usr/sbin/makemandb -Q > /dev/null 2>&1 &
|
2012-02-07 23:13:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|