xref: /minix/etc/rc.d/minixrc (revision 27852ebe)
1#!/bin/sh
2# MINIX 3 bridge from NetBSD rc to MINIX rc.  Must be called as the very first
3# script at startup (hence the current 'before').  Ideally the MINIX rc would
4# be decomposed into a number of small rc scripts, though.
5
6# PROVIDE: minixrc
7# BEFORE: DISKS
8# KEYWORD: shutdown
9
10$_rc_subr_loaded . /etc/rc.subr
11
12name="minixrc"
13start_cmd="sh /etc/rc.minix start"
14stop_cmd="sh /etc/rc.minix stop"
15
16load_rc_config $name
17run_rc_command "$1"
18