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