allow comments in apts/pips list

This commit is contained in:
Jesse Andrews 2011-09-11 15:27:54 -07:00
parent 2e8ade1d72
commit 8622bf2f39
2 changed files with 8 additions and 4 deletions

View File

@ -11,9 +11,13 @@ libvirt-bin
vlan vlan
curl curl
rabbitmq-server rabbitmq-server
socat erlang-base # install erlang deps for rabbit explicitly since we don't install rabbit during bootstrap
erlang-ssl
erlang-nox
erlang-inets
erlang-mnesia
socat # used by ajaxterm
python-mox python-mox
python-ipy
python-paste python-paste
python-migrate python-migrate
python-gflags python-gflags

View File

@ -15,8 +15,8 @@ if [ ! -d nfs ]; then
debootstrap natty nfs debootstrap natty nfs
cp sources.list nfs/etc/apt/sources.list cp sources.list nfs/etc/apt/sources.list
chroot nfs apt-get update chroot nfs apt-get update
chroot nfs apt-get install -y `cat apts/* | egrep -v "(rabbitmq|libvirt)"` chroot nfs apt-get install -y `cat apts/* | cut -d\# -f1 | egrep -v "(rabbitmq|libvirt)"`
chroot nfs pip install `cat pips/*` chroot nfs pip install `cat pips/* | cut -d\# -f1`
git clone https://github.com/cloudbuilders/nova.git nfs/opt/nova git clone https://github.com/cloudbuilders/nova.git nfs/opt/nova
git clone https://github.com/cloudbuilders/openstackx.git nfs/opt/openstackx git clone https://github.com/cloudbuilders/openstackx.git nfs/opt/openstackx
git clone https://github.com/cloudbuilders/noVNC.git nfs/opt/noVNC git clone https://github.com/cloudbuilders/noVNC.git nfs/opt/noVNC