summaryrefslogtreecommitdiffstats
path: root/tuned.spec
diff options
context:
space:
mode:
authorPhilip Knirsch <pknirsch@hamburg.stuttgart.redhat.com>2009-02-20 18:29:35 +0100
committerPhilip Knirsch <pknirsch@hamburg.stuttgart.redhat.com>2009-02-20 18:29:35 +0100
commitc02f25afb09ff1f38484a8b69c4dcc85ed2378c7 (patch)
treef0c8a9d0a4552f07bac2272fca8a70cf736d453d /tuned.spec
parent5818e327421ff22f41618c7b9fa74be8d23d4fd5 (diff)
downloadtuned-c02f25afb09ff1f38484a8b69c4dcc85ed2378c7.tar.gz
tuned-c02f25afb09ff1f38484a8b69c4dcc85ed2378c7.tar.xz
tuned-c02f25afb09ff1f38484a8b69c4dcc85ed2378c7.zip
- Lots of updates to packaging and installation (specfile, makefile)
Diffstat (limited to 'tuned.spec')
-rw-r--r--tuned.spec48
1 files changed, 48 insertions, 0 deletions
diff --git a/tuned.spec b/tuned.spec
new file mode 100644
index 0000000..422b60f
--- /dev/null
+++ b/tuned.spec
@@ -0,0 +1,48 @@
+Summary: A adaptive dynamic system tuning daemon
+Name: tuned
+Version: 0.1.0
+Release: 1%{?dist}
+License: GPLv2+
+Group: System Environment/Daemons
+Source: tuned-%{version}.tar.bz2
+Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch: noarch
+
+%description
+The tuned package contains a daemon that tunes system settings dynamically.
+
+%package utils
+Summary: Disk and net monitoring systemtap scripts
+Requires: kernel-debuginfo
+Group: Applications/System
+
+%description utils
+The tuned-utils package contains several systemtap scripts to allow detailed manual monitoring of the system.
+
+%prep
+%setup -q
+
+%build
+
+%install
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root)
+%{bin}/tuned
+%{datadir}/tuned.py
+%{datadir}/monitorplugins
+%{datadir}/tuningplugins
+
+%files utils
+%{_bin}/netdevstat
+%{_bin}/diskdevstat
+
+
+%changelog
+* Thu Feb 19 2009 Phil Knirsch <pknirsch@redhat.com> - 0.1.0-1
+- Initial version