calls make_image.sh to build the base install
diff --git a/build_pxe_ramdisk.sh b/build_pxe_ramdisk.sh
index 648fc3b..197bfc9 100755
--- a/build_pxe_ramdisk.sh
+++ b/build_pxe_ramdisk.sh
@@ -6,17 +6,19 @@
exit 1
fi
+PROGDIR=`dirname $0`
+
# Source params
source ./stackrc
# clean install of natty
if [ ! -d natty-base ]; then
- debootstrap natty natty-base
+ $PROGDIR/make_image.sh -C natty natty-base
# copy kernel modules...
# NOTE(ja): is there a better way to do this?
cp -pr /lib/modules/`uname -r` natty-base/lib/modules
- cp files/sources.list natty-base/etc/apt/sources.list
- chroot natty-base apt-get update
+ # a simple password - pass
+ echo root:pass | chroot natty-base chpasswd
fi
# prime natty with as many apt/pips as we can