NetBSD/etc/rc.d/wscons

25 lines
329 B
Plaintext
Raw Normal View History

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