Sha256: 27e31c6037ff2bdd1206006e3ff55c16ad1ecd6d22cea67445065bcedb8a958c

Contents?: true

Size: 628 Bytes

Versions: 6

Compression:

Stored size: 628 Bytes

Contents

# Spin 3 RHEL machines that will be registered

ENV['VAGRANT_DEFAULT_PROVIDER'] ||= 'libvirt'
ENV['VAGRANT_REGISTRATION_RHEL_BOX'] ||= 'rhel-7.0'

Vagrant.configure('2') do |config|
  config.vm.box = ENV['VAGRANT_REGISTRATION_RHEL_BOX']

  config.vm.define "rhel1-valid-credentials" do |c|
    c.registration.username = ENV['VAGRANT_REGISTRATION_USERNAME']
    c.registration.password = ENV['VAGRANT_REGISTRATION_PASSWORD']
  end

  config.vm.define "rhel2-valid-credentials" do |c|
    c.registration.org = ENV['VAGRANT_REGISTRATION_ORG']
    c.registration.activationkey = ENV['VAGRANT_REGISTRATION_ACTIVATIONKEY']
  end

end

Version data entries

6 entries across 4 versions & 1 rubygems

Version Path
vagrant-registration-0.0.19 tests/vagrantfiles/Vagrantfile.rhel_multi_machine
vagrant-registration-0.0.18 tests/vagrantfiles/Vagrantfile.rhel_multi_machine
vagrant-registration-0.0.18 vagrant-registration-0.0.16/tests/vagrantfiles/Vagrantfile.rhel_multi_machine
vagrant-registration-0.0.18 vagrant-registration-0.0.17/tests/vagrantfiles/Vagrantfile.rhel_multi_machine
vagrant-registration-0.0.17 tests/vagrantfiles/Vagrantfile.rhel_multi_machine
vagrant-registration-0.0.16 tests/vagrantfiles/Vagrantfile.rhel_multi_machine