force dep updates every run for now
This commit is contained in:
parent
04db155a70
commit
6b9d6dad6a
1 changed files with 5 additions and 3 deletions
|
@ -119,12 +119,14 @@ if [ ! -f $CACHEDIR/bootstrapped ]; then
|
|||
lxc-destroy -n $CONTAINER
|
||||
# trigger the initial debootstrap
|
||||
create_lxc
|
||||
chroot $CACHEDIR apt-get update
|
||||
chroot $CACHEDIR apt-get install -y --force-yes `cat files/apts/* | cut -d\# -f1 | egrep -v "(rabbitmq|libvirt-bin|mysql-server)"`
|
||||
chroot $CACHEDIR pip install `cat files/pips/*`
|
||||
touch $CACHEDIR/bootstrapped
|
||||
fi
|
||||
|
||||
# Make sure that base requirements are installed
|
||||
chroot $CACHEDIR apt-get update
|
||||
chroot $CACHEDIR apt-get install -y --force-yes `cat files/apts/* | cut -d\# -f1 | egrep -v "(rabbitmq|libvirt-bin|mysql-server)"`
|
||||
chroot $CACHEDIR pip install `cat files/pips/*`
|
||||
|
||||
# Clean out code repos if directed to do so
|
||||
if [ "$CLEAN" = "1" ]; then
|
||||
rm -rf $CACHEDIR/$DEST
|
||||
|
|
Loading…
Reference in a new issue