]> arthur.barton.de Git - netdata.git/commitdiff
spec: install systemd unit
authorAlon Bar-Lev <alon.barlev@gmail.com>
Sat, 2 Apr 2016 16:36:38 +0000 (19:36 +0300)
committerAlon Bar-Lev <alon.barlev@gmail.com>
Sat, 2 Apr 2016 20:27:01 +0000 (23:27 +0300)
Thanks-To: sketch242 <github@rednsx.org>
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
netdata.spec.in

index 53841acdd46550cd3162cc9f60dcd9a230efa1dc..507806ba8b3dd698257d6d027565ce4068cd9628 100644 (file)
@@ -1,3 +1,9 @@
+%if 0%{?fedora} || 0%{?rhel} >= 7
+%global do_systemd 1
+%else
+%global do_systemd 0
+%endif
+
 Summary:       Linux real time system monitoring, over the web
 Name:          @PACKAGE_NAME@
 Version:       @PACKAGE_RPM_VERSION@
@@ -14,6 +20,12 @@ Requires:    zlib
 BuildRequires: libnetfilter_acct-devel
 Requires:      libnetfilter_acct
 %endif
+%if 0%{do_systemd}
+BuildRequires:         systemd
+Requires(post):                systemd
+Requires(preun):       systemd
+Requires(postun):      systemd
+%endif
 
 BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -24,6 +36,15 @@ Real-time performance monitoring, in the greatest possible detail!
 getent group netdata > /dev/null || groupadd -r netdata
 getent passwd netdata > /dev/null || useradd -r -g netdata -c netdata -s /sbin/nologin -d / netdata
 
+%if 0%{do_systemd}
+%post
+%systemd_post netdata.service
+%preun
+%systemd_preun netdata.service
+%postun
+%systemd_postun_with_restart netdata.service
+%endif
+
 %global ovirt_create_user_engine \
 %_ovirt_create_user %{engine_user} %{engine_uid} %{engine_group} %{engine_gid} "%{ovirt_user_description}" %{engine_state}
 
@@ -48,6 +69,11 @@ rm -rf "%{buildroot}"
 make %{?_smp_mflags} install DESTDIR="%{buildroot}"
 find "%{buildroot}" -name .keep -exec rm {} \;
 
+%if 0%{do_systemd}
+install -m 0755 -d "%{buildroot}/%{_unitdir}"
+install -m 0644 system/netdata.service "%{buildroot}/%{_unitdir}"
+%endif
+
 %files
 %attr(-, netdata, netdata) %dir %{_localstatedir}/cache/%{name}/
 %attr(-, netdata, netdata) %dir %{_localstatedir}/log/%{name}/
@@ -56,6 +82,10 @@ find "%{buildroot}" -name .keep -exec rm {} \;
 %{_libexecdir}/%{name}/
 %{_sbindir}/%{name}
 
+%if 0%{do_systemd}
+%{_unitdir}/netdata.service
+%endif
+
 %changelog
 * Tue Mar 22 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.0.0-1
 - First public release.