]> 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 0e616ea19db9c227b3dbd95e5810e7b3ab6825c8..87af7d65655b9f18a5325822047f61c154071843 100644 (file)
 # limitations under the License.
 #
 
-package "nodejs"
-package "nodejs-legacy"
-package "npm"
-package "g++"
-package "make"
+package %w[
+  nodejs
+  npm
+  g++
+  make
+]
+
+if node[:lsb][:release].to_f < 18.04
+  package "nodejs-legacy"
+end