From faf911cd21917d5c1286c702d1af5edd62373d00 Mon Sep 17 00:00:00 2001 From: Tomas Hozza Date: Fri, 29 Jul 2022 16:23:43 +0200 Subject: [PATCH] provision.sh: don't do any verification The provision tools was calling to the Weldr API using a CLI client to do a basic verification of the provisioned software. This is however not practical nor needed. Eventually, we may want to not enable the Weldr API socket when testing scenarios related to the Service, to make it more realistic. Another reason to not do it is that test cases which are using this script to provision the software are doing the actual verification, so this just duplicates it. --- tools/provision.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/provision.sh b/tools/provision.sh index a3848855c..04a05e9f7 100755 --- a/tools/provision.sh +++ b/tools/provision.sh @@ -146,10 +146,3 @@ sudo systemctl start osbuild-composer-api.socket # test case is supposed to run on a pristine machine. However, this is # currently not true on Schutzbot sudo systemctl try-restart osbuild-composer - -# Basic verification -sudo composer-cli status show -sudo composer-cli sources list -for SOURCE in $(sudo composer-cli sources list); do - sudo composer-cli sources info "$SOURCE" -done