Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/
Date: Thu, 29 Aug 2019 20:49:14
Message-Id: 1567111504.7f6627c96cbb22eb758e060c64c066fc85b7e50f.whissi@gentoo
1 commit: 7f6627c96cbb22eb758e060c64c066fc85b7e50f
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 29 20:45:04 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 29 20:45:04 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=7f6627c9
7
8 initrd.scripts: start_volumes(): dmsetup was moved to /usr/sbin
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 defaults/initrd.scripts | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
16 index 48a2d3d..b33fad7 100644
17 --- a/defaults/initrd.scripts
18 +++ b/defaults/initrd.scripts
19 @@ -1396,7 +1396,7 @@ start_volumes() {
20 [ -x "${multipath_path}" ] && break
21 done
22
23 - for dmsetup_path in /sbin/dmsetup /bin/dmsetup MISSING
24 + for dmsetup_path in /usr/sbin/dmsetup /sbin/dmsetup /bin/dmsetup MISSING
25 do
26 [ -x "${dmsetup_path}" ] && break
27 done