16 lines
311 B
Puppet
16 lines
311 B
Puppet
# Install Node.js
|
|
#
|
|
class nodejs {
|
|
|
|
case $::operatingsystem {
|
|
"centos","redhat","fedora": {
|
|
package { [ "nodejs", "npm" ]:
|
|
ensure => installed,
|
|
}
|
|
}
|
|
default: {
|
|
fail("nodejs not supported on ${::operatingsystem}")
|
|
}
|
|
}
|
|
|
|
}
|