cc-metric-collector/scripts/cc-metric-collector.spec

79 lines
2.3 KiB
RPMSpec
Raw Normal View History

2021-11-22 16:32:41 +01:00
Name: cc-metric-collector
Version: %{VERS}
2021-11-22 16:32:41 +01:00
Release: 1%{?dist}
Summary: Metric collection daemon from the ClusterCockpit suite
License: MIT
Source0: %{name}-%{version}.tar.gz
BuildRequires: go-toolset
# for internal LIKWID installation
BuildRequires: wget perl-Data-Dumper
2021-11-22 16:32:41 +01:00
Provides: %{name} = %{version}
%description
Metric collection daemon from the ClusterCockpit suite
2021-11-22 16:32:41 +01:00
%global debug_package %{nil}
%prep
%autosetup
%build
make
%install
2022-02-14 15:20:38 +01:00
install -Dpm 0750 %{name} %{buildroot}%{_sbindir}/%{name}
install -Dpm 0600 config.json %{buildroot}%{_sysconfdir}/%{name}/%{name}.json
2022-02-14 15:20:38 +01:00
install -Dpm 0600 collectors.json %{buildroot}%{_sysconfdir}/%{name}/collectors.json
install -Dpm 0600 sinks.json %{buildroot}%{_sysconfdir}/%{name}/sinks.json
install -Dpm 0600 receivers.json %{buildroot}%{_sysconfdir}/%{name}/receivers.json
install -Dpm 0600 router.json %{buildroot}%{_sysconfdir}/%{name}/router.json
install -Dpm 0644 scripts/%{name}.service %{buildroot}%{_unitdir}/%{name}.service
install -Dpm 0600 scripts/%{name}.config %{buildroot}%{_sysconfdir}/default/%{name}
2021-11-22 16:32:41 +01:00
%check
# go test should be here... :)
%pre
getent group clustercockpit >/dev/null || groupadd -r clustercockpit
getent passwd clustercockpit >/dev/null || \
useradd -r -g clustercockpit -d /nonexistent -s /sbin/nologin \
-c "Create system user and group for CC metric collector" clustercockpit
exit 0
2021-11-22 16:32:41 +01:00
%post
%systemd_post %{name}.service
%preun
%systemd_preun %{name}.service
%postun
if [ "$1" = "1" ]; then
getent passwd clustercockpit >/dev/null && userdel clustercockpit
getent group clustercockpit >/dev/null && groupdel clustercockpit
fi
exit 0
2021-11-22 16:32:41 +01:00
%files
%dir %{_sysconfdir}/%{name}
%{_sbindir}/%{name}
2021-11-22 16:32:41 +01:00
%{_unitdir}/%{name}.service
%{_sysconfdir}/default/%{name}
2022-02-14 15:20:38 +01:00
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/%{name}/%{name}.json
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/%{name}/collectors.json
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/%{name}/sinks.json
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/%{name}/receivers.json
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/%{name}/router.json
2021-11-22 16:32:41 +01:00
%changelog
2022-02-14 15:20:38 +01:00
* Mon Feb 14 2022 Thomas Gruber - 0.2
- Add component specific configuration files
- Add %attr to config files
2021-11-22 16:40:17 +01:00
* Mon Nov 22 2021 Thomas Gruber - 0.1
- Initial spec file