blob: a8d3fc85a3788f0bfb2414a04ef081184050c4b8 (
plain)
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
|
#!/bin/sh
#
# $NetBSD: cgd,v 1.8 2010/11/01 14:41:11 christos Exp $
#
# PROVIDE: cgd
# REQUIRE: rndctl
# BEFORE: DISKS
# KEYWORD: interactive
$_rc_subr_loaded . /etc/rc.subr
name="cgd"
rcvar=$name
start_cmd="cgd_start"
stop_cmd=":"
cgd_start()
{
if [ -f /etc/cgd/cgd.conf ]; then
print_rc_normal "Configuring CGD devices."
cgdconfig -C
fi
}
cgd_stop()
{
if [ -f /etc/cgd/cgd.conf ]; then
print_rc_normal "Unconfiguring CGD devices."
cgdconfig -U
fi
}
load_rc_config $name
run_rc_command "$1"
|