Skip to content

Commit

Permalink
Merge pull request #2443 from candlepin/csnyder/update_vagrant_vms
Browse files Browse the repository at this point in the history
Update our fedora target to fedora32, default to f32
  • Loading branch information
jirihnidek authored Feb 15, 2021
2 parents 0f9dbe9 + 99b493b commit 343aa57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure("2") do |config|
"centos7" => "candlepin/subscription-manager-centos7",
"centos6" => "centos/6",
"debian9" => "debian/stretch64",
"fedora30" => "fedora/30-cloud-base",
"fedora32" => "fedora/32-cloud-base",
"opensuse42.2" => "opensuse/openSUSE-42.2-x86_64",
}

Expand Down Expand Up @@ -45,16 +45,15 @@ Vagrant.configure("2") do |config|
end
end

primary_vm = "centos7"
primary_vm = "fedora32"

config.vm.provider "libvirt" # prefer libvirt

# forward X11 by default
config.ssh.forward_x11 = true

# setup shared folder
config.vm.synced_folder ".", "/vagrant", type: "sshfs",
sshfs_opts_append: "-o nonempty"
config.vm.synced_folder ".", "/vagrant", type: "sshfs"

# Set up the hostmanager plugin to automatically configure host & guest hostnames
if Vagrant.has_plugin?("vagrant-hostmanager")
Expand Down Expand Up @@ -158,6 +157,7 @@ Vagrant.configure("2") do |config|
end
end


# PXE client
config.vm.define 'pxe-client', autostart: false do |host|
host.vm.hostname = 'pxe-client'
Expand Down

0 comments on commit 343aa57

Please sign in to comment.