Sha256: 213c4116237a3957222e839c72075f2382f0eeca15172e0e1a791b8cab827048
Contents?: true
Size: 653 Bytes
Versions: 2
Compression:
Stored size: 653 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = 'ovirt3' config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt3/blob/master/example_box/dummy.box?raw=true' config.vm.hostname = 'asdf' config.vm.provider :ovirt3 do |ovirt| ovirt.url = "https://server.blindrage.local:443" ovirt.username = "admin@internal" ovirt.password = "^4zK>xxTX:HG2s<" ovirt.datacenter = "local_dc" ovirt.template = "vagrant-centos65" ovirt.cpus = 1 ovirt.memory = 512 # ovirt.ca_no_verify = true # ovirt.user_data =<<EOF #runcmd: # - yum install -y java-1.7.0-openjdk #EOF end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-ovirt3-1.9.3 | example_box/Vagrantfile |
vagrant-ovirt3-1.9.2 | example_box/Vagrantfile |