7f4a44d791
Patches which add new features were skipped.
32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
From 4f8af0528de94c6c0e7d8613f257676593a9038b Mon Sep 17 00:00:00 2001
|
|
From: WANG Chao <chaowang@redhat.com>
|
|
Date: Fri, 4 Apr 2014 14:37:42 +0800
|
|
Subject: [PATCH] dracut-pre-pivot pulls in remote-fs.target
|
|
|
|
It turns out that commit f30b74e (dracut-initqueue service runs before
|
|
remote-fs-pre.target) is partial fix for remote fs mounts. Because no
|
|
one pulls in remote-fs.target, we can never start remote fs mounts.
|
|
Now pull in remote-fs.target in dracut-pre-pivot.
|
|
|
|
Signed-off-by: WANG Chao <chaowang@redhat.com>
|
|
---
|
|
modules.d/98systemd/dracut-pre-pivot.service | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/modules.d/98systemd/dracut-pre-pivot.service b/modules.d/98systemd/dracut-pre-pivot.service
|
|
index 6db1f2c077..d7c7b1d785 100644
|
|
--- a/modules.d/98systemd/dracut-pre-pivot.service
|
|
+++ b/modules.d/98systemd/dracut-pre-pivot.service
|
|
@@ -13,6 +13,8 @@ Documentation=man:dracut-pre-pivot.service(8)
|
|
After=initrd.target initrd-parse-etc.service sysroot.mount
|
|
After=dracut-initqueue.service dracut-pre-mount.service dracut-mount.service
|
|
Before=initrd-cleanup.service
|
|
+Wants=remote-fs.target
|
|
+After=remote-fs.target
|
|
ConditionPathExists=/etc/initrd-release
|
|
ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-pivot
|
|
ConditionDirectoryNotEmpty=|/lib/dracut/hooks/cleanup
|
|
--
|
|
1.9.3
|
|
|