File: libcifpp-data.config

package info (click to toggle)
libcifpp 7.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,064 kB
  • sloc: cpp: 35,399; sh: 105; makefile: 12
file content (20 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

CONFIGFILE=/etc/libcifpp.conf

set -e

. /usr/share/debconf/confmodule

# Load config file, if it exists.
if [ -e $CONFIGFILE ]; then
	. $CONFIGFILE || true

	# Store values from config file into
	# debconf db.
	db_set libcifpp/update "$update"
fi

# Ask questions.
db_input high libcifpp/update || true
db_go || true