From 3fa753aa704c2d806046d083efe866ba39d87122 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 2 Dec 2022 10:53:50 +0000 Subject: [PATCH] Skip some hardware changes in test mode --- 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 e64a49b5a..6679bb178 100644 --- a/cookbooks/hardware/recipes/default.rb +++ b/cookbooks/hardware/recipes/default.rb @@ -63,6 +63,7 @@ when "HP", "HPE" execute "update-ilo" do action :nothing command "/usr/sbin/hponcfg -f /etc/ilo-defaults.xml" + not_if { kitchen? } end template "/etc/ilo-defaults.xml" do @@ -145,6 +146,7 @@ end units.sort.uniq.each do |unit| service "serial-getty@ttyS#{unit}" do action [:enable, :start] + not_if { kitchen? } end end -- 2.39.5