diff options
author | Simon Rettberg | 2024-05-24 15:35:21 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-05-24 15:35:21 +0200 |
commit | c43cfde4c54a6c2e6fe67b2edd8de927a7273e46 (patch) | |
tree | 8ba122641e3f77085436c706fa3bf41a7f098702 /core | |
parent | [vmware17] Minor shellcheck cleanups (diff) | |
download | mltk-c43cfde4c54a6c2e6fe67b2edd8de927a7273e46.tar.gz mltk-c43cfde4c54a6c2e6fe67b2edd8de927a7273e46.tar.xz mltk-c43cfde4c54a6c2e6fe67b2edd8de927a7273e46.zip |
[vm*] Don't request netshares plugin; it was a noop and was removed
Now that the plugin was removed, we see an error on screen regarding the
missing plugin when it is requested, so stop requesting it. :)
Diffstat (limited to 'core')
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 |