File: config.in

package info (click to toggle)
mailcrypt 3.5.5-6.2
  • links: PTS
  • area: contrib
  • in suites: potato
  • size: 696 kB
  • ctags: 331
  • sloc: lisp: 4,142; sh: 170; makefile: 97; perl: 36
file content (36 lines) | stat: -rw-r--r-- 838 bytes parent folder | download
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
#include "variables"
#!/bin/bash -e
#
# config configuration file for Debian <:=$PACKAGE:> package.
# $Id: config.in,v 1.3 1999/10/31 21:54:56 salve Exp $
#
<:=@COPYRIGHT:>//

set -o posix

source <:=$CONFMODULE:>
db_version 2.0

# It seems dpkg doesn't pass $1 to config, so this case is willingly fake.
# Maybe this is a documentation bug for debconf?
case "$1" in
    configure|reconfigure|*)
	if egrep "\brequire[[:space:]]+[^)]*'mailcrypt-init\b" <:=$SSEL:> &>/dev/null; then
	    db_set <:=$PACKAGE:>/default false || true
	    db_text low <:=$PACKAGE:>/alreadydefault || true
	else
	    db_input medium <:=$PACKAGE:>/default || true
	fi
	db_go || true
    ;;
    unknown_and_impossible_armageddon)
	echo "${0##*/}: Called with unknown argument \`$1'." >&2
    ;;
esac

exit 0
<:
# Local Variables:
# mode: shell-script
# End:
:>//