From e6ec09692be2a80747164fbca9036cf699ab2d85 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 20 Jan 2016 21:37:30 +0100 Subject: update the dracut stuff Not tested, though... --- dracut/module-setup.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'dracut') diff --git a/dracut/module-setup.sh b/dracut/module-setup.sh index d907ba7..4a06e84 100755 --- a/dracut/module-setup.sh +++ b/dracut/module-setup.sh @@ -10,12 +10,23 @@ depends() { } install() { + # install basic files to initramfs inst_rules "$moddir/20-ykfde.rules" inst_hook cmdline 30 "$moddir/parse-mod.sh" inst_simple "$moddir/ykfde.sh" /sbin/ykfde.sh inst_simple /usr/lib/udev/ykfde inst_simple /etc/ykfde.conf - inst_dir /etc/ykfde.d/* + + # this is required for second factor + if egrep -qi 'second factor = (yes|true|1)' /etc/ykfde.conf; then + inst_simple /usr/lib/systemd/system/cryptsetup-pre.target + inst_simple /usr/lib/systemd/system/ykfde-2f.service + ln_r $systemdsystemunitdir/ykfde-2f.service $systemdsystemunitdir/sysinit.target.wants/ykfde-2f.service + inst_simple /usr/lib/systemd/scripts/ykfde-2f + inst_simple /usr/bin/keyctl + inst_simple /usr/bin/systemd-ask-password + + fi dracut_need_initqueue } -- cgit v1.2.3-54-g00ecf