]> arthur.barton.de Git - netdata.git/blob - netdata.spec.in
lockdown web directory permissions and create registry directory
[netdata.git] / netdata.spec.in
1 %define contentdir %{_datadir}/netdata
2
3 # This is temporary and should eventually be resolved. This bypasses
4 # the default rhel __os_install_post which throws a python compile
5 # error.
6 %define __os_install_post %{nil}
7
8 #
9 # Conditional build:
10 %bcond_without  systemd  # systemd
11 %bcond_with     nfacct   # build with nfacct plugin
12
13 %if 0%{?fedora} || 0%{?rhel} >= 7
14 %else
15 %undefine       with_systemd
16 %endif
17
18 Summary:        Real-time performance monitoring, done right
19 Name:           @PACKAGE_NAME@
20 Version:        @PACKAGE_RPM_VERSION@
21 Release:        @PACKAGE_RPM_RELEASE@%{?release_suffix}%{?dist}
22 License:        GPL v3+
23 Group:          Applications/System
24 Source0:        http://firehol.org/download/netdata/releases/v@PACKAGE_VERSION@/%{name}-@PACKAGE_VERSION@.tar.xz
25 URL:            http://netdata.firehol.org/
26 BuildRequires:  pkgconfig
27 BuildRequires:  xz
28 BuildRequires:  zlib-devel
29
30 # Packages can be found in the EPEL repo
31 %if %{with nfacct}
32 BuildRequires:  libmnl-devel
33 BuildRequires:  libnetfilter_acct-devel
34 %endif
35
36 Requires(pre): /usr/sbin/groupadd
37 Requires(pre): /usr/sbin/useradd
38
39 %if %{with systemd}
40 Requires(preun):  systemd-units
41 Requires(postun): systemd-units
42 Requires(post):   systemd-units
43 %else
44 Requires(post):   chkconfig
45 %endif
46
47 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
48
49 %description
50 netdata is the fastest way to visualize metrics. It is a resource
51 efficient, highly optimized system for collecting and visualizing any
52 type of realtime timeseries data, from CPU usage, disk activity, SQL
53 queries, API calls, web site visitors, etc.
54
55 netdata tries to visualize the truth of now, in its greatest detail,
56 so that you can get insights of what is happening now and what just
57 happened, on your systems and applications.
58
59 %prep
60 %setup -q -n %{name}-@PACKAGE_VERSION@
61
62 %build
63 %configure \
64         --with-zlib \
65         --with-math \
66         %{?with_nfacct:--enable-plugin-nfacct} \
67         --with-user=netdata
68 %{__make} %{?_smp_mflags}
69
70 %install
71 rm -rf $RPM_BUILD_ROOT
72 %{__make} %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install
73
74 find $RPM_BUILD_ROOT -name .keep -print0 | xargs --null --no-run-if-empty rm
75
76 install -m 644 -p system/netdata.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
77
78 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
79 install -m 644 -p system/netdata.logrotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/%{name}
80
81 %if %{with systemd}
82 install -d $RPM_BUILD_ROOT%{_unitdir}
83 install -m 644 -p system/netdata.service $RPM_BUILD_ROOT%{_unitdir}/netdata.service
84 %else
85 # install SYSV init stuff
86 mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
87 install -m755 system/netdata-init-d \
88         $RPM_BUILD_ROOT/etc/rc.d/init.d/netdata
89 %endif
90
91 %if %{with systemd}
92 %pre
93 # Add the "netdata" user
94 /usr/sbin/groupadd -r netdata 2> /dev/null || :
95 /usr/sbin/useradd -c "netdata" -g netdata \
96         -s /sbin/nologin -r -d %{contentdir} netdata 2> /dev/null || :
97
98 %post
99 %systemd_post netdata.service
100
101 %preun
102 %systemd_preun netdata.service
103
104 %postun
105 %systemd_postun_with_restart netdata.service
106 %else
107 %pre
108 # Add the "netdata" user
109 getent group netdata >/dev/null || groupadd -r netdata
110 getent passwd netdata >/dev/null || \
111   useradd -r -g netdata -s /sbin/nologin \
112     -d %{contentdir} -c "netdata" netdata
113 exit 0
114
115 %post
116 # Register the netdata service
117 /sbin/chkconfig --add netdata
118 # Start the netdata service
119 /sbin/service netdata start
120
121 %preun
122 if [ $1 = 0 ]; then
123         /sbin/service netdata stop > /dev/null 2>&1
124         /sbin/chkconfig --del netdata
125 fi
126 %endif
127
128 %clean
129 rm -rf $RPM_BUILD_ROOT
130
131 %files
132 %defattr(-,root,root)
133
134 %dir %{_sysconfdir}/%{name}
135 %config(noreplace) %{_sysconfdir}/%{name}/*.conf
136 %config(noreplace) %{_sysconfdir}/%{name}/python.d/*.conf
137 %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
138
139 %{_libexecdir}/%{name}
140 %{_sbindir}/%{name}
141
142 %attr(0700,netdata,netdata) %dir %{_localstatedir}/cache/%{name}
143 %attr(0700,netdata,netdata) %dir %{_localstatedir}/log/%{name}
144 %attr(0700,netdata,netdata) %dir %{_localstatedir}/lib/%{name}
145 %attr(0700,netdata,netdata) %dir %{_localstatedir}/lib/%{name}/registry
146
147 %dir %{_datadir}/%{name}
148 %attr(0644,root,netdata,0755) %{_datadir}/%{name}/web
149
150 %if %{with systemd}
151 %{_unitdir}/netdata.service
152 %else
153 %{_sysconfdir}/rc.d/init.d/netdata
154 %endif
155
156 %changelog
157 * Tue Jul 26 2016 Jason Barnett <J@sonBarnett.com> - 1.2.0-2
158 - Added support for EL6
159 - Corrected several Requires statements
160 - Changed default to build without nfacct
161 - Removed --docdir from configure
162 * Mon May 16 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.2.0-1
163 - netdata is now 30% faster.
164 - netdata now has a registry (my-netdata menu on the dashboard).
165 - netdata now monitors Linux containers.
166 - Several more improvements, new features and bugfixes.
167 * Wed Apr 20 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.1.0-1
168 - Several new features (IPv6, SYNPROXY, Users, Users Groups).
169 - A lot of bug fixes and optimizations.
170 * Tue Mar 22 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.0.0-1
171 - First public release.
172 * Sun Nov 15 2015 Alon Bar-Lev <alonbl@redhat.com> - 0.0.0-1
173 - Initial add.