- add drone.yml - add makefile - add spec file - add vault intermediate/root ca files
31 lines
658 B
RPMSpec
31 lines
658 B
RPMSpec
Name: internal-ca-certificates
|
|
Version: 20240825
|
|
Release: 1%{?dist}
|
|
Summary: Internal CA Certificates
|
|
License: GPL
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
This package contains internal CA certificates.
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
mkdir -p %{buildroot}/etc/pki/ca-trust/source/anchors
|
|
cp -a %{_sourcedir}/certificates/*.crt %{buildroot}/etc/pki/ca-trust/source/anchors/
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
/etc/pki/ca-trust/source/anchors/*.crt
|
|
|
|
%post
|
|
update-ca-trust
|
|
|
|
%changelog
|
|
* Sun Aug 25 2024 Ben Vincent <ben@unkin.net> - 20240825-1
|
|
- Initial package
|