From e0828c9b82ce0975c76dccb544fdf6bc00a8b94b Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Thu, 12 Jan 2012 14:09:39 -0500 Subject: [PATCH] --force-yes on apt-get for debian's sake. --- dev_tools/fabric/fab_release_test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev_tools/fabric/fab_release_test.py b/dev_tools/fabric/fab_release_test.py index 65563b46c..201d22196 100644 --- a/dev_tools/fabric/fab_release_test.py +++ b/dev_tools/fabric/fab_release_test.py @@ -51,6 +51,9 @@ def do_local(command, capture=True): sys.exit(1) else: return result + +def pause(): + raw_input("--> Press Enter to continue...") def shutdown(): do_sudo("poweroff") @@ -193,7 +196,7 @@ def airtime_182_tar(): def airtime_18x_tar(root_dir, version): do_sudo('apt-get update') - do_sudo('apt-get install -y tar gzip unzip apache2 php5-pgsql libapache2-mod-php5 ' + \ + do_sudo('apt-get install -y --force-yes tar gzip unzip apache2 php5-pgsql libapache2-mod-php5 ' + \ 'php-pear php5-gd postgresql odbc-postgresql python python-configobj poc-streamer ' + \ 'lame daemontools daemontools-run python-mutagen libsoundtouch-ocaml sudo ' + \ 'libtaglib-ocaml libao-ocaml libmad-ocaml libesd0 icecast2 oggvideotools ' + \