FreeBSD Bugzilla – Attachment 251798 Details for
Bug 280062
emulators/virtualbox-ose{,-legacy}: add vboxinit start/stop script for VMs which is controlled from phpvirtualbox
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
File ${LOCALBASE}/etc/rc.d/vboxinit
vboxinit (text/plain), 2.48 KB, created by
Vladimir Druzenko
on 2024-06-30 14:05:55 UTC
(
hide
)
Description:
File ${LOCALBASE}/etc/rc.d/vboxinit
Filename:
MIME Type:
Creator:
Vladimir Druzenko
Created:
2024-06-30 14:05:55 UTC
Size:
2.48 KB
patch
obsolete
>#!/bin/sh > ># PROVIDE: vboxinit ># REQUIRE: LOGIN vboxnet vboxwebsrv sshd ># KEYWORD: shutdown ># ># Add the following line to /etc/rc.conf[.local] to enable vboxinit ># ># vboxinit_enable (bool): Set to "NO" by default. ># Set it to "YES" to enable vboxinit. ># stop and faststop are always enabled. ># vboxinit_user (str): Default user account to run with. ># (default: vboxusers) ># vboxinit_home (str): Default home directory to run with. ># (default: home of user ${vboxinit_user} ># vboxinit_stop (str): Default stop cmd for VBoxManage controlvm. ># (default: savestate) ># vboxinit_start_delay (int): Default startup delay in seconds. ># (default: 0) ># vboxinit_stop_delay (int): Default shutdown delay in seconds. ># (default: 0) ># ># Set the "Startup Mode" to "Automatic" for the virtual machine in ># phpvirtualbox to automatically start the virtual machine during OS boot. ># > >. /etc/rc.subr > >name="vboxinit" >rcvar="${name}_enable" > >start_cmd="${name}_start" >stop_cmd="${name}_stop" >status_cmd="${name}_status" >restart_cmd="${name}_restart" > >vboxinit_start() >{ > # Get a list of all machines with autorun enabled in phpvirtualbox > ${su_command} "${command} list vms | /usr/bin/tr -d '{}\"'" | while read VMNAME UUID; do > STARTUP=$(${su_command} "${command} getextradata ${UUID} 'pvbx/startupMode'" | /usr/bin/cut -d' ' -f2) > if [ "${STARTUP}" == "auto" ]; then > echo "${name}: starting machine ${VMNAME} ..." > ${su_command} "${command} startvm ${UUID} --type headless" > sleep "${vboxinit_start_delay}" > fi > done >} > >vboxinit_stop() >{ > # Get all running machines > ${su_command} "${command} list runningvms | /usr/bin/tr -d '{}\"'" | while read VMNAME UUID; do > echo "${name}: stopping machine ${VMNAME} with action '${vboxinit_stop}' ..." > ${su_command} "${command} controlvm ${UUID} ${vboxinit_stop}" > sleep "${vboxinit_stop_delay}" > done >} > >vboxinit_status() >{ > # List all running machines > ${su_command} "${command} list runningvms" >} > >vboxinit_restart() >{ > vboxinit_stop > vboxinit_start >} > >load_rc_config $name > >: ${vboxinit_enable="NO"} >: ${vboxinit_user="vboxusers"} >: ${vboxinit_home=$(/usr/sbin/pw usershow -7 -n "${vboxinit_user}" | /usr/bin/cut -d: -f6)} >: ${vboxinit_stop="savestate"} >: ${vboxinit_start_delay="0"} >: ${vboxinit_stop_delay="0"} >HOME=${vboxinit_home} >USER=${vboxinit_user} >export HOME USER > >command="/usr/local/lib/virtualbox/VBoxManage" >su_command="/usr/bin/su -m ${vboxinit_user} -c" > >if [ "x$1" = "xstop" ] || [ "x$1" = "xfaststop" ]; then > vboxinit_enable="YES" >fi > >run_rc_command "$1"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 280062
:
251794
|
251795
|
251796
|
251797
| 251798 |
251799