Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/tuned/files: tuned.initd
Date: Fri, 29 Aug 2014 04:09:04
Message-Id: 20140829040859.8D9A0420C@oystercatcher.gentoo.org
1 dlan 14/08/29 04:08:59
2
3 Added: tuned.initd
4 Log:
5 initial version, bug 396131, thanks david, Patrick McMunn, Amir Aupov
6
7 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
8
9 Revision Changes Path
10 1.1 sys-apps/tuned/files/tuned.initd
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuned/files/tuned.initd?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuned/files/tuned.initd?rev=1.1&content-type=text/plain
14
15 Index: tuned.initd
16 ===================================================================
17 #!/sbin/runscript
18 # Copyright 1999-2014 Gentoo Foundation
19 # Distributed under the terms of the GNU General Public License v2
20 # $Header: /var/cvsroot/gentoo-x86/sys-apps/tuned/files/tuned.initd,v 1.1 2014/08/29 04:08:59 dlan Exp $
21
22 TUNED_PIDFILE="/run/tuned.pid"
23 TUNED_LOGFILE="/var/log/tuned.log"
24
25 command="/usr/sbin/tuned"
26 command_args="-d --pid ${TUNED_PIDFILE} --log ${TUNED_LOGFILE}"
27 pidfile=${TUNED_PIDFILE}
28
29 description="tuned is a daemon for monitoring and adaptive tuning of system devices."
30
31 depend() {
32 need dbus
33 }