Disable audio totally

Since VirtualBox 5.1 released on 2016-07-12 the audio setting enabled
by default which can be an issue on some hardware because audio not
supported in the Fuel.

Change-Id: I19dfd0cb44d034e41e3b061f2107476907b78363
Closes-Bug: #1624303
Signed-off-by: Maksim Malchuk <mmalchuk@mirantis.com>
This commit is contained in:
Maksim Malchuk 2016-09-21 14:45:34 +03:00
parent 16c48fc045
commit 6485241a5c
1 changed files with 3 additions and 0 deletions

View File

@ -100,6 +100,9 @@ create_vm() {
# Set video memory to 16MB, so VirtualBox does not complain about "non-optimal" settings in the UI
execute VBoxManage modifyvm $name --rtcuseutc on --memory $memory_mb --cpus $cpu_cores --vram 16
# Disable audio totally because not supported in the Fuel
execute VBoxManage modifyvm $name --audio "none"
# Configure main network interface for management/PXE network
add_hostonly_adapter_to_vm $name 1 "${nic}"
execute VBoxManage modifyvm $name --boot1 disk --boot2 dvd --boot3 net --boot4 none