Version information
released May 10th 2014
This version is compatible with:
- Puppet Enterprise 3.2.x
- Puppet 3.x
- RedHat, Debian, Ubuntu, Darwin, Windows
Start using this module
Add this module to your Puppetfile:
mod 'mjanser-vagrant', '1.1.0'
Learn more about managing modules with a PuppetfileDocumentation
mjanser/vagrant — version 1.1.0 May 10th 2014
Vagrant module for Puppet
This module installs the latest version of Vagrant from http://www.vagrantup.com/downloads.html.
Description
This module uses $::operatingsystem and $::architecture to determine what package to install.
NOTE: Versions older than 1.4.0 are not supported by this module because the download URL was complexer then.
Currently supports:
- CentOS and Redhat (i386 and x86)
- Ubuntu and Debian (i386 and x86)
- Windows (not tested)
- Darwin (not tested)
Usage
Install latest version
include vagrant
Install 1.5.0
class { 'vagrant':
version => '1.5.0'
}
Install plugin
vagrant::plugin { 'vagrant-hostmanager':
user => 'myuser'
}
Install plugin in specific version
vagrant::plugin { 'vagrant-hostmanager':
user => 'myuser',
version => 0.8.0
}
The home directory of the user is generated with the prefix /home/ and the username. This can be overridden with the home option.
vagrant::plugin { 'vagrant-hostmanager':
user => 'myuser',
home => '/home/otheruser'
}
There are some more options which are the same as supported by the vagrant plugin command.
- prerelease
- source
- entry_point
Install bash completion
include vagrant::bash
Install sudo configuration
include vagrant::sudo
The MIT License (MIT) Copyright (c) 2013 Dennis Rowe Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.