File: config

package info (click to toggle)
efingerd 1.6.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 196 kB
  • ctags: 35
  • sloc: sh: 339; ansic: 254; makefile: 61
file content (17 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

action=$1
version=$2

# Source debconf library.
. /usr/share/debconf/confmodule
#db_version 2.0

db_input low efingerd/allow_files || true
db_input low efingerd/show_names || true
if [ "$action" = "configure" ]; then
  db_text low efingerd/note || true
fi
db_go

#exit 0