added vpn scripts

This commit is contained in:
Peter Baumann 2013-06-04 17:07:08 +02:00
parent 6560762504
commit ec0003bfa8
72 changed files with 424909 additions and 0 deletions

45
vpn/ike-scan-1.9/check-run1 Executable file
View file

@ -0,0 +1,45 @@
#!/bin/sh
# $Id: check-run1 1237 2004-01-12 15:06:53Z rsh $
#
# check-run1 -- Shell script to test ike-scan --help and --version
#
# Author: Roy Hills
# Date: 12 January 2004
#
# This shell script checks that "ike-scan --help" and "ike-scan --version"
# work. These options don't use much of the ike-scan functionallity, so if
# they fail, then there is a fundimental problem with the program.
#
TMPFILE=/tmp/ike-scan-test.$$.tmp
#
echo "Checking ike-scan --help ..."
$srcdir/ike-scan --help 2> $TMPFILE
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
grep '^See the ike-scan homepage at ' $TMPFILE >/dev/null
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
echo "ok"
#
echo "Checking ike-scan --version ..."
$srcdir/ike-scan --version 2> $TMPFILE
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
grep '^ike-scan comes with NO WARRANTY ' $TMPFILE >/dev/null
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
echo "ok"
#
rm -f $TMPFILE