Forge Home

vagrant

Install vagrant and, optionally, vagrant boxes and plugins

14,299 downloads

14,299 latest version

3.6 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.0 (latest)
released May 9th 2014

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'emyl-vagrant', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add emyl-vagrant
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install emyl-vagrant --version 0.1.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

emyl/vagrant — version 0.1.0 May 9th 2014

Vagrant

Table of Contents

  1. Overview
  2. Module Description
  3. Setup
  4. Usage
  5. Limitations

Overview

Install vagrant and, optionally, boxes and plugins.

Module Description

Vagrant is a tool for building and distributing development environments.

Setup

What vagrant affects

  • vagrant package
  • vagrant boxes
  • vagrant plugins

Setup requirements

Since the module relies on some custom facts, you will need to setup pluginsync = true on both the master and client node's /etc/puppet/puppet.conf.

Beginning with vagrant

To begin using the vagrant module with default parameters:

include vagrant

Usage

Using the vagrant module consists predominantly in declaring classes that provide desired functionality and features.

vagrant

Install the vagrant package. If the version parameter is not specified, the latest version will be installed.

class { 'vagrant':
  version => '1.5.4'
}

vagrant::box

Add a vagrant box under the home directory of the specified user.

vagrant::box { 'hashicorp/precise64':
  box_provider => 'virtualbox',
  box_url      => undef,
  user         => 'vagrant'
}

vagrant::plugin

Add a vagrant plugin under the home directory of the specified user.

vagrant::plugin { 'vagrant-lxc': user => 'vagrant' }

Limitations

The user parameter of vagrant::box and vagrant::plugin is currently ignored on Windows systems (current user is assumed).