Removed nodejs module because the yum repository seems to be dead

This commit is contained in:
Ossi Salmi 2012-12-14 12:02:45 +02:00
parent 701894aa09
commit fbebba80b8

View file

@ -1,22 +0,0 @@
# Install node.js.
#
class nodejs {
case $::operatingsystem {
"centos","redhat": {
yum::repo { "nodejs":
mirrorlist => "http://nodejs.tchol.org/mirrors/nodejs-stable-el\$releasever",
gpgkey => "http://nodejs.tchol.org/stable/RPM-GPG-KEY-tchol",
}
package { [ "nodejs", "nodejs-compat-symlinks", "npm" ]:
ensure => installed,
require => Yum::Repo["nodejs"],
}
}
default: {
fail("nodejs not supported on ${::operatingsystem}")
}
}
}