Skip to content

Instantly share code, notes, and snippets.

@kbond
Last active January 2, 2016 00:58
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 kbond/8226744 to your computer and use it in GitHub Desktop.
Save kbond/8226744 to your computer and use it in GitHub Desktop.
Vagrant Setup

Setup host machine

  1. Ensure VirtualBox and Vagrant are installed.

  2. Install Puppet:

    $ wget http://apt.puppetlabs.com/puppetlabs-release-precise.deb
    $ sudo dpkg -i puppetlabs-release-precise.deb
    $ sudo apt-get update
    $ sudo apt-get install puppet
    $ rm puppetlabs-release-precise.deb
  3. Install guest editions vagrant plugin:

    $ vagrant plugin install vagrant-vbguest
  4. Install NFS:

    $ sudo apt-get install nfs-kernel-server nfs-common
  5. Install puppet modules from Puppet Forge:

    $ puppet module install ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment