1a286b1407
make them "externally" available: Previous Current Purpose -------- ------- ------- _arg rc_arg Argument to command, after fast/force processing performed (and prefix removed) _flags rc_flags Flags to start the default command with. Defaults to ${name}_flags, unless overridden by $flags from the environment. This variable may be changed by the precmd method. _pid rc_pid PID of command (if appropriate). _rc_run_fast rc_fast Not empty is "fast" was provided. _rc_run_force rc_force Not empty is "force" was provided. - Use rc_flags instead of _flags or ${name}_flags in various rc.d scripts, so that $flags from the environment overrides ${name}_flags from rc.conf(5). Fixes [bin/15800].
25 lines
357 B
Bash
Executable File
25 lines
357 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: dmesg,v 1.7 2002/03/22 04:16:39 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: dmesg
|
|
# REQUIRE: mountcritremote
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dmesg"
|
|
rcvar=$name
|
|
dmesg_file="/var/run/dmesg.boot"
|
|
start_cmd="do_dmesg"
|
|
stop_cmd=":"
|
|
|
|
do_dmesg()
|
|
{
|
|
rm -f ${dmesg_file}
|
|
( umask 022 ; /sbin/dmesg $rc_flags > ${dmesg_file} )
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|