#!/bin/sh # # $NetBSD: wscons,v 1.4 2000/07/26 00:11:49 lukem Exp $ # # PROVIDE: wscons # REQUIRE: mountcritremote . /etc/rc.subr name="wscons" start_precmd="checkyesno wscons" start_cmd="do_wscons" stop_cmd=":" do_wscons() { if [ -f /etc/rc.wscons ]; then . /etc/rc.wscons fi } load_rc_config $name run_rc_command "$1"