#!/bin/bash
#
action=install
if [ ! -z $1 ]; then
   action=$1
fi
#
read -r -d '' PLIST <<'EOF'
autoconf
debconf-utils
sudo
libsrtp0 
libsrtp0-dev 
ntp 
lighttpd 
php5-fpm 
php5
libsrtp-dev
srtp-utils
tftpd-hpa
tftp-hpa
wget
EOF
echo $PLIST
#
# Download the packages
#
for i in $PLIST; do echo $i;aptitude -y $action $i; done
