diff options
Diffstat (limited to 'sys-apps/tuned/files/tuned.initd')
-rw-r--r-- | sys-apps/tuned/files/tuned.initd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sys-apps/tuned/files/tuned.initd b/sys-apps/tuned/files/tuned.initd new file mode 100644 index 000000000000..3ebdef3daa26 --- /dev/null +++ b/sys-apps/tuned/files/tuned.initd @@ -0,0 +1,17 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +TUNED_PIDFILE="/run/tuned.pid" +TUNED_LOGFILE="/var/log/tuned.log" + +command="/usr/sbin/tuned" +command_args="-d --pid ${TUNED_PIDFILE} --log ${TUNED_LOGFILE}" +pidfile=${TUNED_PIDFILE} + +description="tuned is a daemon for monitoring and adaptive tuning of system devices." + +depend() { + need dbus +} |