From 7b4074ea0cce7d2a676a7e7d71134dae5a00ded6 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 23 Mar 2026 10:38:17 +0000 Subject: [PATCH] Purge any remaining hwraid status daemons We stopped running them three years ago so i think they can go now. --- cookbooks/hardware/recipes/default.rb | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) 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 -- 2.39.5