forked from pool/virtualbox
7243b598f1
- Version bump to 6.1.6 (released April 14 2020 by Oracle) This version fixes bsc#1169249, bsc#1169202, and bsc#1166782. This is a maintenance release. The following items were fixed and/or added: GUI: Multiple enhancements including visual elements updates Graphics: Fixed monitor resizing and multi-monitor handling bugs on X11 guests with VMSVGA graphics adapter Graphics: Enhancements in 2D and 3D acceleration and rendering USB: Multiple enhancements improving prformance and stability Serial port: Improve error handling and fix hang when host port disappears VBoxManage: Multiple fixes for guestcontrol operations API: Fix for exception handling bug in Python bindings Shared clipboard: Multiple fixes including possible crash and HTML data support Linux host and guest: Support Linux kernel 5.6 (bug #19312) File "VirtualBox-6.1.4-VBoxClient-vmsvga-x11-crash.patch" removed - fixed upstream. File "fixes_for_5.6.patch" removed - fixed upstream. File "change_default_display.patch" removed - fixed upstream. - Fix bug that deletes everything in ~/.vbox/ - Fix builds for kernel 5.7. File "fixes_for_5.7.patch" is added. OBS-URL: https://build.opensuse.org/request/show/794392 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=548
71 lines
2.5 KiB
Bash
71 lines
2.5 KiB
Bash
#!/bin/bash
|
|
export QT_NO_KDE_INTEGRATION=1
|
|
|
|
# make certain that the user/group combination is valid
|
|
/usr/bin/id -nG | grep -v -e "root" -e "vboxusers" >/dev/null && /usr/lib/virtualbox/VBoxPermissionMessage && exit
|
|
#
|
|
# Handle the issue regarding USB passthru
|
|
# The following conditions apply:
|
|
# 1. If ~/.config/VirtualBox/enable exists, the user accepts the security risk.
|
|
# 2. If ~/.config/VirtualBox/disable exists, the user does not accept the risk. That file will contain the inode of /usr/lib/udev/rules.d/60-vboxdrv.rules.
|
|
# When that changes, the VBoxUSB_DevRules will again be displayed as that means that VB has been reloaded.
|
|
#
|
|
devrules()
|
|
{
|
|
/usr/lib/virtualbox/VBoxUSB_DevRules
|
|
if [ $? -eq 0 ] ; then
|
|
# User accepts the risk
|
|
touch ~/.config/VirtualBox/enable
|
|
rm -f ~/.config/VirtualBox/disable
|
|
else
|
|
# User declines the risk - save the inode
|
|
echo "" > ~/.config/VirtualBox/disable
|
|
rm -f ~/.config/VirtualBox/enable
|
|
fi
|
|
}
|
|
|
|
# Start of main routine
|
|
#
|
|
# Ensure that ~/.config/VirtualBox exists
|
|
mkdir -p ~/.config/VirtualBox
|
|
# Get the inode for /usr/lib/udev/rules.d/60-vboxdrv.rules
|
|
INODE=$(stat /usr/lib/udev/rules.d/60-vboxdrv.rules | grep Inode | cut -d' ' -f3)
|
|
if [ ! -f ~/.config/VirtualBox/enable ] && [ ! -f ~/.config/VirtualBox/disable ] ; then
|
|
# Neither file exists - find what the user wants
|
|
devrules
|
|
fi
|
|
# Get the original Inode if it exists
|
|
if [ -f ~/.config/VirtualBox/disable ] ; then
|
|
read LINE < ~/.config/VirtualBox/disable
|
|
else
|
|
LINE=" "
|
|
fi
|
|
# If user originally declined, make certain that /usr/lib/udev/rules.d/60-vboxdrv.rules has not been changed
|
|
if [ -f ~/.config/VirtualBox/disable ] && [ "$LINE" != "$INODE" ] && [ "$LINE" != "" ] ; then
|
|
# disable is selected and the Inode has changed - ask again
|
|
devrules
|
|
fi
|
|
if [ -f ~/.config/VirtualBox/disable ] ; then
|
|
echo $INODE > ~/.config/VirtualBox/disable
|
|
if [ "$LINE" != "$INODE" ] ; then
|
|
if [ -f /usr/bin/kdesu ] ; then
|
|
kdesu /sbin/vbox-fix-usb-rules.sh
|
|
fi
|
|
if [ -f /usr/bin/gnomesu ] ; then
|
|
gnomesu /sbin/vbox-fix-usb-rules.sh
|
|
fi
|
|
fi
|
|
fi
|
|
# Check if extpack needs to be updated
|
|
/usr/bin/update-extpack.sh
|
|
# Check that /usr/lib/virtualbox/VirtualBoxVM has SUID permissions
|
|
PERM=$(ls -l /usr/lib/virtualbox/VirtualBoxVM | grep rwsr)
|
|
if [ -z "$PERM" ]
|
|
then
|
|
logger -s "Wrong permissions for VirtualBoxVM - use 'sudo chmod 4711 /usr/lib/virtualbox/VirtualBoxVM' to fix"
|
|
/usr/lib/virtualbox/VBoxSUIDMessage
|
|
exit 1
|
|
fi
|
|
# Now run the VB GUI
|
|
LD_LIBRARY_PATH="/usr/lib/virtualbox${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" /usr/lib/virtualbox/VirtualBox6 $@
|