mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
Add initial RPM spec file
This commit is contained in:
parent
7044858c2c
commit
728b5f3e48
51
scripts/cc-metric-collector.spec
Normal file
51
scripts/cc-metric-collector.spec
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
Name: cc-metric-collector
|
||||||
|
Version: 0.1
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Metric collection daemon from the ClusterCockpit suite
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: golang
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
|
||||||
|
Provides: %{name} = %{version}
|
||||||
|
|
||||||
|
%description
|
||||||
|
A simple web app
|
||||||
|
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
cd collectors
|
||||||
|
make
|
||||||
|
go build -v -o %{name}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -Dpm 0755 %{name} %{buildroot}%{_bindir}/%{name}
|
||||||
|
install -Dpm 0755 config.json %{buildroot}%{_sysconfdir}/%{name}/config.json
|
||||||
|
install -Dpm 644 scripts/%{name}.service %{buildroot}%{_unitdir}/%{name}.service
|
||||||
|
|
||||||
|
%check
|
||||||
|
# go test should be here... :)
|
||||||
|
|
||||||
|
%post
|
||||||
|
%systemd_post %{name}.service
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%systemd_preun %{name}.service
|
||||||
|
|
||||||
|
%files
|
||||||
|
%dir %{_sysconfdir}/%{name}
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{_unitdir}/%{name}.service
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/config.json
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
- Initial spec file
|
Loading…
Reference in New Issue
Block a user