blob: e0d488a95e6948ad73d68ec6f9dc98d69efad71e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# PROVIDE: diskcheckd
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable diskcheckd:
#
# diskcheckd_enable="YES"
: ${diskcheckd_enable="NO"}
. /etc/rc.subr
name="diskcheckd"
rcvar=diskcheckd_enable
command=%%PREFIX%%/sbin/diskcheckd
load_rc_config $name
run_rc_command "$1"
|