18 lines
386 B
Plaintext
18 lines
386 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
# Copyright 1999-2019 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
description="A virtual BMC for controlling virtual machines using IPMI commands"
|
||
|
pidfile="/var/run/vbmcd.pid"
|
||
|
command="/usr/sbin/vbmcd"
|
||
|
start_stop_daemon_args="--pidfile ${pidfile}"
|
||
|
|
||
|
depend() {
|
||
|
use net dns logger
|
||
|
after libvirtd
|
||
|
}
|
||
|
|
||
|
start_pre() {
|
||
|
return 0
|
||
|
}
|