From: Thierry Parmentelat Date: Sat, 23 Feb 2013 16:08:06 +0000 (+0100) Subject: mkdir default.target.wants if not present, for f14 X-Git-Tag: bootcd-5.1-5~1 X-Git-Url: http://git.onelab.eu/?p=bootcd.git;a=commitdiff_plain;h=6094d2f4e679a30cbe863cda31bd44503fcf8b47 mkdir default.target.wants if not present, for f14 --- diff --git a/prep.sh b/prep.sh index 8ea554a..3b75b56 100755 --- a/prep.sh +++ b/prep.sh @@ -100,6 +100,7 @@ if [ -d $bootcd/etc/systemd/system ] ; then echo "* Enabling getty on tty2" # 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 + [ -d $bootcd/etc/systemd/system/default.target.wants ] || mkdir -p $bootcd/etc/systemd/system/default.target.wants ln -sf /usr/lib/systemd/system/getty@.service $bootcd/etc/systemd/system/default.target.wants/getty@tty2.service fi