add a site_admin account to the bootcd. passwd value can be changed at image build...
[bootcd.git] / prep.sh
diff --git a/prep.sh b/prep.sh
index 7eec98b..da63c48 100755 (executable)
--- a/prep.sh
+++ b/prep.sh
@@ -50,6 +50,9 @@ pkgsfile=$(pl_locateDistroFile ../build/ $pldistro bootcd.pkgs)
 pl_root_mkfedora $bootcd $pldistro $pkgsfile
 pl_root_tune_image $bootcd
 
+# Add site_admin console account to BootCD: with root priv, and empty passwd
+chroot ${bootcd} /usr/sbin/useradd -p "" -o -g 0 -u 0 -m site_admin
+
 # Install ipnmac (for SuperMicro machines with IPMI)
 echo "* Installing IPMI utilities"
 install -D -m 755 ipnmac/ipnmac.x86 $bootcd/usr/sbin/ipnmac
@@ -71,9 +74,12 @@ done
 # fedora 9 comes with /sbin/init from upstart, that uses /etc/event.d instead of inittab
 # (in fact inittab is read for determining the default runlevel)
 if [ -d $bootcd/etc/event.d ] ; then
-    echo "* Tuning /etc/event.d /for upstart"
+    echo "* Tuning /etc/event.d for upstart"
     pushd $bootcd/etc/event.d
+    # use our system initialisation script
     sed -i -e 's,/etc/rc.d/rc.sysinit[a-z\.]*,/etc/init.d/pl_sysinit,g' *
+    # use our startup script in runlevel 2
+    sed -i -e 's,/etc/rc\.d/rc[ \t][ \t]*2,/etc/init.d/pl_boot,g' rc2
     popd    
 fi