netdata.spec.in 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. # SPDX-License-Identifier: GPL-3.0-or-later
  2. %global contentdir %{_datadir}/netdata
  3. %global version @PACKAGE_VERSION@
  4. #TODO: Temporary fix for the build-id error during go.d plugin set up
  5. %global _missing_build_ids_terminate_build 0
  6. # XXX: We are using automatic `Requires:` generation for libraries
  7. # whenever possible, DO NOT LIST LIBRARY DEPENDENCIES UNLESS THE RESULTANT
  8. # PACKAGE IS BROKEN WITHOUT THEM.
  9. AutoReqProv: yes
  10. %if "@HAVE_LIBBPF@" == "1"
  11. %global have_bpf 1
  12. %else
  13. %global have_bpf 0
  14. %endif
  15. # This is temporary and should eventually be resolved. This bypasses
  16. # the default rhel __os_install_post which throws a python compile
  17. # error.
  18. %global __os_install_post %{nil}
  19. # Mitigate the cross-distro mayhem by strictly defining the libexec destination
  20. %define _prefix /usr
  21. %define _sysconfdir /etc
  22. %define _localstatedir /var
  23. %define _libexecdir /usr/libexec
  24. %define _libdir /usr/lib
  25. # Redefine centos_ver to standardize on a single macro
  26. %{?rhel:%global centos_ver %rhel}
  27. #
  28. # Conditional build:
  29. %bcond_without systemd # systemd
  30. %bcond_with netns # build with netns support (cgroup-network)
  31. %if 0%{?fedora} || 0%{?rhel} >= 7 || 0%{?suse_version} >= 1140
  32. %else
  33. %undefine with_systemd
  34. %undefine with_netns
  35. %endif
  36. %if %{with systemd}
  37. %if 0%{?suse_version}
  38. %global netdata_initd_buildrequires \
  39. BuildRequires: systemd-rpm-macros \
  40. %{nil}
  41. %global netdata_initd_requires \
  42. %{?systemd_requires} \
  43. %{nil}
  44. %global netdata_init_post %service_add_post netdata.service \
  45. /sbin/service netdata restart > /dev/null 2>&1 \
  46. %{nil}
  47. %global netdata_init_preun %service_del_preun netdata.service \
  48. /sbin/service netdata stop > /dev/null 2>&1 \
  49. %{nil}
  50. %global netdata_init_postun %service_del_postun netdata.service
  51. %else
  52. %global netdata_initd_buildrequires \
  53. BuildRequires: systemd
  54. %global netdata_initd_requires \
  55. Requires(preun): systemd-units \
  56. Requires(postun): systemd-units \
  57. Requires(post): systemd-units \
  58. %{nil}
  59. %global netdata_init_post %systemd_post netdata.service \
  60. /usr/bin/systemctl enable netdata.service \
  61. /usr/bin/systemctl daemon-reload \
  62. /usr/bin/systemctl restart netdata.service \
  63. %{nil}
  64. %global netdata_init_preun %systemd_preun netdata.service
  65. %global netdata_init_postun %systemd_postun_with_restart netdata.service
  66. %endif
  67. %else
  68. %global netdata_initd_buildrequires %{nil}
  69. %global netdata_initd_requires \
  70. Requires(post): chkconfig \
  71. %{nil}
  72. %global netdata_init_post \
  73. /sbin/chkconfig --add netdata \
  74. /sbin/service netdata restart > /dev/null 2>&1 \
  75. %{nil}
  76. %global netdata_init_preun %{nil} \
  77. if [ $1 = 0 ]; then \
  78. /sbin/service netdata stop > /dev/null 2>&1 \
  79. /sbin/chkconfig --del netdata \
  80. fi \
  81. %{nil}
  82. %global netdata_init_postun %{nil} \
  83. if [ $1 != 0 ]; then \
  84. /sbin/service netdata condrestart 2>&1 > /dev/null \
  85. fi \
  86. %{nil}
  87. %endif
  88. Summary: Real-time performance monitoring, done right!
  89. Name: netdata
  90. Version: %{version}
  91. Release: 1%{?dist}
  92. License: GPLv3+
  93. Group: Applications/System
  94. Source0: https://github.com/netdata/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
  95. URL: http://my-netdata.io
  96. # Remove conflicting EPEL packages
  97. Obsoletes: %{name}-conf
  98. Obsoletes: %{name}-data
  99. # #####################################################################
  100. # Core build/install/runtime dependencies
  101. # #####################################################################
  102. # Build dependencies
  103. #
  104. BuildRequires: gcc
  105. BuildRequires: gcc-c++
  106. BuildRequires: make
  107. BuildRequires: git-core
  108. BuildRequires: autoconf
  109. %if 0%{?fedora} || 0%{?rhel} >= 7 || 0%{?suse_version} >= 1140
  110. BuildRequires: autoconf-archive
  111. BuildRequires: autogen
  112. %endif
  113. BuildRequires: automake
  114. BuildRequires: cmake
  115. BuildRequires: pkgconfig
  116. BuildRequires: curl
  117. BuildRequires: findutils
  118. BuildRequires: zlib-devel
  119. BuildRequires: libuuid-devel
  120. BuildRequires: libuv-devel >= 1
  121. BuildRequires: openssl-devel
  122. %if 0%{?suse_version}
  123. BuildRequires: judy-devel
  124. BuildRequires: liblz4-devel
  125. BuildRequires: libjson-c-devel
  126. %else
  127. %if 0%{?fedora}
  128. BuildRequires: Judy-devel
  129. BuildRequires: lz4-devel
  130. BuildRequires: json-c-devel
  131. %else
  132. BuildRequires: lz4-devel
  133. BuildRequires: json-c-devel
  134. %endif
  135. %endif
  136. # Core build requirements for service install
  137. %{netdata_initd_buildrequires}
  138. # Runtime dependencies
  139. #
  140. Requires: python
  141. # Core requirements for the install to succeed
  142. Requires(pre): /usr/sbin/groupadd
  143. Requires(pre): /usr/sbin/useradd
  144. %{netdata_initd_requires}
  145. # #####################################################################
  146. # Functionality-dependent package dependencies
  147. # #####################################################################
  148. # Note: Some or all of the Packages may be found in the EPEL repo,
  149. # rather than the standard ones
  150. # nfacct plugin dependencies
  151. BuildRequires: libmnl-devel
  152. %if 0%{?fedora} || 0%{?suse_version} >= 1140
  153. BuildRequires: libnetfilter_acct-devel
  154. %endif
  155. # end nfacct plugin dependencies
  156. # freeipmi plugin dependencies
  157. BuildRequires: freeipmi-devel
  158. # end - freeipmi plugin dependencies
  159. # CUPS plugin dependencies
  160. %if 0%{?centos_ver} != 6 && 0%{?centos_ver} != 7
  161. BuildRequires: cups-devel >= 1.7
  162. %endif
  163. # end - cups plugin dependencies
  164. # Prometheus remote write dependencies
  165. BuildRequires: snappy-devel
  166. BuildRequires: protobuf-devel
  167. %if 0%{?suse_version}
  168. BuildRequires: libprotobuf-c-devel
  169. %else
  170. BuildRequires: protobuf-c-devel
  171. %endif
  172. # end - prometheus remote write dependencies
  173. # #####################################################################
  174. # End of dependency management configuration
  175. # #####################################################################
  176. %description
  177. netdata is the fastest way to visualize metrics. It is a resource
  178. efficient, highly optimized system for collecting and visualizing any
  179. type of realtime timeseries data, from CPU usage, disk activity, SQL
  180. queries, API calls, web site visitors, etc.
  181. netdata tries to visualize the truth of now, in its greatest detail,
  182. so that you can get insights of what is happening now and what just
  183. happened, on your systems and applications.
  184. %prep
  185. %setup -q -n %{name}-%{version}
  186. export CFLAGS="${CFLAGS} -fPIC" && ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-mosquitto.sh ${RPM_BUILD_DIR}/%{name}-%{version}
  187. export CFLAGS="${CFLAGS} -fPIC" && ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-lws.sh ${RPM_BUILD_DIR}/%{name}-%{version}
  188. # Only bundle libJudy if this isn't Fedora or SUSE
  189. %if 0%{!?fedora:1} && 0%{!?suse_version:1}
  190. export CFLAGS="${CFLAGS} -fPIC" && ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-judy.sh ${RPM_BUILD_DIR}/%{name}-%{version}
  191. %endif
  192. %if 0%{?have_bpf}
  193. export CFLAGS="${CFLAGS} -fPIC" && ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-libbpf.sh ${RPM_BUILD_DIR}/%{name}-%{version}
  194. %endif
  195. %build
  196. # Conf step
  197. autoreconf -ivf
  198. %configure \
  199. %if 0%{!?fedora:1} && 0%{!?suse_version:1}
  200. --with-libJudy=externaldeps/libJudy \
  201. %endif
  202. --prefix="%{_prefix}" \
  203. --sysconfdir="%{_sysconfdir}" \
  204. --localstatedir="%{_localstatedir}" \
  205. --libexecdir="%{_libexecdir}" \
  206. --libdir="%{_libdir}" \
  207. --with-zlib \
  208. --with-math \
  209. --with-user=netdata \
  210. # Build step
  211. %{__make} %{?_smp_mflags}
  212. %install
  213. # ###########################################################
  214. # Clear the directory, if already exists and install
  215. rm -rf "${RPM_BUILD_ROOT}"
  216. %{__make} %{?_smp_mflags} DESTDIR="${RPM_BUILD_ROOT}" install
  217. install -m 644 -p system/netdata.conf "${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}"
  218. # ###########################################################
  219. # logrotate settings
  220. install -m 755 -d "${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d"
  221. install -m 644 -p system/netdata.logrotate "${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/%{name}"
  222. # ###########################################################
  223. # Install freeipmi
  224. install -m 4750 -p freeipmi.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/freeipmi.plugin"
  225. # ###########################################################
  226. # Install apps.plugin
  227. install -m 4750 -p apps.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/apps.plugin"
  228. # ###########################################################
  229. # Install perf.plugin
  230. install -m 4750 -p perf.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/perf.plugin"
  231. # ###########################################################
  232. # Install ebpf.plugin
  233. %if 0%{?have_bpf}
  234. install -m 4750 -p ebpf.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/ebpf.plugin"
  235. %endif
  236. # ###########################################################
  237. # Install cups.plugin
  238. %if 0%{?centos_ver} != 6 && 0%{?centos_ver} != 7
  239. install -m 0750 -p cups.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/cups.plugin"
  240. %endif
  241. # ###########################################################
  242. # Install slabinfo.plugin
  243. install -m 4750 -p slabinfo.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/slabinfo.plugin"
  244. # ###########################################################
  245. # Install cache and log directories
  246. install -m 755 -d "${RPM_BUILD_ROOT}%{_localstatedir}/cache/%{name}"
  247. install -m 755 -d "${RPM_BUILD_ROOT}%{_localstatedir}/log/%{name}"
  248. # ###########################################################
  249. # Install registry directory
  250. install -m 755 -d "${RPM_BUILD_ROOT}%{_localstatedir}/lib/%{name}/registry"
  251. # ###########################################################
  252. # Install netdata service
  253. %if %{with systemd}
  254. install -m 755 -d "${RPM_BUILD_ROOT}%{_unitdir}"
  255. install -m 644 -p system/netdata.service "${RPM_BUILD_ROOT}%{_unitdir}/netdata.service"
  256. %else
  257. # install SYSV init stuff
  258. install -d "${RPM_BUILD_ROOT}/etc/rc.d/init.d"
  259. install -m 755 system/netdata-init-d \
  260. "${RPM_BUILD_ROOT}/etc/rc.d/init.d/netdata"
  261. %endif
  262. # ############################################################
  263. # Package Go within netdata (TBD: Package it separately)
  264. safe_sha256sum() {
  265. # Within the contexct of the installer, we only use -c option that is common between the two commands
  266. # We will have to reconsider if we start non-common options
  267. if command -v sha256sum >/dev/null 2>&1; then
  268. sha256sum $@
  269. elif command -v shasum >/dev/null 2>&1; then
  270. shasum -a 256 $@
  271. else
  272. fatal "I could not find a suitable checksum binary to use"
  273. fi
  274. }
  275. download_go() {
  276. url="${1}"
  277. dest="${2}"
  278. if command -v curl >/dev/null 2>&1; then
  279. curl -sSL --connect-timeout 10 --retry 3 "${url}" > "${dest}"
  280. elif command -v wget >/dev/null 2>&1; then
  281. wget -T 15 -O - "${url}" > "${dest}"
  282. else
  283. echo >&2
  284. echo >&2 "Downloading go.d plugin from '${url}' failed because of missing mandatory packages."
  285. echo >&2 "Either add packages or disable it by issuing '--disable-go' in the installer"
  286. echo >&2
  287. exit 1
  288. fi
  289. }
  290. install_go() {
  291. # When updating this value, ensure correct checksums in packaging/go.d.checksums
  292. GO_PACKAGE_VERSION="$(cat packaging/go.d.version)"
  293. ARCH_MAP=(
  294. 'i386::386'
  295. 'i686::386'
  296. 'x86_64::amd64'
  297. 'aarch64::arm64'
  298. 'armv64::arm64'
  299. 'armv6l::arm'
  300. 'armv7l::arm'
  301. 'armv5tel::arm'
  302. )
  303. if [ -z "${NETDATA_DISABLE_GO+x}" ]; then
  304. echo >&2 "Install go.d.plugin"
  305. ARCH=$(uname -m)
  306. OS=$(uname -s | tr '[:upper:]' '[:lower:]')
  307. for index in "${ARCH_MAP[@]}" ; do
  308. KEY="${index%%::*}"
  309. VALUE="${index##*::}"
  310. if [ "$KEY" = "$ARCH" ]; then
  311. ARCH="${VALUE}"
  312. break
  313. fi
  314. done
  315. tmp=$(mktemp -d /tmp/netdata-go-XXXXXX)
  316. GO_PACKAGE_BASENAME="go.d.plugin-${GO_PACKAGE_VERSION}.${OS}-${ARCH}.tar.gz"
  317. download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/${GO_PACKAGE_BASENAME}" "${tmp}/${GO_PACKAGE_BASENAME}"
  318. download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/config.tar.gz" "${tmp}/config.tar.gz"
  319. if [ ! -f "${tmp}/${GO_PACKAGE_BASENAME}" ] || [ ! -f "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/${GO_PACKAGE_BASENAME}" ]; then
  320. echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer"
  321. echo >&2
  322. return 1
  323. fi
  324. grep "${GO_PACKAGE_BASENAME}\$" "packaging/go.d.checksums" > "${tmp}/sha256sums.txt" 2>/dev/null
  325. grep "config.tar.gz" "packaging/go.d.checksums" >> "${tmp}/sha256sums.txt" 2>/dev/null
  326. # Checksum validation
  327. if ! (cd "${tmp}" && safe_sha256sum -c "sha256sums.txt"); then
  328. echo >&2 "go.d plugin checksum validation failure."
  329. echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer"
  330. echo >&2
  331. echo "go.d.plugin package files checksum validation failed."
  332. exit 1
  333. fi
  334. # Install files
  335. tar -xf "${tmp}/config.tar.gz" -C "${RPM_BUILD_ROOT}%{_libdir}/%{name}/conf.d/"
  336. tar xf "${tmp}/${GO_PACKAGE_BASENAME}"
  337. mv "${GO_PACKAGE_BASENAME/\.tar\.gz/}" "go.d.plugin"
  338. rm -rf "${tmp}"
  339. fi
  340. return 0
  341. }
  342. install_go
  343. install -m 0640 -p go.d.plugin "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/go.d.plugin"
  344. ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-dashboard.sh ${RPM_BUILD_DIR}/%{name}-%{version} ${RPM_BUILD_ROOT}%{_datadir}/%{name}/web
  345. %if 0%{?have_bpf}
  346. ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-ebpf.sh ${RPM_BUILD_DIR}/%{name}-%{version} ${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d
  347. %endif
  348. %pre
  349. # User/Group creations, as needed
  350. getent group netdata >/dev/null || groupadd -r netdata
  351. getent group docker >/dev/null || groupadd -r docker
  352. getent passwd netdata >/dev/null || \
  353. useradd -r -g netdata -G docker -s /sbin/nologin \
  354. -d %{contentdir} -c "netdata" netdata
  355. %post
  356. %{netdata_init_post}
  357. %preun
  358. %{netdata_init_preun}
  359. %postun
  360. %{netdata_init_postun}
  361. %clean
  362. rm -rf "${RPM_BUILD_ROOT}"
  363. %files
  364. %doc README.md
  365. %{_sysconfdir}/%{name}
  366. %config(noreplace) %{_sysconfdir}/%{name}/netdata.conf
  367. %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
  368. %dir %{_libdir}/%{name}
  369. %dir %{_datadir}/%{name}
  370. %{_libdir}/%{name}
  371. %{_libdir}/%{name}/conf.d/
  372. %{_libexecdir}/%{name}
  373. %{_sbindir}/%{name}
  374. %{_sbindir}/netdatacli
  375. %{_sbindir}/netdata-claim.sh
  376. %if %{with systemd}
  377. %{_unitdir}/netdata.service
  378. %else
  379. %{_sysconfdir}/rc.d/init.d/netdata
  380. %endif
  381. %defattr(0750,root,netdata,0750)
  382. %dir %{_libexecdir}/%{name}/python.d
  383. %dir %{_libexecdir}/%{name}/charts.d
  384. %dir %{_libexecdir}/%{name}/plugins.d
  385. %dir %{_libexecdir}/%{name}/node.d
  386. %{_libexecdir}/%{name}/python.d
  387. %{_libexecdir}/%{name}/plugins.d
  388. %{_libexecdir}/%{name}/node.d
  389. %caps(cap_dac_read_search,cap_sys_ptrace=ep) %attr(0750,root,netdata) %{_libexecdir}/%{name}/plugins.d/apps.plugin
  390. %if %{with netns}
  391. # cgroup-network detects the network interfaces of CGROUPs
  392. # it must be able to use setns() and run cgroup-network-helper.sh as root
  393. # the helper script reads /proc/PID/fdinfo/* files, runs virsh, etc.
  394. %caps(cap_setuid=ep) %attr(4750,root,netdata) %{_libexecdir}/%{name}/plugins.d/cgroup-network
  395. %attr(0750,root,netdata) %{_libexecdir}/%{name}/plugins.d/cgroup-network-helper.sh
  396. %endif
  397. # perf plugin
  398. %caps(cap_setuid=ep) %attr(4750,root,netdata) %{_libexecdir}/%{name}/plugins.d/perf.plugin
  399. # perf plugin
  400. %caps(cap_setuid=ep) %attr(4750,root,netdata) %{_libexecdir}/%{name}/plugins.d/slabinfo.plugin
  401. # freeipmi files
  402. %caps(cap_setuid=ep) %attr(4750,root,netdata) %{_libexecdir}/%{name}/plugins.d/freeipmi.plugin
  403. # Enforce 0644 for files and 0755 for directories
  404. # for the netdata web directory
  405. %defattr(0644,root,netdata,0755)
  406. %{_datadir}/%{name}/web
  407. # Enforce 0660 for files and 0770 for directories
  408. # for the netdata lib, cache and log dirs
  409. %defattr(0660,root,netdata,0770)
  410. %attr(0770,netdata,netdata) %dir %{_localstatedir}/cache/%{name}
  411. %attr(0755,netdata,root) %dir %{_localstatedir}/log/%{name}
  412. %attr(0770,netdata,netdata) %dir %{_localstatedir}/lib/%{name}
  413. %attr(0770,netdata,netdata) %dir %{_localstatedir}/lib/%{name}/registry
  414. # Free IPMI belongs to a different sub-package
  415. %exclude %{_libexecdir}/%{name}/plugins.d/freeipmi.plugin
  416. # CUPS belongs to a different sub package
  417. %if 0%{?centos_ver} != 6 && 0%{?centos_ver} != 7
  418. %exclude %{_libexecdir}/%{name}/plugins.d/cups.plugin
  419. %package plugin-cups
  420. Summary: The Common Unix Printing System plugin for netdata
  421. Group: Applications/System
  422. Requires: cups >= 1.7
  423. Requires: netdata = %{version}
  424. %description plugin-cups
  425. This is the Common Unix Printing System plugin for the netdata daemon.
  426. Use this plugin to enable metrics collection from cupsd, the daemon running when CUPS is enabled on the system
  427. %files plugin-cups
  428. %attr(0750,root,netdata) %{_libexecdir}/%{name}/plugins.d/cups.plugin
  429. %endif
  430. %package plugin-freeipmi
  431. Summary: FreeIPMI - The Intelligent Platform Management System
  432. Group: Applications/System
  433. Requires: freeipmi
  434. Requires: netdata = %{version}
  435. %description plugin-freeipmi
  436. The IPMI specification defines a set of interfaces for platform management.
  437. It is implemented by a number vendors for system management. The features of IPMI that most users will be interested in
  438. are sensor monitoring, system event monitoring, power control, and serial-over-LAN (SOL).
  439. %files plugin-freeipmi
  440. %attr(4750,root,netdata) %{_libexecdir}/%{name}/plugins.d/freeipmi.plugin
  441. %changelog
  442. * Wed Sep 16 2020 Austin Hemmelgarn <austin@netdata.cloud> 0.0.0-14
  443. - Convert to using 'AutoReq: yes' for library dependencies.
  444. * Thu Feb 13 2020 Austin Hemmelgarn <austin@netdata.cloud> 0.0.0-13
  445. - Add handling for custom libmosquitto fork
  446. * Wed Jan 01 2020 Austin Hemmelgarn <austin@netdata.cloud> 0.0.0-12
  447. - Add explicit installation of log and cache directories
  448. - Clean up build dependencies.
  449. * Thu Dec 19 2019 Austin Hemmelgarn <austin@netdata.cloud> 0.0.0-11
  450. - Fix remaining ownership and permissions issues.
  451. * Mon Nov 04 2019 Konstantinos Natsakis <konstantinos.natsakis@gmail.com> 0.0.0-10
  452. - Fix /etc/netdata permissions
  453. * Mon Sep 23 2019 Konstantinos Natsakis <konstantinos.natsakis@gmail.com> 0.0.0-9
  454. - Do not build CUPS plugin subpackage on CentOS 6 and CentOS 7
  455. * Tue Aug 20 2019 Pavlos Emm. Katsoulakis <paul@netdat.acloud> - 0.0.0-8
  456. - Split CUPS functionality on separate package
  457. * Fri Jun 28 2019 Pavlos Emm. Katsoulakis <paul@netdata.cloud> - 0.0.0-7
  458. - Raise the path overrides to the spec file level, not just the configure.
  459. - Adjust tighter permissions on some folders, based on what we did on our installer
  460. - Introduce go.d plugin download and install, to include it on the package (Temporarily, to become separate package on next iteration)
  461. * Tue Jun 25 2019 Pavlos Emm. Katsoulakis <paul@netdata.cloud> - 0.0.0-6
  462. - Adjust dependency list: Some packages are missing on some distros, adopt to build successfully
  463. * Mon Jun 24 2019 Pavlos Emm. Katsoulakis <paul@netdata.cloud> - 0.0.0-5
  464. Another pass on cleaning up pre/post installation steps
  465. - Sync permission and ownership on files and directories
  466. * Sun Jun 16 2019 Pavlos Emm. Katsoulakis <paul@netdata.cloud> - 0.0.0-4
  467. First draft refactor on package dependencies section
  468. - Remove freeipmi/nfacct plugin flags. We auto-detect all plugins by decision
  469. - Start refactor of package dependencies
  470. - Add missing dependencies, with respect to distro peculiarities
  471. - Adjust existing dependencies, so that distro-specific package names is applied
  472. * Wed Jan 02 2019 Pawel Krupa <pkrupa@redhat.com> - 0.0.0-3
  473. - Temporary set version statically
  474. - Fix changelog ordering
  475. - Comment-out node.d configuration directory
  476. * Wed Jan 02 2019 Pawel Krupa <pkrupa@redhat.com> - 0.0.0-2
  477. - Fix permissions for log files
  478. * Sun Nov 15 2015 Alon Bar-Lev <alonbl@redhat.com> - 0.0.0-1
  479. - Initial add.