summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/dmesg
blob: 41ad00f4750b2973abd6f8c38c1165c59d14866d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
#
# $NetBSD: dmesg,v 1.4 2000/07/26 00:11:49 lukem Exp $
#

# PROVIDE: dmesg
# REQUIRE: mountcritremote

. /etc/rc.subr

name="dmesg"
rcvar=$name
start_cmd="do_dmesg"
stop_cmd=":"

do_dmesg()
{
	rm -f /var/run/dmesg.boot
	dmesg $dmesg_flags > /var/run/dmesg.boot
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud