summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2013-12-13 01:09:55 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2013-12-13 01:09:55 -0600
commit7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b (patch)
treebe2f70dca9f4bc7c11716b712739ca1df83a89d0
parent7b5fa011ac7a9544fe68a9abb2f8ef940d9845f7 (diff)
downloadopenrc-7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b.tar.gz
openrc-7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b.tar.bz2
openrc-7a35daeab7bf97bcd0ae4f9e0e053cb5c9bad40b.tar.xz
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
-rw-r--r--src/rc/runscript.c6
1 files 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);
}