From 5d1c88b6146c269bd96191e02a0a77b12e56af24 Mon Sep 17 00:00:00 2001 From: Milan Lysonek Date: Tue, 6 Aug 2024 12:14:29 +0200 Subject: [PATCH] Fix missing tar command error in /per-rule tests --- per-rule/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/per-rule/test.py b/per-rule/test.py index 197e331b..968a48d7 100755 --- a/per-rule/test.py +++ b/per-rule/test.py @@ -77,6 +77,7 @@ def report_test_with_log(status, note, log_dir, rule_name, test_name): # install a qcow2-backed VM, so automatus.py can snapshot it # - use hardening-style partitions, automatus tests need them ks = virt.Kickstart(partitions=partitions.partitions) + ks.packages.append('tar') g.install(kickstart=ks, disk_format='qcow2') with util.get_content() as content_dir, g.booted():