]> git.openstreetmap.org Git - chef.git/commitdiff
Don't try and install hp-health on 22.04
authorTom Hughes <tom@compton.nu>
Mon, 27 Jun 2022 08:55:39 +0000 (09:55 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 27 Jun 2022 08:55:39 +0000 (09:55 +0100)
cookbooks/hardware/recipes/default.rb

index 751810a3e9faa5f63c98efafb6d6450230f7c8a0..49af1f52eb069d672839c0ec40ebb27f6cf1d864 100644 (file)
@@ -62,11 +62,13 @@ when "HP"
   package "hp-health" do
     action :install
     notifies :restart, "service[hp-health]"
+    only_if { node[:lsb][:release].to_f < 22.04 }
   end
 
   service "hp-health" do
     action [:enable, :start]
     supports :status => true, :restart => true
+    only_if { node[:lsb][:release].to_f < 22.04 }
   end
 
   if product.end_with?("Gen8", "Gen9")