From 7402eb3bcbd0f90e0b5f823fca4e48d2f793930c Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Tue, 11 Aug 2026 13:37:29 +0100 Subject: [PATCH] hardware: do not install amsd on quetzal --- cookbooks/hardware/recipes/default.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cookbooks/hardware/recipes/default.rb b/cookbooks/hardware/recipes/default.rb index 329c93981..a83ea73e0 100644 --- a/cookbooks/hardware/recipes/default.rb +++ b/cookbooks/hardware/recipes/default.rb @@ -108,11 +108,13 @@ when "HP", "HPE" package "amsd" do action :install notifies :restart, "service[amsd]" + only_if { node[:hostname] != "quetzal" } # amsd is broken on quetzal, no SAS controller end service "amsd" do action [:enable, :start] supports :status => true, :restart => true + only_if { node[:hostname] != "quetzal" } # amsd is broken on quetzal, no SAS controller end end -- 2.47.3