| 12345678910111213141516171819202122 | #!/bin/sh -e# Rene Mayrhofer <rmayr@vianova.at>, Oct. 1999# I hereby put this script under the Artistic License.. /usr/share/debconf/confmodule.shdb_input high pptpd/localipdb_input high pptpd/remoteip# ask if mppe encryption should be useddb_input pptpd/mppedb_go# check the answer(s)db_get pptpd/mppeif [ "$RET" = "false" ]; then	# display a warning	db_input high pptpd/no-mppe	db_gofi
 |