From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E22C61386F1 for ; Mon, 10 Aug 2015 08:00:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 827B414272; Mon, 10 Aug 2015 08:00:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DFEEC1426D for ; Mon, 10 Aug 2015 08:00:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DAF0B340756 for ; Mon, 10 Aug 2015 08:00:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFC8114A for ; Mon, 10 Aug 2015 08:00:15 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1439193584.978f54d1d8e6042b1dc839753e46f8c1d306d02f.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/anacron/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/anacron/anacron-2.3-r3.ebuild X-VCS-Directories: sys-process/anacron/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 978f54d1d8e6042b1dc839753e46f8c1d306d02f X-VCS-Branch: master Date: Mon, 10 Aug 2015 08:00:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: edf106ce-5aa4-439b-96c2-7ec12c5124c8 X-Archives-Hash: 15c1f261460d9a457097997616279acc commit: 978f54d1d8e6042b1dc839753e46f8c1d306d02f Author: Mike Frysinger gentoo org> AuthorDate: Mon Aug 10 07:22:40 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Aug 10 07:59:44 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978f54d1 anacron: use elog instead of einfo for messages #370199 We want users to be able to read these after the fact, so make sure we log them accordingly. sys-process/anacron/anacron-2.3-r3.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/sys-process/anacron/anacron-2.3-r3.ebuild b/sys-process/anacron/anacron-2.3-r3.ebuild index fdf0298..22fd43f 100644 --- a/sys-process/anacron/anacron-2.3-r3.ebuild +++ b/sys-process/anacron/anacron-2.3-r3.ebuild @@ -47,15 +47,14 @@ src_install() { } pkg_postinst() { - einfo "Schedule the command \"anacron -s\" as a daily cron-job (preferably" - einfo "at some early morning hour). This will make sure that jobs are run" - einfo "when the systems is left running for a night." - einfo "" - einfo "Update /etc/anacrontab to include what you want anacron to run." - + elog "Schedule the command \"anacron -s\" as a daily cron-job (preferably" + elog "at some early morning hour). This will make sure that jobs are run" + elog "when the systems is left running for a night." echo - einfo "You may wish to read the Gentoo Linux Cron Guide, which can be" - einfo "found online at:" - einfo " http://www.gentoo.org/doc/en/cron-guide.xml" + elog "Update /etc/anacrontab to include what you want anacron to run." + echo + elog "You may wish to read the Gentoo Linux Cron Guide, which can be" + elog "found online at:" + elog " http://www.gentoo.org/doc/en/cron-guide.xml" }