README: Fix example on PCI passthrough

Was apparently copy/pasted from Input section.
This commit is contained in:
Felix Kaiser 2015-11-25 00:03:11 +01:00
parent 21f6ddd5ca
commit d5e340e9db

View File

@ -526,10 +526,10 @@ In that case `bus` is `0x03`, `slot` is `0x00` and `function` is `0x0`.
```ruby
Vagrant.configure("2") do |config|
config.vm.provider :libvirt do |libvirt|
libvirt.input :bus => '0x06', slot => '0x12', function => '0x5'
libvirt.pci :bus => '0x06', slot => '0x12', function => '0x5'
# Add another one if it is neccessary
libvirt.input :bus => '0x03', slot => '0x00', function => '0x0'
libvirt.pci :bus => '0x03', slot => '0x00', function => '0x0'
end
end
```