Skip to content

Instantly share code, notes, and snippets.

@fljdin
Last active March 2, 2022 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fljdin/a16a0111b46775bb56fddf8ef6fd210b to your computer and use it in GitHub Desktop.
Save fljdin/a16a0111b46775bb56fddf8ef6fd210b to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.hostname = "centos7"
config.vm.provider "libvirt" do |libvirt|
libvirt.memory="1512"
libvirt.cpus=2
libvirt.disk_driver :cache => "none"
end
config.vm.provision "shell", inline: <<-SHELL
yum -y update
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment