From: Tom Hughes Date: Mon, 23 Mar 2026 10:38:17 +0000 (+0000) Subject: Purge any remaining hwraid status daemons X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain Purge any remaining hwraid status daemons We stopped running them three years ago so i think they can go now. --- diff --git a/cookbooks/hardware/recipes/default.rb b/cookbooks/hardware/recipes/default.rb index 307c357fe..934c3559b 100644 --- a/cookbooks/hardware/recipes/default.rb +++ b/cookbooks/hardware/recipes/default.rb @@ -362,20 +362,8 @@ else end %w[cciss-vol-status mpt-status sas2ircu-status megaclisas-status aacraid-status].each do |status_package| - if status_packages.include?(status_package) - package status_package - - service "#{status_package}d" do - action [:stop, :disable] - end - - file "/etc/default/#{status_package}d" do - action :delete - end - else - package status_package do - action :purge - end + package status_package do + action :purge end end