Browse code

allow comments in apts/pips list

Jesse Andrews authored on 2011/09/12 07:27:54
Showing 2 changed files
... ...
@@ -11,9 +11,13 @@ libvirt-bin
11 11
 vlan
12 12
 curl
13 13
 rabbitmq-server
14
-socat
14
+erlang-base # install erlang deps for rabbit explicitly since we don't install rabbit during bootstrap
15
+erlang-ssl 
16
+erlang-nox
17
+erlang-inets
18
+erlang-mnesia
19
+socat # used by ajaxterm
15 20
 python-mox
16
-python-ipy
17 21
 python-paste
18 22
 python-migrate
19 23
 python-gflags
... ...
@@ -15,8 +15,8 @@ if [ ! -d nfs ]; then
15 15
     debootstrap natty nfs
16 16
     cp sources.list nfs/etc/apt/sources.list
17 17
     chroot nfs apt-get update
18
-    chroot nfs apt-get install -y `cat apts/* | egrep -v "(rabbitmq|libvirt)"`
19
-    chroot nfs pip install `cat pips/*`
18
+    chroot nfs apt-get install -y `cat apts/* | cut -d\# -f1 | egrep -v "(rabbitmq|libvirt)"`
19
+    chroot nfs pip install `cat pips/* | cut -d\# -f1`
20 20
     git clone https://github.com/cloudbuilders/nova.git nfs/opt/nova
21 21
     git clone https://github.com/cloudbuilders/openstackx.git nfs/opt/openstackx
22 22
     git clone https://github.com/cloudbuilders/noVNC.git nfs/opt/noVNC