fuel-ccp-installer/utils/packer/Vagrantfile-qemu.template
Sergii Golovatiuk c354cb8673 A large refactor of packer templates
- .gitignore added to remove packer_cache from index
- Documentation has been added with detailed explanation how to build
  the image, what was changed
- A structure change:
  * A new structure has one directory for ubuntu, debian. This allows to
    remove code duplication in bash scripts. Later, template for centos
    can be easily incorporated.
  * script directry contains post-processor scripts for all
    distributives
  * scripts/debian directory contains only changes specifig to Debian
    family (Debian, Ubuntu)
- packer templates
  * Code has been separated from variables.
  * virtualbox builder has been added

Change-Id: If96d86cead153019dddcffe2256b2d5ab9b41adf
Signed-off-by: Sergii Golovatiuk <sgolovatiuk@mirantis.com>
2016-08-01 11:36:53 +02:00

7 lines
119 B
Plaintext

Vagrant.configure("2") do |config|
config.vm.provider :libvirt do |domain|
domain.disk_bus = "virtio"
end
end