summaryrefslogblamecommitdiffstats
path: root/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/run-virt.include
blob: 22fde7b488d95d528c18e81c2392e280bf343fb1 (plain) (tree)



























                                                                                
                                                                     

                                                                       
                                                                

                                              
                                                                  

                                        
                                                                       

                            
                                                                  















                                                                                        
# -----------------------------------------------------------------------------
# Copyright (c) 2009..2018 - RZ Uni Freiburg
# Copyright (c) 2009..2018 - OpenSLX GmbH
#
# This program/file is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your feedback to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org
# -----------------------------------------------------------------------------
# run-virt.include
#    - component for virtualbox of the vmchooser plugin vmchooser-run_virt
################################################################################

declare -rg VBOX_PLUGIN_DIR="$(dirname "${BASH_SOURCE[0]}")"
declare -rg VBOX_INCLUDE_DIR="${VBOX_PLUGIN_DIR}/includes"
declare -rg VBOX_BASE_DIR="/usr/lib/virtualbox"

#declare -rg PLUGIN_FEATURES="slxfloppy firewall printer usb sound netshares"
declare -rg PLUGIN_FEATURES="slxfloppy"

run_plugin() {
	# declaration of default variables and some sanity checks
	$(safesource --exit "${VBOX_INCLUDE_DIR}/init_core.inc")

	# determine hardware limits based on guest OD
	$(safesource "${VBOX_INCLUDE_DIR}/guest_hardware_limits.inc")
	
	# prepare volatile rw layer for the disk image using a snapshot
	$(safesource "${VBOX_INCLUDE_DIR}/prepare_snapshot.inc")

	# create main virtualbox configuration
	$(safesource "${VBOX_INCLUDE_DIR}/create_vbox_config.inc")
	
	# finalize machine configuration
	$(safesource "${VBOX_INCLUDE_DIR}/finalize_machine_config.inc")

	# log config summary
	$(safesource "${VBOX_INCLUDE_DIR}/log_config_summary.inc")

	# This is necessary for the VM to start (don't ask me why, yet!)
	VBMANPID=$(pstree -p | grep VBoxXPCOMIPCD | grep -ivE "VirtualBox|VBoxHeadless"\
		| sed -e "s/.*VBoxXPCOMIPCD(\(.*\)).*/\1/")
	for i in $(echo ${VBMANPID}); do
		kill -9 ${VBMANPID} >/dev/null 2>&1
	done

	# set the variables appropriately (several interfaces with different names)
	declare -rg VIRTCMD="${VBOX_BASE_DIR}/VirtualBox"
	declare -rg VIRTCMDOPTS="--startvm ${MACHINE_UUID} --start-running --fullscreen"
	
	# set headless mode (-v off to disable vrdp)
	declare -rg VIRTCMDHL="${VBOX_BASE_DIR}/VBoxHeadless"
	declare -rg VIRTCMDOPTSHL="-s ${MACHINE_UUID}"
}