diff options
author | 2010-08-02 16:17:38 +0000 | |
---|---|---|
committer | 2010-08-02 16:17:38 +0000 | |
commit | f23226eabeb2a366b517e8572759c4f9559c1511 (patch) | |
tree | cbdd02f1696365252e7449fb55b80f53552f42b8 /app-admin/sysstat/files | |
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/files')
-rw-r--r-- | app-admin/sysstat/files/sysstat.init.d | 10 |
1 files changed, 5 insertions, 5 deletions
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 $? } |