diff options
3 files changed, 3 insertions, 3 deletions
diff --git a/core/modules/qemu/data/opt/openslx/vmchooser/plugins/qemukvm/run-virt.include b/core/modules/qemu/data/opt/openslx/vmchooser/plugins/qemukvm/run-virt.include index 2cd2c60e..e522ccab 100644 --- a/core/modules/qemu/data/opt/openslx/vmchooser/plugins/qemukvm/run-virt.include +++ b/core/modules/qemu/data/opt/openslx/vmchooser/plugins/qemukvm/run-virt.include @@ -20,7 +20,7 @@ declare -rg QEMU_PLUGIN_DIR="$(dirname "${BASH_SOURCE[0]}")" declare -rg QEMU_INCLUDE_DIR="${QEMU_PLUGIN_DIR}/includes" # Define which features the QEMU plugin supports -declare -rg PLUGIN_FEATURES="firewall printer usb slxfloppy sound netshares" +declare -rg PLUGIN_FEATURES="firewall printer usb slxfloppy sound" run_plugin() { # include kernel command line utils and functions 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 7288007e..1e7a2e44 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 @@ -19,7 +19,7 @@ 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="firewall printer usb slxfloppy sound netshares" +declare -rg PLUGIN_FEATURES="firewall printer usb slxfloppy sound" run_plugin() { # declaration of default variables and some sanity checks diff --git a/core/modules/vmware-common/data/opt/openslx/vmchooser/plugins/vmware/run-virt.include b/core/modules/vmware-common/data/opt/openslx/vmchooser/plugins/vmware/run-virt.include index b1400571..57b5ee6c 100644 --- a/core/modules/vmware-common/data/opt/openslx/vmchooser/plugins/vmware/run-virt.include +++ b/core/modules/vmware-common/data/opt/openslx/vmchooser/plugins/vmware/run-virt.include @@ -21,7 +21,7 @@ declare -rg VMWARE_INCLUDE_DIR="${VMWARE_PLUGIN_DIR}/includes" # TODO make this part of the metadata coming from the server # Define which features the VMware plugin supports -declare -rg PLUGIN_FEATURES="firewall printer usb slxfloppy sound netshares" +declare -rg PLUGIN_FEATURES="firewall printer usb slxfloppy sound" run_plugin() { # declaration of default functions and variables for vmware |