diff options
author | Archie Cobbs <archie@FreeBSD.org> | 2006-04-06 13:54:46 +0000 |
---|---|---|
committer | Archie Cobbs <archie@FreeBSD.org> | 2006-04-06 13:54:46 +0000 |
commit | e64e4b6ab5004af418598e36930d480a5b6d1771 (patch) | |
tree | 94f29403f0bd90d0d8b4db260a491de4dc9d9806 /security/skip/files/patch-ac | |
parent | - Update to new master site and updated tarball (diff) |
Remove the skip port. Created before there was an IPSec implementation on
FreeBSD, it is now extremely obsolete. In any case it doesn't compile. Earlier
version of this port can still be used on older versions of FreeBSD of course.
Notes
Notes:
svn path=/head/; revision=158956
Diffstat (limited to 'security/skip/files/patch-ac')
-rw-r--r-- | security/skip/files/patch-ac | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/security/skip/files/patch-ac b/security/skip/files/patch-ac deleted file mode 100644 index 41c4031dc2d2..000000000000 --- a/security/skip/files/patch-ac +++ /dev/null @@ -1,32 +0,0 @@ -diff -ur --unidirectional-new-file skipsrc-1.0.orig/admin/hosts.4.x work.new/admin/hosts.4.x ---- skipsrc-1.0.orig/admin/hosts.4.x Fri Oct 25 13:13:14 1996 -+++ work.new/admin/hosts.4.x Mon Jan 24 12:35:36 2000 -@@ -46,20 +46,18 @@ - # - # SKIP host access control information - # --PATH=/usr/skip/bin:/bin export PATH --SKIP_ACL=/etc/skip/acl.* -+PREFIX=@@PREFIX@@ -+SKIP_BIN=${PREFIX}/bin -+PATH=${SKIP_BIN}:${PATH} export PATH -+SKIP_ACL=${PREFIX}/etc/skip/acl.* - SKIP_NOCHECK=no; export SKIP_NOCHECK - OS_NAME=`uname` - --echo "starting SKIP for $OS_NAME v1.0." > /dev/console -- - # Update ACL for each SKIP interface - # --for acl in $SKIP_ACL "end" ; do -- if [ $acl = "end" ]; then -- break -- fi -- if [ -f $SKIP_ACL ]; then -- . $SKIP_ACL > /dev/null -+for ACL in ${SKIP_ACL}; do -+ if [ -f "${ACL}" ]; then -+ . ${ACL} > /dev/null - fi - done -+ |