blob: a81ddcc93f398d91abb04d26fc465db66683976f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/ksh
#
# $OpenBSD: vmd,v 1.9 2018/09/27 17:15:36 reyk 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_stop() {
_rc_do vmctl stop -a -w
pkill -T "${daemon_rtable}" -xf "${pexp}"
}
rc_cmd $1
|