Puppet Class: nodejs::params
- Defined in:
- manifests/params.pp
Overview
Class: nodejs::params
This class defines default parameters used by the main module class nodejs. Operating Systems differences in names and paths are addressed here.
Variables:
Refer to nodejs class for the variables defined here.
Usage:
This class is not intended to be used directly. It may be imported or inherited by other classes.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/params.pp', line 15
class nodejs::params {
$install_dir = '/usr/local/node'
$target_dir = '/usr/local/bin'
$version = 'lts'
$make_install = false
$node_path = '/usr/local/node/node-default/lib/node_modules'
$cpu_cores = $::processorcount
$install_ruby = false
$instances = {}
$instances_to_remove = []
$download_timeout = 0
$build_deps = true
$nodejs_default_path = '/usr/local/node/node-default'
$source = undef
}
|