xref: /netbsd-src/etc/rc.d/cgd (revision c413ec6508e1c80ddb61bd7133c15e767589759e)
1#!/bin/sh
2#
3# $NetBSD: cgd,v 1.9 2021/08/03 05:15:20 mlelstv Exp $
4#
5
6# PROVIDE: cgd
7# REQUIRE: rndctl devpubd
8# BEFORE:  DISKS
9# KEYWORD: interactive
10
11$_rc_subr_loaded . /etc/rc.subr
12
13name="cgd"
14rcvar=$name
15start_cmd="cgd_start"
16stop_cmd=":"
17
18cgd_start()
19{
20	if [ -f /etc/cgd/cgd.conf ]; then
21		print_rc_normal "Configuring CGD devices."
22		cgdconfig -C
23	fi
24}
25
26cgd_stop()
27{
28	if [ -f /etc/cgd/cgd.conf ]; then
29		print_rc_normal "Unconfiguring CGD devices."
30		cgdconfig -U
31	fi
32}
33
34load_rc_config $name
35run_rc_command "$1"
36