File: gom.config

package info (click to toggle)
gom 0.30.2-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 852 kB
  • ctags: 325
  • sloc: ansic: 3,021; sh: 1,548; makefile: 74
file content (13 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -e
. /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