#!/bin/bash -ex
HOSTNAME=Airtime
echo "$HOSTNAME" > /etc/hostname
sed -i "s|127.0.1.1 \(.*\)|127.0.1.1 $HOSTNAME|" /etc/hosts
#APT_SOURCES=/etc/apt/sources.list.d
#sed -i "/lucid multiverse/ s/# //" $APT_SOURCES/sources.list
debconf-set-selections -v << END
rabbitmq-server rabbitmq-server/upgrade_previous note
airtime airtime/apache-serveradmin string root@localhost
airtime airtime/apache-setup select dedicated v-host
airtime airtime/apache-servername string localhost
airtime airtime/apache-deldefault select no change
airtime airtime/icecast-hostname string localhost
airtime airtime/icecast-sourcepw string hackme
airtime airtime/admin-password string admin
airtime airtime/icecast-relaypw string hackme
airtime airtime/icecast-adminpw string hackme
airtime airtime/icecast-setup boolean false
END
echo "deb http://backports.debian.org/debian-backports squeeze-backports main" >> /etc/apt/sources.list.d/sources.list
echo "deb http://apt.sourcefabric.org/ squeeze main" > /etc/apt/sources.list.d/codefabric.list
#echo "deb http://www.rabbitmq.com/debian/ testing main" >> /etc/apt/sources.list.d/codefabric.list - no help
#wget http://www.rabbitmq.com/rabbitmq-signing-key-public.asc -forget it
#apt-key add rabbitmq-signing-key-public.asc -unnecassary
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes \
-o DPkg::Options::=--force-confdef \
-o DPkg::Options::=--force-confold \
install sourcefabric-keyring python-pkg-resources python-setuptools
apt-get update
#Install python-virtualenv
wget http://apt.sourcefabric.org/pool/main/p/python-virtualenv/python-virtualenv_1.4.9-3_all.deb
dpkg -i python-virtualenv_1.4.9-3_all.deb
DEBIAN_FRONTEND=noninteractive apt-get -y \
-o DPkg::Options::=--force-confdef \
-o DPkg::Options::=--force-confold \
install airtime
rik goldman said:Patch complete. Airtime 2.0.3 is now available as a dedicated appliance built over TurnKey Linux’s LAPP stack. ISO is available here,
as is the patch from which the ISO is derived. Appliance includes
webmin, shellinabox, ssh, and of course Apache2 and postgres - all built
over Ubuntu’s Lucid (TurnKey Linux's Core). Default credentials for airtime are admin/admin; root and postgres credentials, and tzdata, are configured on first boot. I look forward to feedback, comments, suggestions.
Ultimately, the install couldn't pass the install check that package has built into
It looks like you're new here. If you want to get involved, click one of these buttons!