From: Thierry Parmentelat Date: Thu, 2 Oct 2008 08:36:58 +0000 (+0000) Subject: triggers pl_boot under upstart X-Git-Tag: BootCD-4.2-6~2 X-Git-Url: http://git.onelab.eu/?p=bootcd.git;a=commitdiff_plain;h=b4fcec7b04d6f3f7b2d250db8d6906024066b2cc triggers pl_boot under upstart --- diff --git a/prep.sh b/prep.sh index 7eec98b..68bebcf 100755 --- a/prep.sh +++ b/prep.sh @@ -71,9 +71,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