Sha256: 476f6ddb6ea4ed82dd5d23c90c0ca43151e6cfc5879691f39a02a06b27196e3d
Contents?: true
Size: 393 Bytes
Versions: 9
Compression:
Stored size: 393 Bytes
Contents
# Spin 1 RHEL machine with wrong credentials 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-wrong-credentials" do |c| c.registration.username = 'wrong_username' c.registration.password = 'wrong_password' end end
Version data entries
9 entries across 7 versions & 1 rubygems