From: David Sommerseth <[email protected]>
Signed-off-by: David Sommerseth <[email protected]>
---
INSTALL | 4 ++++
tests/t_client.sh.in | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/INSTALL b/INSTALL
index 61dc975..2ef7904 100644
--- 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.
*************************************************************************
diff --git a/tests/t_client.sh.in b/tests/t_client.sh.in
index af12e2d..b13c802 100755
--- a/tests/t_client.sh.in
+++ b/tests/t_client.sh.in
@@ -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
--
1.8.3.1