Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/
Date: Sun, 01 Dec 2013 17:25:28
Message-Id: 1385918429.1fccf91df12c3c7f7e68f9fa9a99a71e85d9b98e.williamh@OpenRC
1 commit: 1fccf91df12c3c7f7e68f9fa9a99a71e85d9b98e
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Sun Dec 1 17:20:29 2013 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 17:20:29 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=1fccf91d
7
8 rc-update: make "service already installed" message informational
9
10 This message was being sent to stderr, and it should be sent to
11 stdout since it is informational. This change was requested by
12 zero_chaos.
13
14 ---
15 src/rc/rc-update.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/src/rc/rc-update.c b/src/rc/rc-update.c
19 index 273f7ef..8885637 100644
20 --- a/src/rc/rc-update.c
21 +++ b/src/rc/rc-update.c
22 @@ -62,7 +62,7 @@ add(const char *runlevel, const char *service)
23 eerror("%s: service `%s' does not exist",
24 applet, service);
25 } else if (rc_service_in_runlevel(service, runlevel)) {
26 - ewarn("%s: %s already installed in runlevel `%s'; skipping",
27 + einfo("%s: %s already installed in runlevel `%s'; skipping",
28 applet, service, runlevel);
29 retval = 0;
30 } else if (rc_service_add(runlevel, service)) {