File: config

package info (click to toggle)
icecast2 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,560 kB
  • sloc: ansic: 34,522; sh: 5,187; makefile: 376; xml: 106; javascript: 88
file content (25 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# Debconf config script for icecast2

set -e

. /usr/share/debconf/confmodule

db_input high icecast2/icecast-setup || true
db_go ||true

db_get icecast2/icecast-setup
if [ "$RET" = "true" ]; then
	db_input high icecast2/hostname || true
	db_go ||true
	db_input high icecast2/sourcepassword || true
	db_go ||true
	db_input high icecast2/relaypassword|| true
	db_go ||true
	db_input high icecast2/adminpassword || true
	db_go ||true
fi

#DEBHELPER#

exit 0