Skip to content

Instantly share code, notes, and snippets.

@lorentzca
Created February 24, 2015 15:49
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 lorentzca/b2bd6c05d1bcd0843205 to your computer and use it in GitHub Desktop.
Save lorentzca/b2bd6c05d1bcd0843205 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "chef/centos-7.0"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provision "shell", inline: <<-SHELL
sudo yum update -y
sudo yum install -y \
cpio \
gcc \
git \
glibc-devel \
glibc-static \
golang \
gpg \
make \
realpath \
squashfs-tools
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment