Forge Home

gvm

Paulo Suzart GVM module

14,174 downloads

8,807 latest version

1.9 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

  • 1.2.2 (latest)
  • 1.2.1
  • 1.1.0
  • 1.0.1
  • 1.0.0
  • 0.0.2
  • 0.0.1
released Jan 20th 2014

Start using this module

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

Add this module to your Puppetfile:

mod 'paulosuzart-gvm', '0.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add paulosuzart-gvm
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install paulosuzart-gvm --version 0.0.2

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
Tags: java, groovy, gvm, grails

Documentation

paulosuzart/gvm — version 0.0.2 Jan 20th 2014

paulosuzart/gvm

Module can be use to install GVM and also install required packages;

Usage

    class { 'gvm' :
      owner => $user_name,
    }
  • owner is the user name that will own the installation. From it the home of the user is assumed to be /home/$owner.

To install packages simply do:

    gvm::package { 'grails' :
      version   => '2.1.5',
      is_defult => true,
      owner     => $username
    }
  • version will make gvm::package to install the given version of the package
  • is_default will make this package as default if you want to install many versions
  • owner same as in class gvm

Limitations

Tested and mostly built to run with Ubuntu/Debian. Futher versions should add suport for Mac and other distributions.