containers-common-0.60.2-9.el10
- ensure required configurations for RHEL10 is present - Resolves: RHEL-58990 Signed-off-by: Jindrich Novy <jnovy@redhat.com>
This commit is contained in:
parent
8c577222ab
commit
fb6a99896b
@ -40,7 +40,7 @@ Epoch: 5
|
|||||||
# copr and koji builds.
|
# copr and koji builds.
|
||||||
# If you're reading this on dist-git, the version is automatically filled in by Packit.
|
# If you're reading this on dist-git, the version is automatically filled in by Packit.
|
||||||
Version: 0.60.2
|
Version: 0.60.2
|
||||||
Release: 8%{?dist}
|
Release: 9%{?dist}
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# for BuildRequires: go-md2man
|
# for BuildRequires: go-md2man
|
||||||
@ -141,6 +141,25 @@ for i in docs/*.5.md; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
ensure() {
|
||||||
|
if grep ^$2[[:blank:]].*= $1 > /dev/null
|
||||||
|
then
|
||||||
|
sed -i "s;^$2[[:blank:]]=.*;$2 = $3;" $1
|
||||||
|
else
|
||||||
|
if grep ^\#.*$2[[:blank:]].*= $1 > /dev/null
|
||||||
|
then
|
||||||
|
sed -i "/^#.*$2[[:blank:]].*=/a \
|
||||||
|
$2 = $3" $1
|
||||||
|
else
|
||||||
|
echo "$2 = $3" >> $1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# ensure required configurations for RHEL10 is present
|
||||||
|
ensure pkg/config/containers.conf runtime \"crun\"
|
||||||
|
ensure pkg/config/containers.conf log_driver \"file\"
|
||||||
|
|
||||||
# install config and policy files for registries
|
# install config and policy files for registries
|
||||||
install -dp %{buildroot}%{_sysconfdir}/containers/{certs.d,oci/hooks.d,systemd}
|
install -dp %{buildroot}%{_sysconfdir}/containers/{certs.d,oci/hooks.d,systemd}
|
||||||
install -dp %{buildroot}%{_sharedstatedir}/containers/sigstore
|
install -dp %{buildroot}%{_sharedstatedir}/containers/sigstore
|
||||||
@ -230,6 +249,10 @@ ln -s ../../../..%{_sysconfdir}/yum.repos.d/redhat.repo %{buildroot}%{_datadir}/
|
|||||||
%files extra
|
%files extra
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 30 2024 Jindrich Novy <jnovy@redhat.com> - 5:0.60.2-9
|
||||||
|
- ensure required configurations for RHEL10 is present
|
||||||
|
- Resolves: RHEL-58990
|
||||||
|
|
||||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 5:0.60.2-8
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 5:0.60.2-8
|
||||||
- Bump release for October 2024 mass rebuild:
|
- Bump release for October 2024 mass rebuild:
|
||||||
Resolves: RHEL-64018
|
Resolves: RHEL-64018
|
||||||
|
Loading…
Reference in New Issue
Block a user