Vagrantfile #1

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • qemu/
  • centos/
  • centos7/
  • Vagrantfile
  • View
  • Commits
  • Open Download .zip Download (267 B)
Vagrant.configure(2) do |config|
  config.vm.box = "centos/7"

  config.vm.provider "qemu" do |qe|
    qe.arch = "x86_64"
    qe.machine = "q35"
    qe.cpu = "max"
    qe.net_device = "virtio-net-pci"
  qe.vm.network :forwarded_port, guest: 22, host: 1988

  end
end
# Change User Description Committed
#1 30597 Jen Bottom Copy up of work using the qemu plugin.