diff --git a/nodejs/manifests/init.pp b/nodejs/manifests/init.pp deleted file mode 100644 index 8383586..0000000 --- a/nodejs/manifests/init.pp +++ /dev/null @@ -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}") - } - } - -}