Merge pull request #6955 from hbokh/vagrant-libvirt-hvf
qemu: Add "hvf" as a libvirt driver
This commit is contained in:
commit
b88b5c9aaa
|
@ -39,7 +39,7 @@ func (p *LibVirtProvider) Process(ui packer.Ui, artifact packer.Artifact, dir st
|
||||||
// Convert domain type to libvirt driver
|
// Convert domain type to libvirt driver
|
||||||
var driver string
|
var driver string
|
||||||
switch domainType {
|
switch domainType {
|
||||||
case "none", "tcg":
|
case "none", "tcg", "hvf":
|
||||||
driver = "qemu"
|
driver = "qemu"
|
||||||
case "kvm":
|
case "kvm":
|
||||||
driver = domainType
|
driver = domainType
|
||||||
|
|
|
@ -142,3 +142,8 @@ The following Docker input artifacts are supported:
|
||||||
- `docker-import`
|
- `docker-import`
|
||||||
- `docker-tag`
|
- `docker-tag`
|
||||||
- `docker-push`
|
- `docker-push`
|
||||||
|
|
||||||
|
### QEMU/libvirt
|
||||||
|
|
||||||
|
The `libvirt` provider supports QEMU artifacts built using any these accelerators: none,
|
||||||
|
kvm, tcg, or hvf.
|
||||||
|
|
Loading…
Reference in New Issue