- Feature update for Fedora 12

This commit is contained in:
Phil Knirsch 2009-08-04 15:43:24 +00:00
parent 33d5dc0430
commit 77ec7e1335
3 changed files with 32 additions and 9 deletions

View File

@ -1 +1 @@
tuned-0.1.6.tar.bz2 tuned-0.2.1.tar.bz2

View File

@ -1 +1 @@
e19139f31271496607e8c4f368b7b365 tuned-0.1.6.tar.bz2 af4b7edaf24e0e9e0d7d44cf52c551c2 tuned-0.2.1.tar.bz2

View File

@ -1,7 +1,7 @@
Summary: A dynamic adaptive system tuning daemon Summary: A dynamic adaptive system tuning daemon
Name: tuned Name: tuned
Version: 0.1.6 Version: 0.2.1
Release: 2%{?dist} Release: 1%{?dist}
License: GPLv2+ License: GPLv2+
Group: System Environment/Daemons Group: System Environment/Daemons
# The source for this package was pulled from upstream git. Use the # The source for this package was pulled from upstream git. Use the
@ -18,6 +18,7 @@ Requires(preun): chkconfig
Requires(preun): initscripts Requires(preun): initscripts
Requires(postun): initscripts Requires(postun): initscripts
BuildArch: noarch BuildArch: noarch
Requires: kobo
%description %description
The tuned package contains a daemon that tunes system settings dynamically. The tuned package contains a daemon that tunes system settings dynamically.
@ -52,43 +53,65 @@ rm -rf %{buildroot}
%post %post
/sbin/chkconfig --add tuned /sbin/chkconfig --add tuned
/sbin/chkconfig --add ktune
%preun %preun
if [ $1 = 0 ] ; then if [ $1 = 0 ] ; then
/sbin/service tuned stop >/dev/null 2>&1 /sbin/service tuned stop >/dev/null 2>&1
/sbin/chkconfig --del tuned /sbin/chkconfig --del tuned
/sbin/service ktune stop >/dev/null 2>&1
/sbin/chkconfig --del ktune
fi fi
%postun %postun
if [ "$1" -ge "1" ] ; then if [ "$1" -ge "1" ] ; then
/sbin/service tuned condrestart >/dev/null 2>&1 || : /sbin/service tuned condrestart >/dev/null 2>&1 || :
/sbin/service ktune condrestart >/dev/null 2>&1 || :
fi fi
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING INSTALL NEWS README doc/DESIGN.txt doc/TIPS.txt %doc AUTHORS ChangeLog COPYING INSTALL NEWS README doc/DESIGN.txt doc/TIPS.txt ktune/README.ktune
%{_initddir}/tuned %{_initddir}/tuned
%config(noreplace) %{_sysconfdir}/tuned.conf %config(noreplace) %{_sysconfdir}/tuned.conf
%{_sbindir}/tuned %{_sbindir}/tuned
%{_sbindir}/tuned-adm
%{_sysconfdir}/tune-profiles
%{_datadir}/tuned %{_datadir}/tuned
%{_mandir}/man5/* %{_mandir}/man5/*
%{_mandir}/man8/* %{_mandir}/man8/*
%attr(0755,root,root) %{_initddir}/ktune
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/ktune
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysctl.ktune
%dir %attr(0755,root,root) %{_sysconfdir}/ktune.d
%files utils %files utils
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc doc/README.utils %doc doc/README.utils
%doc doc/README.scomes
%{_sbindir}/varnetload
%{_sbindir}/netdevstat %{_sbindir}/netdevstat
%{_sbindir}/diskdevstat %{_sbindir}/diskdevstat
%{_sbindir}/scomes %{_sbindir}/scomes
%{_sbindir}/varnetload
%changelog %changelog
* Tue Aug 04 2009 Phil Knirsch <pknirsch@redhat.com> - 0.2.1-1
- Added first set of profiles
- Added tuned-adm tool for profile switching
- Fixed several issues with the tuned-adm tool
* Mon Jul 27 2009 Thomas Woerner <twoerner@redhat.com> - 0.2.0-1
- Integrated ktune-0.4
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.6-2 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Mon Jul 13 2009 Marcela Mašláňová <mmaslano@redhat.com> - 0.1.6-1 * Thu Jul 16 2009 Phil Knirsch <pknirsch@redhat.com> - 0.1.7-1
- on popular demand update to the latest release with brand new scomes - Added first version CPU tuning and monitoring plugins
and varnetload
* Thu Jun 25 2009 Petr Lautrbach <plautrba@redhat.com> - 0.1.6-1
- added scomes
* Wed Mar 25 2009 Phil Knirsch <pknirsch@redhat.com> - 0.1.5-1 * Wed Mar 25 2009 Phil Knirsch <pknirsch@redhat.com> - 0.1.5-1
- Updated documentation, thanks to Marcela Maslanova! - Updated documentation, thanks to Marcela Maslanova!