summaryrefslogtreecommitdiff
path: root/security/racoon2/files/racoon.sh
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2005-02-01 18:59:09 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2005-02-01 18:59:09 +0000
commit62d7d46cf624821cf87cde9b9232a994f6e66d4f (patch)
treea69be1469697e76a603a0718060d42df5cfbacf6 /security/racoon2/files/racoon.sh
parentUnbreak on 5.x and 6.0 based on [1]. (diff)
"racoon2" is a system to exchange and to install security parameters
for the IPsec. Currently the system supports the following specification: Internet Key Exchange (IKEv2) Protocol draft-ietf-ipsec-ikev2-17.txt (The IKE daemon is not included in the current release due to IPR issue) Kerberized Internet Negotiation of Keys (KINK) draft-ietf-kink-kink-06.txt PF_KEY Key Management API, Version 2 RFC2367 The following protocols will be supported soon. The Internet Key Exchange (IKE) RFC2409 WWW: http://www.kame.net/ This port was repocopied from secutiry/racoon. PR: ports/76814
Notes
Notes: svn path=/head/; revision=127868
Diffstat (limited to 'security/racoon2/files/racoon.sh')
-rw-r--r--security/racoon2/files/racoon.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/security/racoon2/files/racoon.sh b/security/racoon2/files/racoon.sh
deleted file mode 100644
index ecde585dad87..000000000000
--- a/security/racoon2/files/racoon.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-
-# Start or stop racoon
-# $FreeBSD$
-
-# PROVIDE: racoon
-# REQUIRE: DAEMON
-# BEFORE: LOGIN
-# KEYWORD: FreeBSD shutdown
-#
-# NOTE for FreeBSD 5.0+:
-# If you want this script to start with the base rc scripts
-# move racoon.sh to /etc/rc.d/racoon
-
-prefix=%%PREFIX%%
-
-# Define these racoon_* variables in one of these files:
-# /etc/rc.conf
-# /etc/rc.conf.local
-# /etc/rc.conf.d/racoon
-#
-# DO NOT CHANGE THESE DEFAULT VALUES HERE
-#
-[ -z "$racoon_enable" ] && racoon_enable="YES" # Enable racoon
-#racoon_program="${prefix}/sbin/racoon" # Location of racoon
-#racoon_flags="" # Flags to racoon program
-
-. %%RC_SUBR%%
-
-name="racoon"
-rcvar=`set_rcvar`
-command="${prefix}/sbin/racoon"
-pidfile="/var/run/racoon.pid"
-required_files="${prefix}/etc/racoon/racoon.conf"
-stop_postcmd="racoon_poststop"
-
-racoon_poststop() {
- /bin/rm -f ${pidfile}
-}
-
-load_rc_config $name
-run_rc_command "$1"