diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-12-13 01:09:55 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-12-13 01:09:55 -0600 |
commit | 7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b (patch) | |
tree | be2f70dca9f4bc7c11716b712739ca1df83a89d0 /src/rc | |
parent | 7b5fa011ac7a9544fe68a9abb2f8ef940d9845f7 (diff) |
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
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/runscript.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 7dc7593c..e5cb62e8 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); } |