blob: 651d797f76697ef8dde4b39582607452988eebd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/ksh
#
# $OpenBSD: bootparamd,v 1.4 2018/01/11 21:09:26 rpe Exp $
daemon="/usr/sbin/rpc.bootparamd"
. /etc/rc.d/rc.subr
rc_reload=NO
rc_pre() {
[[ -s /etc/bootparams ]]
}
rc_cmd $1
|