File: config

package info (click to toggle)
pptpd 1.3.0-2etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,036 kB
  • ctags: 856
  • sloc: ansic: 5,338; sh: 613; perl: 157; makefile: 130
file content (22 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh -e
# Rene Mayrhofer <rmayr@vianova.at>, Oct. 1999
# I hereby put this script under the Artistic License.

. /usr/share/debconf/confmodule.sh

db_input high pptpd/localip
db_input high pptpd/remoteip

# ask if mppe encryption should be used
db_input pptpd/mppe
db_go

# check the answer(s)
db_get pptpd/mppe
if [ "$RET" = "false" ]; then
	# display a warning
	db_input high pptpd/no-mppe
	db_go
fi