diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-08-02 16:17:38 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-08-02 16:17:38 +0000 |
commit | f23226eabeb2a366b517e8572759c4f9559c1511 (patch) | |
tree | cbdd02f1696365252e7449fb55b80f53552f42b8 /app-admin/sysstat | |
parent | version bump (diff) | |
download | gentoo-2-f23226eabeb2a366b517e8572759c4f9559c1511.tar.gz gentoo-2-f23226eabeb2a366b517e8572759c4f9559c1511.tar.bz2 gentoo-2-f23226eabeb2a366b517e8572759c4f9559c1511.zip |
Describe more accurately what the init.d script is doing and not doing.
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'app-admin/sysstat')
-rw-r--r-- | app-admin/sysstat/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/sysstat/files/sysstat.init.d | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-admin/sysstat/ChangeLog b/app-admin/sysstat/ChangeLog index 186356945a3e..a82325348dcc 100644 --- a/app-admin/sysstat/ChangeLog +++ b/app-admin/sysstat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/sysstat # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/ChangeLog,v 1.183 2010/07/29 11:49:01 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/ChangeLog,v 1.184 2010/08/02 16:17:37 jer Exp $ + + 02 Aug 2010; Jeroen Roovers <jer@gentoo.org> files/sysstat.init.d: + Describe more accurately what the init.d script is doing and not doing. *sysstat-9.1.4 (29 Jul 2010) diff --git a/app-admin/sysstat/files/sysstat.init.d b/app-admin/sysstat/files/sysstat.init.d index 78fd28b5d144..e7f6effea2a3 100644 --- a/app-admin/sysstat/files/sysstat.init.d +++ b/app-admin/sysstat/files/sysstat.init.d @@ -1,26 +1,26 @@ #!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/files/sysstat.init.d,v 1.1 2007/05/31 10:08:50 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/files/sysstat.init.d,v 1.2 2010/08/02 16:17:38 jer Exp $ depend() { use hostname } start() { - ebegin "Calling the system activity data collector (sadc)..." + ebegin "Writing a dummy startup record using sadc (see sadc(8))..." /usr/lib/sa/sadc -F -L - eend $? } stop() { - ebegin "Stopping..." + ebegin "Cannot stop writing a dummy startup record (see sadc(8))..." eend $? } # restart emulation # svc_start svc_stop restart() { - ebegin "Restart..." + ebegin "Not writing yet another dummy startup record (see sadc(8))..." eend $? } |