Blame SOURCES/0015-bcache-optionally-install-the-tools-and-rules.patch

712866
From a5659901e87ef70b3cf8ea8b254e3d0f9fa88d96 Mon Sep 17 00:00:00 2001
712866
From: Harald Hoyer <harald@redhat.com>
712866
Date: Wed, 9 Oct 2013 09:50:15 +0200
712866
Subject: [PATCH] bcache: optionally install the tools and rules
712866
712866
---
712866
 modules.d/90bcache/module-setup.sh | 6 +++---
712866
 1 file changed, 3 insertions(+), 3 deletions(-)
712866
712866
diff --git a/modules.d/90bcache/module-setup.sh b/modules.d/90bcache/module-setup.sh
712866
index b02b8b4..a5a57ed 100755
712866
--- a/modules.d/90bcache/module-setup.sh
712866
+++ b/modules.d/90bcache/module-setup.sh
712866
@@ -27,7 +27,7 @@ installkernel() {
712866
 }
712866
 
712866
 install() {
712866
-    blkid -k | { while read line; do [[ $line == bcache ]] && exit 0; done; exit 1; } || inst_multiple probe-bcache
712866
-    inst_multiple ${udevdir}/bcache-register
712866
-    inst_rules 61-bcache.rules
712866
+    blkid -k | { while read line; do [[ $line == bcache ]] && exit 0; done; exit 1; } || inst_multiple -o probe-bcache
712866
+    inst_multiple -o ${udevdir}/bcache-register
712866
+    inst_rules 61-bcache.rules 69-bcache.rules
712866
 }