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