summaryrefslogtreecommitdiffstats
path: root/core/modules/vbox-src/data/opt
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/vbox-src/data/opt')
-rwxr-xr-xcore/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/run-virt.include8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/run-virt.include b/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/run-virt.include
index 5ac7ab51..bca5c250 100755
--- a/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/run-virt.include
+++ b/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/run-virt.include
@@ -42,11 +42,11 @@ run_plugin() {
# set the variables appropriately (several interfaces with different names)
declare -rg VIRTCMD="${VBOX_BASE_DIR}/VirtualBoxVM"
- declare -rg VIRTCMDOPTS="--startvm ${MACHINE_UUID} --start-running --fullscreen"
+ 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}"
+ # set headless mode (-v off to disable vrdp) XXX currently not supported/used
+ #declare -rg VIRTCMDHL="${VBOX_BASE_DIR}/VBoxHeadless"
+ #declare -rg VIRTCMDOPTSHL="-s ${MACHINE_UUID}"
# for debugging purposes
cp "$VBOX_MACHINE_CONFIG" "/tmp/vbox-last-config.$USER"