Fix bogus 'sscg' arguments

Related: RHEL-113443
This commit is contained in:
Vitezslav Crhonek 2026-01-28 16:46:28 +01:00
parent 1d7254a1b4
commit 9ca0bad995
2 changed files with 9 additions and 5 deletions

View File

@ -51,10 +51,10 @@ diff -up openwsman-2.8.1/etc/owsmangencert.sh.cmake.orig openwsman-2.8.1/etc/ows
+function selfsign_sscg()
+{
+ sscg --quiet \
+ --lifetime "${DAYS}" \
+ --cert-key-file "${KEYFILE}" \
+ --cert-file "${CERTFILE}" \
+ --ca-file "${CAFILE}"
+ --lifetime "$DAYS" \
+ --cert-key-file "$KEYFILE" \
+ --cert-file "$CERTFILE" \
+ --ca-file "$CAFILE"
+}
+
+function selfsign_openssl()

View File

@ -25,7 +25,7 @@
Name: openwsman
Version: 2.8.1
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Open source Implementation of WS-Management
License: BSD-3-Clause AND MIT
@ -413,6 +413,10 @@ fi
%endif
%changelog
* Wed Jan 28 2026 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.8.1-2
- Fix bogus 'sscg' arguments
Related: RHEL-113443
* Thu Oct 23 2025 Vitezslav Crhonek <vcrhonek@redhat.com> - 2.8.1-1
- Update to openwsman-2.8.1
RHEL-99191