]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nodejs/recipes/default.rb
Don't install nodejs-legacy on Ubuntu 18.04
[chef.git] / cookbooks / nodejs / recipes / default.rb
index 673b8acbf728b63f80a644ccfb0332e6b64a96c2..87af7d65655b9f18a5325822047f61c154071843 100644 (file)
@@ -8,7 +8,7 @@
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
 #
-#     http://www.apache.org/licenses/LICENSE-2.0
+#     https://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
 # limitations under the License.
 #
 
-package "nodejs"
-package "npm"
+package %w[
+  nodejs
+  npm
+  g++
+  make
+]
+
+if node[:lsb][:release].to_f < 18.04
+  package "nodejs-legacy"
+end