1 #!/bin/sh 2 # 3 # $NetBSD: dmesg,v 1.4 2000/07/26 00:11:49 lukem Exp $ 4 # 5 6 # PROVIDE: dmesg 7 # REQUIRE: mountcritremote 8 9 . /etc/rc.subr 10 11 name="dmesg" 12 start_precmd="checkyesno dmesg" 13 start_cmd="do_dmesg" 14 stop_cmd=":" 15 16 do_dmesg() 17 { 18 rm -f /var/run/dmesg.boot 19 dmesg $dmesg_flags > /var/run/dmesg.boot 20 } 21 22 load_rc_config $name 23 run_rc_command "$1" 24