]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
t_client.sh: Write errors to stderr and document requirements
authorDavid Sommerseth <davids@redhat.com>
Sat, 16 Nov 2013 10:23:43 +0000 (11:23 +0100)
committerGert Doering <gert@greenie.muc.de>
Sat, 16 Nov 2013 13:06:40 +0000 (14:06 +0100)
Signed-off-by: David Sommerseth <davids@redhat.com>
Acked-by: Matthias Andree <matthias.andree@gmx.de>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1384597423-11136-1-git-send-email-dazo@users.sourceforge.net>
URL: http://article.gmane.org/gmane.network.openvpn.devel/7984
Signed-off-by: Gert Doering <gert@greenie.muc.de>
INSTALL
tests/t_client.sh.in

diff --git a/INSTALL b/INSTALL
index 61dc9758b9ffc501f3f5a08bdd968ee698e1a737..2ef7904ba5889b9ba956b29b6375e6024eb09107 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -87,6 +87,10 @@ OPTIONAL (for developers only):
       -- available from http://www.gnu.org/software/software.html
   (2) Dmalloc library
       -- available from http://dmalloc.com/
+  (3) If using t_client.sh test framework, fping/fping6 is needed
+      -- Available from http://www.fping.org/
+      Note: t_client.sh needs an external configured OpenVPN server.
+      See t_client.rc-sample for more info.
 
 *************************************************************************
 
index af12e2d8a7a271f91936661b61394b0d8d9e2b10..b13c802f97532e790073e24c3684e55a8cf84234 100755 (executable)
@@ -27,12 +27,12 @@ fi
 # Check for external dependencies
 which fping > /dev/null
 if [ $? -ne 0 ]; then
-    echo "$0: fping is not available in \$PATH"
+    echo "$0: fping is not available in \$PATH" >&2
     exit 77
 fi
 which fping6 > /dev/null
 if [ $? -ne 0 ]; then
-    echo "$0: fping6 is not available in \$PATH"
+    echo "$0: fping6 is not available in \$PATH" >&2
     exit 77
 fi