From 7c82189b48a5428b312707753640e32dfea923a1 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 13 Oct 2023 17:42:49 +0200 Subject: [PATCH] Use a regular command instead of the puppet() command In the switch from beaker-puppet to beaker_puppet_helpers this was removed. Now it uses a regular shell command to achieve the same. --- spec/acceptance/netboot_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/acceptance/netboot_spec.rb b/spec/acceptance/netboot_spec.rb index 4517e111..2eb8025e 100644 --- a/spec/acceptance/netboot_spec.rb +++ b/spec/acceptance/netboot_spec.rb @@ -18,7 +18,7 @@ end describe 'ensure tftp client is installed' do - on hosts, puppet('resource', 'package', 'tftp', 'ensure=installed') + on hosts, 'puppet resource package tftp ensure=installed' end describe command("echo get /grub2/grub.cfg /tmp/downloaded_file | tftp #{fact('fqdn')}") do