Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update our fedora target to fedora32, default to f32 #2443

Merged
merged 1 commit into from
Feb 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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