CC-2870: Create testing infrastructure for testing upgrades

-1.9.4 needs apt-get update to be run before installing.
This commit is contained in:
Martin Konecny 2011-11-09 18:08:00 -05:00
parent cec90ddf70
commit 31942fa433

View file

@ -177,6 +177,10 @@ def airtime_182_tar():
sudo('airtime-check-system')
def airtime_194_tar():
#1.9.4 doesn't do apt-get update during install, and therefore the package index
#files are not resynchronized. Need to do this here.
sudo('apt-get update')
run('wget http://downloads.sourceforge.net/project/airtime/1.9.4/airtime-1.9.4.tar.gz')
run('tar xfz airtime-1.9.4.tar.gz')
sudo('cd ~/airtime-1.9.4/install_full/ubuntu && ./airtime-full-install')