diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-04-04 06:11:34 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-04-04 06:11:34 +0000 |
commit | 2e5e50a9d0cfe88cdf20506dbb13c078df128b0b (patch) | |
tree | b627fa187bd8b549f5f129cd07cb243c282715de /app-benchmarks | |
parent | marked x86 per bug 410085 (diff) | |
download | gentoo-2-2e5e50a9d0cfe88cdf20506dbb13c078df128b0b.tar.gz gentoo-2-2e5e50a9d0cfe88cdf20506dbb13c078df128b0b.tar.bz2 gentoo-2-2e5e50a9d0cfe88cdf20506dbb13c078df128b0b.zip |
app-benchmarks/bootchart2: Initscripts only can use einfo not elog
(Portage version: 2.2.0_alpha99/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/bootchart2/ChangeLog | 5 | ||||
-rw-r--r-- | app-benchmarks/bootchart2/files/bootchart2.init | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-benchmarks/bootchart2/ChangeLog b/app-benchmarks/bootchart2/ChangeLog index 2efc7e22cea4..97ee7eff35b0 100644 --- a/app-benchmarks/bootchart2/ChangeLog +++ b/app-benchmarks/bootchart2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-benchmarks/bootchart2 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/ChangeLog,v 1.3 2012/04/03 14:06:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/ChangeLog,v 1.4 2012/04/04 06:11:34 jlec Exp $ + + 04 Apr 2012; Justin Lecher <jlec@gentoo.org> files/bootchart2.init: + Initscripts only can use einfo not elog 03 Apr 2012; Justin Lecher <jlec@gentoo.org> files/bootchart2.init: Closing if clause in init script diff --git a/app-benchmarks/bootchart2/files/bootchart2.init b/app-benchmarks/bootchart2/files/bootchart2.init index 9266f827bb4a..352a006211c5 100644 --- a/app-benchmarks/bootchart2/files/bootchart2.init +++ b/app-benchmarks/bootchart2/files/bootchart2.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/files/bootchart2.init,v 1.2 2012/04/03 14:06:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/files/bootchart2.init,v 1.3 2012/04/04 06:11:34 jlec Exp $ depend() { use localmount @@ -16,11 +16,11 @@ start() { eend $? fi else - elog "No bootchart process found!" + einfo "No bootchart process found!" eindent - elog "This script does not start bootchart, but only schedules its termination." - elog "Bootchart should be started from the kernel command line." - elog "Please check the README on how to do that." + einfo "This script does not start bootchart, but only schedules its termination." + einfo "Bootchart should be started from the kernel command line." + einfo "Please check the README on how to do that." eoutdent eend 0 fi |