File: config

package info (click to toggle)
couriergraph 0.25-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 172 kB
  • ctags: 24
  • sloc: perl: 621; sh: 136; makefile: 53
file content (32 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (2)
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
#!/bin/sh
# config script for CourierGraph
#
# by Jose Luis Tallon <jltallon@adv-solutions.net>

. /usr/share/debconf/confmodule
db_version 2.0

db_title "CourierGraph"

set -e

case "$1" in
        configure|reconfigure)
 
		db_input medium couriergraph/start_on_boot || true
		db_go

		db_input medium couriergraph/logfile || true
		db_go

		db_input medium couriergraph/stay_on_purge || true
		db_go
	;;

	*)
		echo "config called with unknown argument \$1'" >&2
		exit 0
	;;
esac

exit 0