/etc/init.d/racoon is in racoon 1:0.8.2+20140711-5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | #! /bin/sh
### BEGIN INIT INFO
# Provides:          racoon
# Required-Start:    $remote_fs setkey
# Required-Stop:
# Should-Start:	     $portmap
# Should-Stop:	     $portmap
# Default-Start:     S
# Default-Stop:      0 1 6
# X-Stop-After:	     sendsigs
# Short-Description: start the ipsec key exchange server 
### END INIT INFO
#
#		Written by Miquel van Smoorenburg <miquels@cistron.nl>.
#		Modified for Debian GNU/Linux
#		by Ian Murdock <imurdock@gnu.ai.mit.edu>.
#		Modified from /etc/init.d/skeleton
#		by Matthew Grant <grantma@anathoth.gen.nz>
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
TOOL=/usr/sbin/racoon-tool
DAEMON=/usr/sbin/racoon
NAME=racoon
DESC="IKE (ISAKMP/Oakley) server"
DEF_CFG="/etc/default/racoon"
PID_FILE="/var/run/racoon.pid"
PROC_FILE="/proc/net/pfkey"
test -f $TOOL || exit 0
test -f $DAEMON || exit 0
CONFIG_MODE="direct"
RACOON_ARGS=""
[ -f "$DEF_CFG" ] && . $DEF_CFG
if [ ! -d /var/run/racoon ]; then
	mkdir -p /var/run/racoon
fi
check_kernel () {
	local MOD_DIR=/lib/modules/`uname -r`
	local FOUT
	[ -f "$PROC_FILE" ] && return 0
	[ ! -d "$MOD_DIR" ] && return 1
	FOUT=`find $MOD_DIR -name "*af_key*"`
	[ -z "$FOUT" ] && return 1
	return 0
}
if [ "$(uname -s)" = "Linux" ] && ! check_kernel ; then
        echo "racoon - IKE keying daemon will not be started as $PROC_FILE is not" 1>&2
        echo "         available or a suitable 2.6 (or 2.4 with IPSEC backport)" 1>&2
        echo "         kernel with af_key.[k]o module installed." 1>&2
	exit 0
fi
if [ "$(uname -s)" = "GNU/kFreeBSD" ]; then
	result=0
	setkey -DP >/dev/null || result=$?
	if [ $result -ne 0 ]; then
		echo "racoon - IKE keying daemon will not be started as this kFreeBSD kernel" 1>&2
		echo "is not compiled with support for IPsec." 1>&2
		exit 0;
	fi
fi
. /lib/init/vars.sh
. /lib/lsb/init-functions
do_start () {
        start-stop-daemon --start --quiet --pidfile $PID_FILE --exec $DAEMON --test > /dev/null \
		|| return 1
	start-stop-daemon --start --quiet --exec ${DAEMON} -- ${RACOON_ARGS} \
		|| return 2
}
do_stop () {
	start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PID_FILE --name $NAME
	RETVAL="$?"
	[ "$RETVAL" = 2 ] && return 2
	start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
	[ "$?" = 2 ] && return 2
        rm -f $PID_FILE /var/run/racoon/racoon.sock
	return "$RETVAL"
}
case  $CONFIG_MODE in
  racoon-tool)
  # /usr/sbin/racoon-tool command complies with Debian Policy so just do this:
  # NB the following makes lintian happy
	case "$1" in
	  start|stop|reload|force-reload|restart)
		$TOOL $*
		;;
	  status)
        	status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
		;;
	  *)
		$TOOL $*
		;;
	esac
	;;
  *)
	case "$1" in
        start)
                [ "$VERBOSE" != no ] && log_begin_msg "Starting $DESC" "$NAME"
		do_start
		case "$?" in
			0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
			2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
		esac
                ;;
         
	stop)	
		[ "$VERBOSE" != no ] && log_begin_msg "Stopping $DESC" "$NAME"
		do_stop
		case "$?" in
			0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
			2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
		esac
                ;;
         
	reload)
                racoonctl reload-config
	        ;;
        
	status)
        	status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
        	;;
	restart|force-reload)
		log_daemon_msg "Restarting $DESC" "$NAME"
		do_stop
		case "$?" in
			0|1)
				do_start
                		case "$?" in
                        		0) log_end_msg 0 ;;
                        		1) log_end_msg 1 ;; # Old process is still running
                        		*) log_end_msg 1 ;; # Failed to start
                		esac
			;;
		*)
			log_end_msg 1
			;;
		esac
		;;
        *)
                log_success_msg "Usage: $0 {start|stop|status|reload|force-reload|restart}" >&2
	        exit 1
	esac
	;;
esac
exit 0
 |