Puppet Class: nodejs
- Inherits:
- nodejs::params
- Defined in:
- manifests/init.pp
Overview
Class: nodejs
Install NodeJS for Darwin
Examples
class { nodejs: }
Authors
Ryan Skoblenick <ryan@skoblenick.com>
Copyright
Copyright 2013 Ryan Skoblenick.
17 18 19 20 21 22 23 24 25 |
# File 'manifests/init.pp', line 17
class nodejs (
$version = $nodejs::params::version
) inherits nodejs::params {
anchor {'nodejs::begin': } ->
class {'nodejs::install': } ->
anchor {'nodejs::end': }
}
|