diff --git a/munin.spec b/munin.spec index d80e168..603d937 100644 --- a/munin.spec +++ b/munin.spec @@ -1,5 +1,5 @@ Name: munin -Version: 2.0.3 +Version: 2.0.4 Release: 1%{?dist} Summary: Network-wide graphing framework (grapher/gatherer) @@ -7,17 +7,29 @@ Group: System Environment/Daemons License: GPLv2 URL: http://munin-monitoring.org/ Source0: http://downloads.sourceforge.net/sourceforge/munin/%{name}-%{version}.tar.gz -Source1: http://downloads.sourceforge.net/sourceforge/munin/%{name}-%{version}.tar.gz.sha256sum +Source10: http://downloads.sourceforge.net/sourceforge/munin/%{name}-%{version}.tar.gz.sha256sum +Source1: munin-1.2.4-sendmail-config +Source2: munin-1.2.5-hddtemp_smartctl-config Source3: munin-node.logrotate Source4: munin.logrotate +Source6: munin-1.2.6-postfix-config +Source7: munin-1.4.5-df-config +Source8: munin-node.service Source9: %{name}.conf Source11: munin-node.service-privatetmp +# BZ#747663 http://munin-monitoring.org/ticket/1155 +Source12: cpuspeed.in.rev1243 + +Patch1: munin-1.4.6-restorecon.patch +Patch2: munin-1.4.2-fontfix.patch BuildArch: noarch -BuildRequires: hostname +BuildRequires: /bin/hostname BuildRequires: perl >= 5.8 +%if 0%{?rhel} > 6 || 0%{?fedora} > 12 BuildRequires: perl(Directory::Scratch) +%endif BuildRequires: perl(Module::Build) BuildRequires: perl(Net::Server) BuildRequires: perl(Net::SNMP) @@ -29,8 +41,11 @@ BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(Time::HiRes) BuildRequires: perl(Net::SSLeay) BuildRequires: perl(HTML::Template) +%if 0%{?rhel} > 5 || 0%{?fedora} > 11 BuildRequires: perl(Log::Log4perl) >= 1.18 - +%else +BuildRequires: perl(Log::Log4perl) +%endif Requires(pre): shadow-utils Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -38,6 +53,7 @@ Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $versi Requires: logrotate Requires: perl >= 5.8 Requires: perl(CGI::Fast) +Requires: perl(FCGI) Requires: perl(Digest::MD5) Requires: perl(File::Copy::Recursive) Requires: perl(Getopt::Long) @@ -141,6 +157,20 @@ or similar technology. Munin is written in Perl, and relies heavily on Tobi Oetiker's excellent RRDtool. +%package async +Group: System Environment/Daemons +Summary: Network-wide graphing framework (asynchronous client tools) +BuildArch: noarch +Requires: %{name}-node = %{version} + +%description async +Munin is a highly flexible and powerful solution used to create graphs of +virtually everything imaginable throughout your network, while still +maintaining a rattling ease of installation and configuration. + +This package contains the tools necessary for setting up an asynchronous +client / spooling system + %package common Group: System Environment/Daemons @@ -176,6 +206,13 @@ sed -i -e ' s/^CHOWN := \(.*\)/CHOWN := true/; ' dists/redhat/Makefile.config +%patch1 -p1 +%if 0%{?rhel} < 6 && 0%{?fedora} < 11 +#%%patch2 -p0 +install -c %{SOURCE12} ./plugins/node.d.linux/cpuspeed.in +%endif + + %build export CLASSPATH=plugins/javalib/org/munin/plugin/jmx:$(build-classpath mx4j):$CLASSPATH make CONFIG=dists/redhat/Makefile.config @@ -213,10 +250,6 @@ mkdir -p %{buildroot}/etc/logrotate.d install -m 0644 %{SOURCE3} %{buildroot}/etc/logrotate.d/munin-node install -m 0644 %{SOURCE4} %{buildroot}/etc/logrotate.d/munin -# install tmpfiles.d entry -mkdir -p %{buildroot}%{_sysconfdir}/tmpfiles.d -install -m 0644 %{SOURCE9} %{buildroot}%{_sysconfdir}/tmpfiles.d/%{name}.conf - # BZ#821912 - Move .htaccess to apache config to allow easier user-access changes. mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d sed -e 's/# %{buildroot}%{_sysconfdir}/httpd/conf.d/munin.conf @@ -229,25 +262,95 @@ install -m 0644 dists/redhat/munin.cron.d %{buildroot}/etc/cron.d/munin # ensure file exists touch %{buildroot}/var/lib/munin/plugin-state/yum.state -# Fedora 17 and higer uses privatetmp +# SystemD +%if 0%{?rhel} > 6 || 0%{?fedora} > 15 mkdir -p %{buildroot}/lib/systemd/system +%endif +# Fedora 17 and higer uses privatetmp +%if 0%{?fedora} == 16 +install -m 0644 %{SOURCE8} %{buildroot}/lib/systemd/system/munin-node.service +%endif +%if 0%{?fedora} > 16 install -m 0644 %{SOURCE11} %{buildroot}/lib/systemd/system/munin-node.service +%endif + +# install tmpfiles.d entry +%if 0%{?rhel} > 6 || 0%{?fedora} > 14 +mkdir -p %{buildroot}%{_sysconfdir}/tmpfiles.d +install -m 0644 %{SOURCE9} %{buildroot}%{_sysconfdir}/tmpfiles.d/%{name}.conf +%endif + +# Fedora 15 and rhel use sysvinit / upstart +%if 0%{?rhel} > 4 || 0%{?fedora} < 16 +mkdir -p %{buildroot}/etc/rc.d/init.d +cat dists/redhat/munin-node.rc | sed -e 's/2345/\-/' > %{buildroot}/etc/rc.d/init.d/munin-node +chmod 755 %{buildroot}/etc/rc.d/init.d/munin-node +%endif # Fix default config file sed -i 's,/etc/munin/munin-conf.d,/etc/munin/conf.d,' %{buildroot}/etc/munin/munin.conf mkdir -p %{buildroot}/etc/munin/conf.d mkdir -p %{buildroot}/etc/munin/node.d +# install config for sendmail under fedora +install -m 0644 %{SOURCE1} %{buildroot}/etc/munin/plugin-conf.d/sendmail + +# install config for hddtemp_smartctl +install -m 0644 %{SOURCE2} %{buildroot}/etc/munin/plugin-conf.d/hddtemp_smartctl + +# install logrotate scripts +install -m 0644 %{SOURCE3} %{buildroot}/etc/logrotate.d/munin-node +install -m 0644 %{SOURCE4} %{buildroot}/etc/logrotate.d/munin + +# install config for postfix under fedora +install -m 0644 %{SOURCE6} %{buildroot}/etc/munin/plugin-conf.d/postfix + +# install df config to exclude fses we shouldn't try and monitor +install -m 0644 %{SOURCE7} %{buildroot}/etc/munin/plugin-conf.d/df + +# Create for BZ 786030 +touch %{buildroot}/var/lib/munin/plugin-state/yum.state + +# Append for BZ# 746083 +cat - >> %{buildroot}/etc/munin/plugin-conf.d/munin-node </dev/null || \ + /usr/sbin/groupadd -r munin +/usr/bin/getent passwd munin >/dev/null || \ + /usr/sbin/useradd -r -g munin -d /var/lib/munin -s /sbin/nologin \ + -c "Munin user" munin +exit 0 + %pre node -getent group munin >/dev/null || groupadd -r munin -getent passwd munin >/dev/null || \ -useradd -r -g munin -d /var/lib/munin -s /sbin/nologin \ +/usr/bin/getent group munin >/dev/null || \ + /usr/sbin/groupadd -r munin +/usr/bin/getent passwd munin >/dev/null || \ + /usr/sbin/useradd -r -g munin -d /var/lib/munin -s /sbin/nologin \ -c "Munin user" munin exit 0 @@ -263,7 +366,7 @@ fi %preun node %if 0%{?rhel} > 6 || 0%{?fedora} > 15 -test "$1" != 0 || %{_bindir}/systemctl disable munin-node.service || : +test "$1" != 0 || /bin/systemctl disable munin-node.service || : %else test "$1" != 0 || %{_initrddir}/munin-node stop &>/dev/null || : test "$1" != 0 || /sbin/chkconfig --del munin-node @@ -271,7 +374,9 @@ test "$1" != 0 || /sbin/chkconfig --del munin-node %postun node if [ "$1" = "0" ]; then - find %{_sysconfdir}/munin/plugins/ -maxdepth 1 -type l -print0 |xargs -0 rm || : + [ -d %{_sysconfdir}/munin/plugins ] && \ + find %{_sysconfdir}/munin/plugins/ -maxdepth 1 -type l -print0 | \ + xargs -0 rm || : fi %triggerun node -- munin-node < 1.4.7-2 @@ -284,15 +389,16 @@ mv -f %{_sysconfdir}/munin/plugins.bak %{_sysconfdir}/munin/plugins || : # main package scripts # %pre -getent group munin >/dev/null || groupadd -r munin -getent passwd munin >/dev/null || \ -useradd -r -g munin -d /var/lib/munin -s /sbin/nologin \ +/usr/bin/getent group munin >/dev/null || \ + /usr/sbin/groupadd -r munin +/usr/bin/getent passwd munin >/dev/null || \ + /usr/sbin/useradd -r -g munin -d /var/lib/munin -s /sbin/nologin \ -c "Munin user" munin exit 0 %files -%defattr(-, root, root) +%defattr(-,root,root) %doc %{_mandir}/man1/munindoc* %doc %{_mandir}/man1/munin-sched* %doc %{_mandir}/man3/Munin::Master* @@ -305,8 +411,9 @@ exit 0 %dir %{_sysconfdir}/munin/templates/partial %dir %{_datadir}/munin %dir %{_datadir}/munin/plugins -%dir /var/www/html/munin -%dir /var/www/html/munin/cgi +%attr(0755,munin,munin) %dir /var/www/html/munin +%attr(0755,root,root) %dir /var/www/html/munin/static +%attr(0755,root,root) %dir /var/www/html/munin/cgi %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/cron.d/munin %config(noreplace) %{_sysconfdir}/httpd/conf.d/munin.conf %config(noreplace) %{_sysconfdir}/logrotate.d/munin @@ -318,14 +425,20 @@ exit 0 %attr(0755,root,root) %{_bindir}/munin-cron %attr(0755,root,root) %{_bindir}/munindoc %attr(0755,root,root) %{_sbindir}/munin-sched -%{_datadir}/munin/munin* +%{_datadir}/munin/munin-datafile2storable +%{_datadir}/munin/munin-graph +%{_datadir}/munin/munin-html +%{_datadir}/munin/munin-limits +%{_datadir}/munin/munin-storable2datafile +%{_datadir}/munin/munin-update %{perl_vendorlib}/Munin/Master/*.pm -/var/www/html/munin/cgi/munin-cgi-graph -/var/www/html/munin/cgi/munin-cgi-html +%attr(0755,root,munin) /var/www/html/munin/cgi/munin-cgi-graph +%attr(0755,root,munin) /var/www/html/munin/cgi/munin-cgi-html +%attr(0644,root,root) /var/www/html/munin/static/* %files node -%defattr(-, root, root) +%defattr(-,root,root) %doc %{_mandir}/man1/munin-node* %doc %{_mandir}/man1/munin-run* %doc %{_mandir}/man3/Munin::Common* @@ -336,38 +449,59 @@ exit 0 %dir %{_sysconfdir}/munin/plugins %dir %{_sysconfdir}/munin %dir %{_datadir}/munin -%dir %attr(-, munin, munin) /var/lib/munin -%dir %attr(-, munin, munin) /var/lib/munin/plugin-state -%dir %attr(-, munin, munin) /var/log/munin +%dir %attr(-,munin,munin) /var/lib/munin +%dir %attr(0775,nobody,munin) /var/lib/munin/plugin-state +%dir %attr(-,munin,munin) /var/log/munin %config(noreplace) %{_sysconfdir}/logrotate.d/munin-node %config(noreplace) %{_sysconfdir}/munin/munin-node.conf +%config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/df +%config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/hddtemp_smartctl +%config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/munin-node +%config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/postfix +%config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/sendmail +%if 0%{?rhel} > 6 || 0%{?fedora} > 15 /lib/systemd/system/munin-node.service +%else +/etc/rc.d/init.d/munin-node +%endif %attr(0755,root,root) %{_sbindir}/munin-run %attr(0755,root,root) %{_sbindir}/munin-node %attr(0755,root,root) %{_sbindir}/munin-node-configure -%attr(-, munin, munin) /var/lib/munin/plugin-state/yum.state +%attr(-,munin,munin) /var/lib/munin/plugin-state/yum.state %exclude %{_datadir}/munin/plugins/jmx_ %{_datadir}/munin/plugins/ %{perl_vendorlib}/Munin/Node %{perl_vendorlib}/Munin/Plugin* +%files async +%defattr(-,root,root) +%{_datadir}/munin/munin-async +%{_datadir}/munin/munin-asyncd + + %files common -%defattr(-, root, root) +%defattr(-,root,root) %doc Announce-2.0 COPYING ChangeLog Checklist HACKING.pod README RELEASE UPGRADING UPGRADING-1.4 %dir %{perl_vendorlib}/Munin -%dir %attr(-, munin, munin) %{_localstatedir}/run/%{name}/ +%dir %attr(-,munin,munin) %{_localstatedir}/run/%{name}/ +%if 0%{?rhel} > 6 || 0%{?fedora} > 14 %config(noreplace) %{_sysconfdir}/tmpfiles.d/%{name}.conf +%endif %{perl_vendorlib}/Munin/Common %files java-plugins -%defattr(-, root, root) +%defattr(-,root,root) %{_datadir}/java/munin-jmx-plugins.jar %{_datadir}/munin/plugins/jmx_ %changelog +* Sat Aug 04 2012 D. Johnson - 2.0.4-1 +- updated to 2.0.4 +- backported el6 packaging items + * Tue Jul 24 2012 fenris02@fedoraproject.org - 2.0.3-1 - Adjust default conf.d entry. - updated to 2.0.3 @@ -384,3 +518,277 @@ exit 0 * Thu Jun 07 2012 D. Johnson - 2.0.0-1 - initial 2.0 release +* Fri May 18 2012 D. Johnson - 1.4.7-5 +- BZ# 822992 Including GCTime.java.patch +- BZ# 747663 Include older cpuspeed.in for older kernels +- BZ# 822894 Requires: perl-Net-CIDR +- BZ# 746083 Append user=munin for munin-node plugins +- BZ# 821912 Move htaccess to httpd/conf.d/munin.conf for easier administration + +* Sun May 13 2012 Kevin Fenzi - 1.4.7-4 +- Fix ownership on /var/run/munin. Fixes bug #821204 + +* Tue Apr 24 2012 Kevin Fenzi - 1.4.7-3 +- A better for for 811867 with triggers. +- Fix directory conflict. Fixes bug #816340 +- Fix path in java plugin. Fixes bug #816570 + +* Sun Apr 15 2012 Kevin Fenzi - 1.4.7-2 +- Fix node postun from messing up plugins on upgrade. Works around bug #811867 + +* Wed Mar 14 2012 D. Johnson - 1.4.7-1 +- updated for 1.4.7 release + +* Wed Feb 22 2012 Kevin Fenzi 1.4.6-8 +- Build against java-1.7.0 now. Fixes bug #796345 + +* Tue Jan 31 2012 D. Johnson - 1.4.6-7 +- Create state file for yum-plugin. Fixes BZ #786030. + +* Fri Jan 20 2012 Kevin Fenzi - 1.4.6-6 +- Add PrivateTmp=true to systemd unit file. Fixes bug #782512 +- Change logrotate to use munin user. Fixes bug #771017 + +* Fri Jan 13 2012 Fedora Release Engineering - 1.4.6-5.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Oct 17 2011 Stanislav Ochotnicky - 1.4.6-4.3 +- Rebuild for java 1.6.0 downgrade (fesco ticket 663) + +* Sat Aug 27 2011 Kevin Fenzi - 1.4.6-4.1 +- Add patch to run restorecon in the sysvinit script. +- This doesn't matter on f16+ + +* Sat Aug 20 2011 D. Johnson - 1.4.6-4 +- fix tmpfiles.d file for f15 (BZ# 731181) + +* Thu Jul 21 2011 Petr Sabata - 1.4.6-3 +- Perl mass rebuild + +* Wed Jul 20 2011 Petr Sabata - 1.4.6-2 +- Perl mass rebuild + +* Wed Jul 8 2011 D. Johnson - 1.4.6-1 +- update to 1.4.6 + +* Fri Jun 17 2011 Marcela Mašláňová - 1.4.5-13 +- Perl mass rebuild + +* Wed Jun 15 2011 D. Johnson - 1.4.5-12 +- Use tmpfiles.d instead of ExecStartPre +- Add patch for noSuchObject errors (BZ# 712245) + +* Fri Jun 10 2011 Marcela Mašláňová - 1.4.5-11 +- Perl 5.14 mass rebuild + +* Wed Jun 1 2011 D. Johnson - 1.4.5-10 +- Fixes http://munin-monitoring.org/ticket/887 + +* Mon May 30 2011 D. Johnson - 1.4.5-9 +- Native systemd service file for munin-node (BZ# 699275) + +* Tue Feb 08 2011 Kevin Fenzi - 1.4.5-8 +- Fix issue with uppercase node names returning no data. Fixes #673263 + +* Tue Feb 08 2011 Fedora Release Engineering - 1.4.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Dec 05 2010 Kevin Fenzi - 1.4.5-6 +- Adjust the df fix to include all the right fses + +* Thu Nov 25 2010 Kevin Fenzi - 1.4.5-5 +- Exclude some fses from df plugin. fixes #601410 + +* Wed Aug 11 2010 Todd Zullinger - 1.4.5-4.1 +- Move jmx_ plugin to java-plugins package + +* Wed Jul 07 2010 Kevin Fenzi - 1.4.5-4 +- Move docs to common subpackage to make sure COPYING is installed. + +* Sat Jul 03 2010 Kevin Fenzi - 1.4.5-3 +- Add /etc/munin/node.d dir + +* Sat Jun 12 2010 Kevin Fenzi - 1.4.5-2 +- Add /etc/munin/conf.d/ dir + +* Sat Jun 05 2010 Kevin Fenzi - 1.4.5-1 +- Update to 1.4.5 + +* Tue Jun 01 2010 Marcela Maslanova - 1.4.4-2 +- Mass rebuild with perl-5.12.0 + +* Mon Mar 01 2010 Kevin Fenzi - 1.4.4-1 +- Update to 1.4.4 +- Add more doc files. Fixes bug #563824 +- fw_forwarded_local fixed upstream in 1.4.4. Fixes bug #568500 + +* Sun Jan 17 2010 Kevin Fenzi - 1.4.3-2 +- Fix owner on state files. +- Add some BuildRequires. +- Make munin-node-configure only run on install, not upgrade. bug 540687 + +* Thu Dec 31 2009 Kevin Fenzi - 1.4.3-1 +- Update to 1.4.3 + +* Thu Dec 17 2009 Ingvar Hagelund - 1.4.2-1 +- New upstream release +- Removed upstream packaged fonts +- Added a patch that makes rrdtool use the system bitstream vera fonts on + rhel < 6 and fedora < 11 + +* Fri Dec 11 2009 Ingvar Hagelund - 1.4.1-3 +- More correct fedora and el versions for previous font path fix +- Added a patch that fixes a quoting bug in GraphOld.pm, fixing fonts on el4 + +* Wed Dec 09 2009 Ingvar Hagelund - 1.4.1-2 +- Remove jmx plugins when not supported (like on el4 and older fedora) +- Correct font path on older distros like el5, el4 and fedora<11 + +* Fri Dec 04 2009 Kevin Fenzi - 1.4.1-1 +- Update to 1.4.1 + +* Sat Nov 28 2009 Kevin Fenzi - 1.4.0-1 +- Update to final 1.4.0 version + +* Sat Nov 21 2009 Kevin Fenzi - 1.4.0-0.1.beta +- Update to beta 1.4.0 version. +- Add common subpackage for common files. + +* Sun Nov 08 2009 Kevin Fenzi - 1.4.0-0.1.alpha +- Initial alpha version of 1.4.0 + +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Feb 25 2009 Fedora Release Engineering - 1.2.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Jan 24 2009 Andreas Thienemann - 1.2.6-8 +- Updated dependencies to better reflect plugin requirements +- Added hddtemp_smartctl patch to only scan for standby state on /dev/[sh]d? devices. + +* Sat Jan 17 2009 Kevin Fenzi - 1.2.6-7 +- Adjust font requires for new dejavu-sans-mono-fonts name (fixes #480463) + +* Mon Jan 12 2009 Kevin Fenzi - 1.2.6-6 +- Fix to require the correct font + +* Sun Jan 11 2009 Kevin Fenzi - 1.2.6-5 +- Switch to using dejavu-fonts instead of bitstream-vera + +* Sun Jan 04 2009 Kevin Fenzi - 1.2.6-4 +- Require bitstream-vera-fonts-sans-mono for Font (fixes #477428) + +* Mon Aug 11 2008 Kevin Fenzi - 1.2.6-3 +- Move Munin/Plugin.pm to the node subpackage (fixes #457403) + +* Sat Jul 12 2008 Kevin Fenzi - 1.2.6-2 +- Apply postfix patch (fixes #454159) +- Add perl version dep and remove unneeded perl-HTML-Template (fixes #453923) + +* Fri Jun 20 2008 Kevin Fenzi - 1.2.6-1 +- Upgrade to 1.2.6 + +* Tue May 20 2008 Kevin Fenzi - 1.2.5-5 +- Rebuild for new perl + +* Wed Dec 26 2007 Kevin Fenzi - 1.2.5-4 +- Add patch to fix ampersand and degrees in plugins (fixes #376441) + +* Fri Nov 30 2007 Kevin Fenzi - 1.2.5-3 +- Removed unnneeded plugins.conf file (fixes #288541) +- Fix license tag. +- Fix ip_conntrack monitoring (fixes #253192) +- Switch to new useradd guidelines. + +* Tue Mar 27 2007 Kevin Fenzi - 1.2.5-2 +- Fix directory ownership (fixes #233886) + +* Tue Oct 17 2006 Kevin Fenzi - 1.2.5-1 +- Update to 1.2.5 +- Fix HD stats (fixes #205042) +- Add in logrotate scripts that seem to have been dropped upstream + +* Sun Aug 27 2006 Kevin Fenzi - 1.2.4-10 +- Rebuild for fc6 + +* Tue Jun 27 2006 Kevin Fenzi - 1.2.4-9 +- Re-enable snmp plugins now that perl-Net-SNMP is available (fixes 196588) +- Thanks to Herbert Straub for patch. +- Fix sendmail plugins to look in the right place for the queue + +* Sat Apr 22 2006 Kevin Fenzi - 1.2.4-8 +- add patch to remove unneeded munin-nagios in cron. +- add patch to remove buildhostname in munin.conf (fixes #188928) +- clean up prep section of spec. + +* Fri Feb 24 2006 Kevin Fenzi - 1.2.4-7 +- Remove bogus Provides for perl RRDs (fixes #182702) + +* Thu Feb 16 2006 Kevin Fenzi - 1.2.4-6 +- Readded old changelog entries per request +- Rebuilt for fc5 + +* Sat Dec 24 2005 Kevin Fenzi - 1.2.4-5 +- Fixed ownership for /var/log/munin in node subpackage (fixes 176529) + +* Wed Dec 14 2005 Kevin Fenzi - 1.2.4-4 +- Fixed ownership for /var/lib/munin in node subpackage + +* Wed Dec 14 2005 Kevin Fenzi - 1.2.4-3 +- Fixed libdir messup to allow builds on x86_64 + +* Mon Dec 12 2005 Kevin Fenzi - 1.2.4-2 +- Removed plugins that require Net-SNMP and Sybase + +* Tue Dec 6 2005 Kevin Fenzi - 1.2.4-1 +- Inital cleanup for fedora-extras + +* Thu Apr 21 2005 Ingvar Hagelund - 1.2.3-4 +- Fixed a bug in the iostat plugin + +* Wed Apr 20 2005 Ingvar Hagelund - 1.2.3-3 +- Added the missing /var/run/munin + +* Tue Apr 19 2005 Ingvar Hagelund - 1.2.3-2 +- Removed a lot of unecessary perl dependencies + +* Mon Apr 18 2005 Ingvar Hagelund - 1.2.3-1 +- Sync with svn + +* Tue Mar 22 2005 Ingvar Hagelund - 1.2.2-5 +- Sync with release of 1.2.2 +- Add some nice text from the suse specfile +- Minimal changes in the header +- Some cosmetic changes +- Added logrotate scripts (stolen from debian package) + +* Sun Feb 01 2004 Ingvar Hagelund +- Sync with CVS. Version 1.0.0pre2 + +* Sun Jan 18 2004 Ingvar Hagelund +- Sync with CVS. Change names to munin. + +* Fri Oct 31 2003 Ingvar Hagelund +- Lot of small fixes. Now builds on more RPM distros + +* Wed May 21 2003 Ingvar Hagelund +- Sync with CVS +- 0.9.5-1 + +* Tue Apr 1 2003 Ingvar Hagelund +- Sync with CVS +- Makefile-based install of core files +- Build doc (only pod2man) + +* Thu Jan 9 2003 Ingvar Hagelund +- Sync with CVS, auto rpmbuild + +* Thu Jan 2 2003 Ingvar Hagelund +- Fix spec file for RedHat 8.0 and new version of lrrd + +* Wed Sep 4 2002 Ingvar Hagelund +- Small bugfixes in the rpm package + +* Tue Jun 18 2002 Kjetil Torgrim Homme +- new package