aboutsummaryrefslogtreecommitdiffstats
path: root/security/racoon/files/racoon.sh
diff options
context:
space:
mode:
authorsumikawa <sumikawa@FreeBSD.org>2005-11-18 22:22:26 +0800
committersumikawa <sumikawa@FreeBSD.org>2005-11-18 22:22:26 +0800
commita41ba4cbc12f4fd28579675ec510a41bac4c4969 (patch)
tree687bbaa7fab47d01c6b5862e735ff6052888af2c /security/racoon/files/racoon.sh
parentd0e78b82a4df34395d97e0162afceee0b692450d (diff)
downloadfreebsd-ports-gnome-a41ba4cbc12f4fd28579675ec510a41bac4c4969.tar.gz
freebsd-ports-gnome-a41ba4cbc12f4fd28579675ec510a41bac4c4969.tar.zst
freebsd-ports-gnome-a41ba4cbc12f4fd28579675ec510a41bac4c4969.zip
Racoon is now maintained in security/ipsec-tools.
Diffstat (limited to 'security/racoon/files/racoon.sh')
-rw-r--r--security/racoon/files/racoon.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/security/racoon/files/racoon.sh b/security/racoon/files/racoon.sh
deleted file mode 100644
index ecde585dad87..000000000000
--- a/security/racoon/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"