7ba020668f
- include more HID driver - include machine info file - fix network carrier detection - fix nbd - do not copy over lldpad state - restorecon the final initramfs image
25 lines
1.0 KiB
Diff
25 lines
1.0 KiB
Diff
From efd3a6db74ebcc453e216966a5914b63e2b29aff Mon Sep 17 00:00:00 2001
|
|
From: Harald Hoyer <harald@redhat.com>
|
|
Date: Mon, 14 Dec 2015 11:16:42 +0100
|
|
Subject: [PATCH] livenet/module-setup.sh: only include systemd generator if
|
|
systemd included
|
|
|
|
---
|
|
modules.d/90livenet/module-setup.sh | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/90livenet/module-setup.sh b/modules.d/90livenet/module-setup.sh
|
|
index 3a8d4ba..11738b8 100755
|
|
--- a/modules.d/90livenet/module-setup.sh
|
|
+++ b/modules.d/90livenet/module-setup.sh
|
|
@@ -17,6 +17,8 @@ install() {
|
|
inst_hook cmdline 29 "$moddir/parse-livenet.sh"
|
|
inst_hook initqueue/online 95 "$moddir/fetch-liveupdate.sh"
|
|
inst_script "$moddir/livenetroot.sh" "/sbin/livenetroot"
|
|
- inst_script "$moddir/livenet-generator.sh" $systemdutildir/system-generators/dracut-livenet-generator
|
|
+ if dracut_module_included "systemd-initrd"; then
|
|
+ inst_script "$moddir/livenet-generator.sh" $systemdutildir/system-generators/dracut-livenet-generator
|
|
+ fi
|
|
dracut_need_initqueue
|
|
}
|