blob: 4d0b0a0242acf976200b51f21a633489cb383b04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#
# $OpenBSD: vmd,v 1.4 2016/02/02 17:51:11 sthen Exp $
daemon="/usr/sbin/vmd"
. /etc/rc.d/rc.subr
# child will not return a config parsing error to the parent
rc_pre() {
${daemon} -n ${daemon_flags}
}
rc_cmd $1
|