diff options
| author | William Hubbs <w.d.hubbs@gmail.com> | 2013-12-01 11:20:29 -0600 | 
|---|---|---|
| committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-12-01 11:20:29 -0600 | 
| commit | 1fccf91df12c3c7f7e68f9fa9a99a71e85d9b98e (patch) | |
| tree | 41eabbba397c350d9ccc289cb90573815f2003b3 /src | |
| parent | af30c4b86e20512cbd2cfa861ff8346ed6bd1c3e (diff) | |
| download | openrc-1fccf91df12c3c7f7e68f9fa9a99a71e85d9b98e.tar.xz | |
rc-update: make "service already installed" message informational
This message was being sent to stderr, and it should be sent to
stdout since it is informational. This change was requested by
zero_chaos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rc/rc-update.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/rc/rc-update.c b/src/rc/rc-update.c index 273f7ef7..88856370 100644 --- a/src/rc/rc-update.c +++ b/src/rc/rc-update.c @@ -62,7 +62,7 @@ add(const char *runlevel, const char *service)  			eerror("%s: service `%s' does not exist",  			    applet, service);  	} else if (rc_service_in_runlevel(service, runlevel)) { -		ewarn("%s: %s already installed in runlevel `%s'; skipping", +		einfo("%s: %s already installed in runlevel `%s'; skipping",  		    applet, service, runlevel);  		retval = 0;  	} else if (rc_service_add(runlevel, service)) { | 
