diff options
author | Julien Valroff <julien@kirya.net> | 2010-08-13 09:08:32 +0200 |
---|---|---|
committer | Julien Valroff <julien@kirya.net> | 2010-08-13 09:08:32 +0200 |
commit | a117da4a3f6f08932d41891f9f4d5d89a489b34e (patch) | |
tree | 8c201d5508adce7c79e24d590b35420fe1f57afc /debian/mailgraph.config | |
parent | bb1b2564911596663c79903361e38935bc101114 (diff) |
Rename dh files to mailgraph.*
Diffstat (limited to 'debian/mailgraph.config')
-rw-r--r-- | debian/mailgraph.config | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/mailgraph.config b/debian/mailgraph.config new file mode 100644 index 0000000..81a5977 --- /dev/null +++ b/debian/mailgraph.config @@ -0,0 +1,21 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +db_title "mailgraph" || true + +if [ -r /etc/default/mailgraph ]; then + . /etc/default/mailgraph + db_set mailgraph/start_on_boot "$BOOT_START" + db_set mailgraph/mail_log "$MAIL_LOG" + db_set mailgraph/ignore_localhost "$IGNORE_LOCALHOST" +fi + +db_input medium mailgraph/start_on_boot || true +db_go +db_input medium mailgraph/mail_log || true +db_go +db_input medium mailgraph/ignore_localhost || true +db_go |