Skip to content

Instantly share code, notes, and snippets.

@cbergau
Last active August 29, 2015 14:06
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 cbergau/5401928919ae2abdd9ef to your computer and use it in GitHub Desktop.
Save cbergau/5401928919ae2abdd9ef to your computer and use it in GitHub Desktop.
# Initialize virtual machine with https://vagrantcloud.com/hashicorp/precise64
vagrant init hashicorp/precise64
# Create virtual machine and start it
vagrant up
# Connect (ssh auth with key file)
vagrant ssh -- -l vagrant
# Download Chef Server
wget https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chef-server_11.1.3-1_amd64.deb
# Install Chef Server
sudo dpkg --install ./chef-server_11.1.3-1_amd64.web
# Reconfigure Chef Server
sudo chef-server-ctl reconfigure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment