NetBSD/etc/rc.d/wscons

25 lines
316 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: wscons,v 1.2 2000/03/11 20:11:16 veego Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: wscons
# REQUIRE: systemfs
. /etc/rc.subr
. /etc/rc.conf
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
}
run_rc_command "$1"