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 62A1A13827E for ; Fri, 13 Dec 2013 18:05:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0B4DE0AD6; Fri, 13 Dec 2013 18:05:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39BF3E0AD6 for ; Fri, 13 Dec 2013 18:05:55 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC9F033EC9C for ; Fri, 13 Dec 2013 18:05:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6587FE5768 for ; Fri, 13 Dec 2013 18:05:52 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1386918595.7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/runscript.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b X-VCS-Branch: master Date: Fri, 13 Dec 2013 18:05:52 +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: 218d359d-65d3-4a41-b19a-41974ed944cd X-Archives-Hash: f17120ae45f029eaa1852f341aa2641f commit: 7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b Author: William Hubbs gmail com> AuthorDate: Fri Dec 13 07:09:55 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Dec 13 07:09:55 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=7a35daea runscript: clarify the message wrt scheduling The message about a service being scheduled to start was confusing to some of our users; I was told this wording is more clear. X-Gentoo-Bug: 493070 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=493070 --- src/rc/runscript.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 7dc7593..e5cb62e 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -210,8 +210,7 @@ start_services(RC_STRINGLIST *list) { rc_service_schedule_start(service, svc->value); - ewarn("WARNING: %s is scheduled to started" - " when %s has started", + ewarn("WARNING: %s will start when %s has started", svc->value, applet); } else service_start(svc->value); @@ -760,8 +759,7 @@ svc_start_deps(void) } rc_stringlist_free(tmplist); tmplist = NULL; - ewarnx("WARNING: %s is scheduled to start when " - "%s has started", applet, tmp); + ewarnx("WARNING: %s will start when %s has started", applet, tmp); free(tmp); }