X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=prep.sh;h=59b80aae2b81c5cd017602f495635ae26051b73d;hb=417568827a6a6eaf1df70d3f2dc0cd7d8a35bd7b;hp=4d45e763af799770cf5e43dd4c73d07ea284ca2d;hpb=b5b7d860157f6458aca2d69a30092ecd7fc5a616;p=bootcd.git diff --git a/prep.sh b/prep.sh index 4d45e76..59b80aa 100755 --- a/prep.sh +++ b/prep.sh @@ -43,6 +43,7 @@ rpmquery --specfile bootcd.spec --queryformat '%{VERSION}\n' | head -1 > build/v echo $nodefamily > build/nodefamily # Install base system +echo "* Creating fedora root image" pl_root_makedevs $bootcd pkgsfile=$(pl_locateDistroFile ../build/ $pldistro bootcd.pkgs) pl_root_mkfedora $bootcd $pldistro $pkgsfile @@ -79,8 +80,9 @@ if [ -d $bootcd/etc/event.d ] ; then # 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 -elif [ -d $bootcd/etc/init ] ; then +fi # ditto for f14 and higher init style +if [ -d $bootcd/etc/init ] ; then echo "* Tuning /etc/init/ for upstart" pushd $bootcd/etc/init # use our system initialisation script @@ -89,6 +91,15 @@ elif [ -d $bootcd/etc/init ] ; then sed -i -e 's,/etc/rc.d/rc[a-z\.]*,/etc/init.d/pl_boot,g' rc.conf popd fi +# Install systemd files for f16 and above +if [ -d $bootcd/etc/systemd/system ] ; then + echo "* Installing systemd files" + for file in pl_boot.service pl_boot.target ; do + install -D -m 644 systemd/$file $bootcd/etc/systemd/system + done + # select pl_boot target this way instead of using kargs, as kargs apply to kexec boot as well + ln -sf /etc/systemd/system/pl_boot.target $bootcd/etc/systemd/system/default.target +fi # Install fallback node configuration file echo "* Installing fallback node configuration file"