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.
This commit is contained in:
Tomas Hozza 2022-07-29 16:23:43 +02:00 committed by Ondřej Budai
parent 036303694c
commit faf911cd21

View file

@ -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