1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00
icecast-server/ci/osc/icecast/debian/config

26 lines
468 B
Plaintext
Raw Normal View History

#!/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