NetBSD/etc/rc.d/cgd
apb 3a49704c6b Adapt /etc/rc.d/cgd script to the new /etc/rc:
Add "KEYWORD: interactive" so that prompting for passwords work, and
use print_rc_normal to print a message that could safely be suppressed.

Part of the /etc/rc silent changes requested in PR 41946
and proposed in tech-userlevel.
2009-09-11 18:18:03 +00:00

28 lines
389 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: cgd,v 1.7 2009/09/11 18:18:03 apb 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
}
load_rc_config $name
run_rc_command "$1"