Skip to content

Instantly share code, notes, and snippets.

@dustinmm80
Created December 16, 2014 22:21
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 dustinmm80/0b109e6d76fdbe7a86bf to your computer and use it in GitHub Desktop.
Save dustinmm80/0b109e6d76fdbe7a86bf to your computer and use it in GitHub Desktop.
SaltStack Tutorial - Boston DevOps Dec 17 2014
For the saltstack tutorial, just install the [latest vagrant](https://docs.vagrantup.com/v2/getting-started/index.html) and use the below Vagrantfile to build a new vagrant box:
`Vagrantfile`
```
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "shell", inline: <<-SHELL
curl -L https://bootstrap.saltstack.com | sudo bash -s -- -M git v2014.7.0
SHELL
end
```
`vagrant up`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment