#!/bin/ksh # # $OpenBSD: vmd,v 1.10 2019/01/21 01:41:16 claudio Exp $ daemon="/usr/sbin/vmd" . /etc/rc.d/rc.subr # Child will not return a config parsing error to the parent. rc_pre() { # use rcexec here since daemon_flags may contain arguments with spaces ${rcexec} "${daemon} -n ${daemon_flags}" } rc_stop() { _rc_do vmctl stop -a -w pkill -T "${daemon_rtable}" -xf "${pexp}" } rc_cmd $1