buildah-1.19.0-2.el9

- fix gating test issue with openssl cert
- Related: #1914884

Signed-off-by: Jindrich Novy <jnovy@redhat.com>
This commit is contained in:
Jindrich Novy 2021-01-14 09:21:35 +01:00
parent 5ecd530b0b
commit b577bcfb33
2 changed files with 7 additions and 2 deletions

View File

@ -19,7 +19,7 @@ go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl
Name: buildah Name: buildah
Version: 1.19.0 Version: 1.19.0
Release: 1%{?dist} Release: 2%{?dist}
Summary: A command line tool used for creating OCI Images Summary: A command line tool used for creating OCI Images
License: ASL 2.0 License: ASL 2.0
URL: https://%{name}.io URL: https://%{name}.io
@ -124,6 +124,10 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
%{_datadir}/%{name}/test %{_datadir}/%{name}/test
%changelog %changelog
* Thu Jan 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-2
- fix gating test issue with openssl cert
- Related: #1914884
* Tue Jan 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1 * Tue Jan 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1
- update to https://github.com/containers/buildah/releases/tag/v1.19.0 - update to https://github.com/containers/buildah/releases/tag/v1.19.0

View File

@ -24,7 +24,8 @@ start_registry() {
openssl req -newkey rsa:4096 -nodes -sha256 \ openssl req -newkey rsa:4096 -nodes -sha256 \
-keyout $AUTHDIR/domain.key -x509 -days 2 \ -keyout $AUTHDIR/domain.key -x509 -days 2 \
-out $AUTHDIR/domain.crt \ -out $AUTHDIR/domain.crt \
-subj "/C=US/ST=Foo/L=Bar/O=Red Hat, Inc./CN=localhost" -subj "/C=US/ST=Foo/L=Bar/O=Red Hat, Inc./CN=registry host certificate" \
-addext subjectAltName=DNS:localhost
fi fi
if [ ! -e $AUTHDIR/htpasswd ]; then if [ ! -e $AUTHDIR/htpasswd ]; then