Stop mixing tabs and spaces

This commit is contained in:
a1346054
2022-08-08 21:41:42 +00:00
parent 759a851428
commit fc996b795f
3 changed files with 9 additions and 9 deletions

View File

@@ -246,7 +246,7 @@ module VagrantPlugins
env[:ui].info(" -- Video Type: #{@video_type}")
env[:ui].info(" -- Video VRAM: #{@video_vram}")
env[:ui].info(" -- Video 3D accel: #{@video_accel3d}")
env[:ui].info(" -- Sound Type: #{@sound_type}")
env[:ui].info(" -- Sound Type: #{@sound_type}")
env[:ui].info(" -- Keymap: #{@keymap}")
env[:ui].info(" -- TPM Backend: #{@tpm_type}")
if @tpm_type == 'emulator'

View File

@@ -226,7 +226,7 @@
</graphics><% end -%>
<video>
<model type='<%= @video_type %>' vram='<%= @video_vram %>' heads='1'<% if not @video_accel3d %>/><% else %>>
<acceleration accel3d='yes'/>
<acceleration accel3d='yes'/>
</model><% end -%>
</video>
<%#End Video -%>
@@ -256,13 +256,13 @@
<hostdev mode='subsystem' type='usb'>
<source startupPolicy='<%= usb[:startupPolicy] || "mandatory" %>'>
<%- if usb[:vendor] -%>
<vendor id='<%= usb[:vendor] %>'/>
<vendor id='<%= usb[:vendor] %>'/>
<%- end -%>
<%- if usb[:product] -%>
<product id='<%= usb[:product] %>'/>
<product id='<%= usb[:product] %>'/>
<%- end -%>
<%- if usb[:bus] && usb[:device] -%>
<address bus='<%= usb[:bus] %>' device='<%= usb[:device] %>'/>
<address bus='<%= usb[:bus] %>' device='<%= usb[:device] %>'/>
<%- end -%>
</source>
</hostdev>