CC-2521: Provide dependencies in the upstream tarball...

- airtime_virtual_env.pybundle is added
- all python lib are installed from this bundle file
- fixed auto install script to bypass the prompt
- auto install script copies airtime_vhost file to
/etc/apache2/airtime/site_available/airtime
This commit is contained in:
James 2011-07-20 15:11:51 -04:00
parent 48634dd96e
commit f30d8eb315
4 changed files with 3 additions and 16 deletions

View file

@ -11,7 +11,7 @@ else
fi
echo -e "\n*** Installing Python Libraries ***"
sudo /usr/lib/airtime/airtime_virtualenv/bin/pip install kombu poster pyinotify==0.9.2 mutagen==1.20 configobj -E /usr/lib/airtime/airtime_virtualenv
sudo /usr/lib/airtime/airtime_virtualenv/bin/pip install airtime_virtual_env.pybundle -E /usr/lib/airtime/airtime_virtualenv
virtualenv_bin="/usr/lib/airtime/airtime_virtualenv/bin/"
. ${virtualenv_bin}activate

Binary file not shown.

View file

@ -1,11 +0,0 @@
<VirtualHost *:80>
ServerAdmin foo@bar.org
DocumentRoot /var/www/airtime/public
<Directory /var/www/airtime/public>
DirectoryIndex index.php
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</VirtualHost>