You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emulation/phpvirtualbox/files/vboxinit-initd

40 lines
1.1 KiB

#!/sbin/openrc-run
description="Controls VirtualBox sessions"
. /etc/conf.d/vboxwebsrv
su_command="su - ${VBOXWEBSRV_USER} -c"
depend() {
need localmount
after bootmisc
}
start() {
einfo "Starting VirtualBox machines"
eindent
MACHINES=$($su_command "VBoxManage list vms | awk '{ print \$NF }' | sed -e 's/[{}]//g'")
for UUID in $MACHINES; do
STARTUP=$($su_command "VBoxManage getextradata $UUID 'pvbx/startupMode'" | awk '{ print $NF }')
VMNAME=$($su_command "VBoxManage showvminfo $UUID | sed -n '0,/^Name:/s/^Name:[ \t]*//p'")
if [ "${STARTUP}" == "auto" ]; then
ebegin "Starting machine ${VMNAME}"
$su_command "VBoxManage startvm $UUID --type headless" &>> /var/log/vboxinit.log
eend $?
fi
done
}
stop() {
einfo "Saving VirtualBox machines"
eindent
MACHINES=$($su_command "VBoxManage list runningvms | awk '{ print \$NF }' | sed -e 's/[{}]//g'")
for UUID in $MACHINES; do
VMNAME=$($su_command "VBoxManage showvminfo $UUID | sed -n '0,/^Name:/s/^Name:[ \t]*//p'")
ebegin "Stopping machine ${VMNAME}"
$su_command "VBoxManage controlvm $UUID savestate" &>> /var/log/vboxinit.log
eend $?
done
}