9323733aa3
- Fixed LVM with thin provisioning Resolves: rhbz#1013767 - fixed swap detection in host only mode
23 lines
660 B
Diff
23 lines
660 B
Diff
From 8d89fc6bb1b5b1f4c8be0694a1e1200a09ae07d1 Mon Sep 17 00:00:00 2001
|
|
From: Harald Hoyer <harald@redhat.com>
|
|
Date: Wed, 16 Oct 2013 11:39:17 +0200
|
|
Subject: [PATCH] dracut.sh: no need to make subdirs in run
|
|
|
|
---
|
|
dracut.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/dracut.sh b/dracut.sh
|
|
index a6e3df3..4613d5b 100755
|
|
--- a/dracut.sh
|
|
+++ b/dracut.sh
|
|
@@ -1094,7 +1094,7 @@ if [[ $kernel_only != yes ]]; then
|
|
fi
|
|
done
|
|
|
|
- for d in dev proc sys sysroot root run run/log run/lock run/initramfs; do
|
|
+ for d in dev proc sys sysroot root run; do
|
|
if [ -L "/$d" ]; then
|
|
inst_symlink "/$d"
|
|
else
|