
24 Jun
2020
24 Jun
'20
2:14 p.m.
On Wed, 2020-06-24 at 18:11 +0100, Daniel P. Berrangé wrote:
+++ b/ci/containers/refresh @@ -0,0 +1,22 @@ +#!/bin/sh + +if test -z "$1" +then + echo "syntax: $0 PATH-TO-LCITOOL" + exit 1 +fi + +LCITOOL=$1 + +if ! test -x "$LCITOOL" +then + echo "$LCITOOL is not executable" + exit 1 +fi + +HOSTS=$($LCITOOL hosts | grep -v -E '(freebsd|centos-8|opensuse)')
You need to exclude CentOS Stream as well, and drop the corresponding Dockerfile. With that fixed, Reviewed-by: Andrea Bolognani <abologna@redhat.com> -- Andrea Bolognani / Red Hat / Virtualization