config is in racoon 1:0.8.0-9ubuntu1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
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 | #!/bin/sh
set -e
CONFFILE=/etc/default/racoon
# Source debconf library.
. /usr/share/debconf/confmodule
 
CONFIG_MODE=""
if test -e "$CONFFILE"; then
	. "$CONFFILE"
	# Guard against admin writing silly things into the
	# config file...
	if test "$CONFIG_MODE" != "racoon-tool"; then 
		db_set racoon/config_mode "direct"
	else
		db_set racoon/config_mode "racoon-tool"
	fi
	
fi
# Setup and select the configuration mode
db_input high racoon/config_mode || true
db_go
 |