From b1acbe2a702cccf04c9a62868ff55a08d36182ba Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Mon, 5 May 2014 23:39:38 +0800 Subject: [PATCH] [ssl_mgmt] Send all warning echo to stderr Fix echos introduced 2 commits ago with parts of the messages sent to stdout and the other parts to stderr. --- ssl_mgmt/ssl_mgmt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssl_mgmt/ssl_mgmt b/ssl_mgmt/ssl_mgmt index 99e73e1..6acfc52 100755 --- a/ssl_mgmt/ssl_mgmt +++ b/ssl_mgmt/ssl_mgmt @@ -147,7 +147,7 @@ set_variables () if [ -z "${rootCAPwdPath:-}" ] then echo -n "You must set rootCAPwdPath to the file containing" >&2 - echo " the root CA password" + echo " the root CA password" >&2 fi managedCerts=${managedCerts:-} notifiedUsers=${notifiedUsers:-} @@ -337,7 +337,7 @@ main () if [ -z "$managedCerts" ] then echo -n "You need to set managedCerts for renew" >&2 - echo " all to work" + echo " all to work" >&2 fi exit_if_no_access "$managedCerts" "READ" services=""