40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
|
|
From 4340aca696857c1077b00ff6bdc0454a07929aad Mon Sep 17 00:00:00 2001
|
||
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
|
Date: Fri, 15 May 2015 18:14:09 -0500
|
||
|
|
Subject: [PATCH] change order of multipath.rules
|
||
|
|
|
||
|
|
At least for RedHat, the rule that calls scsi_id is
|
||
|
|
60-persistent-storage.rules, so the multipath rule needs to come
|
||
|
|
after this.
|
||
|
|
|
||
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
|
---
|
||
|
|
multipath/Makefile | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/multipath/Makefile b/multipath/Makefile
|
||
|
|
index 0828a8f..b9bbb3c 100644
|
||
|
|
--- a/multipath/Makefile
|
||
|
|
+++ b/multipath/Makefile
|
||
|
|
@@ -24,7 +24,7 @@ install:
|
||
|
|
$(INSTALL_PROGRAM) -m 755 $(EXEC) $(DESTDIR)$(bindir)/
|
||
|
|
$(INSTALL_PROGRAM) -d $(DESTDIR)$(udevrulesdir)
|
||
|
|
$(INSTALL_PROGRAM) -m 644 11-dm-mpath.rules $(DESTDIR)$(udevrulesdir)
|
||
|
|
- $(INSTALL_PROGRAM) -m 644 $(EXEC).rules $(DESTDIR)$(libudevdir)/rules.d/56-multipath.rules
|
||
|
|
+ $(INSTALL_PROGRAM) -m 644 $(EXEC).rules $(DESTDIR)$(libudevdir)/rules.d/62-multipath.rules
|
||
|
|
$(INSTALL_PROGRAM) -d $(DESTDIR)$(man8dir)
|
||
|
|
$(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(man8dir)
|
||
|
|
$(INSTALL_PROGRAM) -d $(DESTDIR)$(man5dir)
|
||
|
|
@@ -33,7 +33,7 @@ install:
|
||
|
|
uninstall:
|
||
|
|
$(RM) $(DESTDIR)$(bindir)/$(EXEC)
|
||
|
|
$(RM) $(DESTDIR)$(udevrulesdir)/11-dm-mpath.rules
|
||
|
|
- $(RM) $(DESTDIR)$(libudevdir)/rules.d/56-multipath.rules
|
||
|
|
+ $(RM) $(DESTDIR)$(libudevdir)/rules.d/62-multipath.rules
|
||
|
|
$(RM) $(DESTDIR)$(man8dir)/$(EXEC).8.gz
|
||
|
|
$(RM) $(DESTDIR)$(man5dir)/$(EXEC).conf.5.gz
|
||
|
|
|
||
|
|
--
|
||
|
|
1.8.3.1
|
||
|
|
|