Sha256: 388332d0886b8473b5609c009d2f4ff9b393fa97bc53becf7404b39b5f682e9c
Contents?: true
Size: 499 Bytes
Versions: 3
Compression:
Stored size: 499 Bytes
Contents
require_relative 'box' module VagrantMutate module Box class Kvm < Box def initialize(env, name, dir) super @provider_name = 'kvm' @supported_input = true @supported_output = true @image_format = 'qcow2' @image_name = 'box-disk1.img' end # TODO implement these methods # architecture, mac_address, cpus, memor, disk_interface # to support converting to providers besides libvirt end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-mutate-0.2.3 | lib/vagrant-mutate/box/kvm.rb |
vagrant-mutate-0.2.2 | lib/vagrant-mutate/box/kvm.rb |
vagrant-mutate-0.2.1 | lib/vagrant-mutate/box/kvm.rb |