From e3093b98a53cd9caf3d04ea3d1decaf4a062972f Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Fri, 14 Oct 2011 14:26:10 +0200 Subject: [PATCH] CC-2870: Create testing infrastructure for testing upgrades -shuffle and rename some functions --- dev_tools/fabric/fab_setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev_tools/fabric/fab_setup.py b/dev_tools/fabric/fab_setup.py index 8dbe87bda..45b428f5a 100644 --- a/dev_tools/fabric/fab_setup.py +++ b/dev_tools/fabric/fab_setup.py @@ -126,7 +126,12 @@ def airtime_182_tar(): reboot(45) sudo('airtime-check-system') -def airtime_182_deb(): +def airtime_194_tar(): + 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') + +def airtime_latest_deb(): append('/etc/apt/sources.list', "deb http://apt.sourcefabric.org/ lucid main", use_sudo=True) append('/etc/apt/sources.list', "deb http://archive.ubuntu.com/ubuntu/ lucid multiverse", use_sudo=True) sudo('apt-get update') @@ -135,11 +140,6 @@ def airtime_182_deb(): sudo('apt-get install -y icecast2') sudo('apt-get purge -y pulseaudio') sudo('apt-get install -y --force-yes airtime') - -def airtime_194_tar(): - 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') def airtime_devel(): sudo('apt-get update')