Skip to content

Commit

Permalink
Fix [REAMDE] missing in PCI device passthrough examples
Browse files Browse the repository at this point in the history
  • Loading branch information
petRUShka committed Feb 5, 2016
1 parent 6652f25 commit 7b156cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -534,10 +534,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.pci :bus => '0x06', slot => '0x12', function => '0x5'
libvirt.pci :bus => '0x06', :slot => '0x12', :function => '0x5'

# Add another one if it is neccessary
libvirt.pci :bus => '0x03', slot => '0x00', function => '0x0'
libvirt.pci :bus => '0x03', :slot => '0x00', :function => '0x0'
end
end
```
Expand Down

0 comments on commit 7b156cc

Please sign in to comment.