Compare commits
No commits in common. "c9" and "c10s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/subscription-manager-rhsm-certificates-20220623.tar.gz
|
/subscription-manager-rhsm-certificates-20220425.tar.gz
|
||||||
|
/subscription-manager-rhsm-certificates-20220623.tar.gz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
f260b387a6ea46edfa0e83557a67362de1afa2cf SOURCES/subscription-manager-rhsm-certificates-20220623.tar.gz
|
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# subscription-manager-rhsm-certificates
|
||||||
|
|
||||||
|
The subscription-manager-rhsm-certificates package
|
8
gating.yaml
Normal file
8
gating.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-10
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: rhsmci.brew-build.tier1.functional}
|
||||||
|
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
SHA512 (subscription-manager-rhsm-certificates-20220623.tar.gz) = 8f3591dda293d9af2767fb4ded6ee033c31bb2881bb03ac5bb76dea1b39bbe3e02c1b028377d2547fefadeb1109231ca5cc196ac48245816ef5ad5292c0de393
|
@ -1,13 +1,13 @@
|
|||||||
Name: subscription-manager-rhsm-certificates
|
Name: subscription-manager-rhsm-certificates
|
||||||
Version: 20220623
|
Version: 20220623
|
||||||
Release: 1%{?dist}
|
Release: 6%{?dist}
|
||||||
Summary: Certificates required to communicate with a Red Hat Unified Entitlement Platform
|
Summary: Certificates required to communicate with a Red Hat Unified Entitlement Platform
|
||||||
URL: https://www.candlepinproject.org/
|
URL: https://www.candlepinproject.org/
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
%else
|
%else
|
||||||
License: GPLv2
|
License: GPL-2.0-only
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# How to create the source tarball:
|
# How to create the source tarball:
|
||||||
@ -48,6 +48,22 @@ make check
|
|||||||
%{_sysconfdir}/rhsm/ca/*.pem
|
%{_sysconfdir}/rhsm/ca/*.pem
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 20220623-6
|
||||||
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 20220623-5
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20220623-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20220623-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20220623-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Jun 23 2022 Jiri Hnidek <jhnidek@redhat.com> 20220623-1
|
* Thu Jun 23 2022 Jiri Hnidek <jhnidek@redhat.com> 20220623-1
|
||||||
- Fix issue with missing {?dist} in Release. (jhnidek@redhat.com)
|
- Fix issue with missing {?dist} in Release. (jhnidek@redhat.com)
|
||||||
|
|
9
tests/smoke/smoke.sh
Executable file
9
tests/smoke/smoke.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
# Check that both PEM files are installed and these files are really PEM files
|
||||||
|
file /etc/rhsm/ca/redhat-entitlement-authority.pem | grep -q "/etc/rhsm/ca/redhat-entitlement-authority.pem: PEM certificate"
|
||||||
|
file /etc/rhsm/ca/redhat-uep.pem | grep -q "/etc/rhsm/ca/redhat-uep.pem: PEM certificate"
|
||||||
|
|
12
tests/tests.yml
Normal file
12
tests/tests.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
- atomic
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tests:
|
||||||
|
- smoke:
|
||||||
|
dir: smoke
|
||||||
|
run: ./smoke.sh
|
||||||
|
|
Loading…
Reference in New Issue
Block a user