]> 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 f6f054fe08b8cc9f8289334f62f3d7d5c8203601..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 "g++"
-package "make"
+package %w[
+  nodejs
+  npm
+  g++
+  make
+]
 
-package "nodejs-legacy" if node[:lsb][:release].to_f >= 14.04
+if node[:lsb][:release].to_f < 18.04
+  package "nodejs-legacy"
+end