From 31942fa433811fba8c86916aa1be965126a11238 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Wed, 9 Nov 2011 18:08:00 -0500 Subject: [PATCH] CC-2870: Create testing infrastructure for testing upgrades -1.9.4 needs apt-get update to be run before installing. --- dev_tools/fabric/fab_setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev_tools/fabric/fab_setup.py b/dev_tools/fabric/fab_setup.py index 1f1a013e7..1f4316124 100644 --- a/dev_tools/fabric/fab_setup.py +++ b/dev_tools/fabric/fab_setup.py @@ -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')