Browse code

fix for concurrent builds

Anthony Young authored on 2011/11/16 06:03:19
Showing 1 changed files
... ...
@@ -34,7 +34,7 @@ fi
34 34
 
35 35
 # Install deps if needed
36 36
 DEPS="kvm libvirt-bin kpartx cloud-utils curl"
37
-apt-get install -y --force-yes $DEPS
37
+apt-get install -y --force-yes $DEPS || true # allow this to fail gracefully for concurrent builds
38 38
 
39 39
 # Where to store files and instances
40 40
 WORK_DIR=${WORK_DIR:-/opt/kvmstack}