File: gom.config

package info (click to toggle)
gom 0.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 896 kB
  • sloc: ansic: 3,021; sh: 1,787; makefile: 36
file content (17 lines) | stat: -rw-r--r-- 482 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

# Support for initialization has been dropped, nothing to do here any more.
exit 0

. /usr/share/debconf/confmodule

CONFFILE="/etc/default/gom"
if [ -e "${CONFFILE}" ]; then
	. "${CONFFILE}" || true
	[ -z "${auto_init}" ]           || db_set gom/auto_init "${auto_init}"
	[ -z "${valid_sound_devices}" ] || db_set gom/valid_sound_devices "${valid_sound_devices}"
fi

db_input medium gom/auto_init || true
db_input low    gom/valid_sound_devices || true
db_go || true