diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-11-15 01:29:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-11-15 01:29:22 +0000 |
commit | 6df83bbbb140282827047fc7c7e5308d6b68f248 (patch) | |
tree | a34f857ee996adf238af7595cfe5455ac6089cc3 /sys-apps/collectl | |
parent | patrick's going to help out... even if I have to twist his arm (diff) | |
download | gentoo-2-6df83bbbb140282827047fc7c7e5308d6b68f248.tar.gz gentoo-2-6df83bbbb140282827047fc7c7e5308d6b68f248.tar.bz2 gentoo-2-6df83bbbb140282827047fc7c7e5308d6b68f248.zip |
Fix path to collectl #292864 by DBautell.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/collectl')
-rw-r--r-- | sys-apps/collectl/ChangeLog | 5 | ||||
-rwxr-xr-x | sys-apps/collectl/files/collectl.initd | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys-apps/collectl/ChangeLog b/sys-apps/collectl/ChangeLog index 21482f38816b..fc5d90327702 100644 --- a/sys-apps/collectl/ChangeLog +++ b/sys-apps/collectl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/collectl # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v 1.6 2009/04/27 05:36:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v 1.7 2009/11/15 01:29:22 vapier Exp $ + + 15 Nov 2009; Mike Frysinger <vapier@gentoo.org> files/collectl.initd: + Fix path to collectl #292864 by DBautell. *collectl-3.2.1 (27 Apr 2009) diff --git a/sys-apps/collectl/files/collectl.initd b/sys-apps/collectl/files/collectl.initd index 17f676bae450..99b0290a327c 100755 --- a/sys-apps/collectl/files/collectl.initd +++ b/sys-apps/collectl/files/collectl.initd @@ -1,14 +1,14 @@ #!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/files/collectl.initd,v 1.1 2008/01/05 22:29:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/files/collectl.initd,v 1.2 2009/11/15 01:29:22 vapier Exp $ start() { ebegin "Starting collectl" start-stop-daemon \ --start \ --pidfile /var/run/collectl.pid \ - --exec /usr/sbin/collectl -- -D + --exec /usr/bin/collectl -- -D eend $? } |