]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
95fcoe: default rd.nofcoe to false
authorThomas Blume <Thomas.Blume@suse.com>
Mon, 24 Feb 2020 11:11:25 +0000 (12:11 +0100)
committerDaniel Molkentin <daniel@molkentin.de>
Wed, 11 Mar 2020 11:29:03 +0000 (12:29 +0100)
rd.nofcoe should default to false, e.g. fcoe should be enabled unless
overwritten from the command line.
The same applies for lldapd.sh.

modules.d/95fcoe/lldpad.sh
modules.d/95fcoe/parse-fcoe.sh

index 444c943e872ddeb8c5a3f38e953d898fa2df1a31..7faa2e19dcdcbf9c4f16f6025d2fe6dcc2dd8013 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-if getargbool 0 rd.nofcoe ; then
+if getargbool 0 rd.nofcoe ; then
        info "rd.nofcoe=0: skipping lldpad activation"
        return 0
 fi
index 8bb55c6e67093e8546c377ac893ff1470dfd6927..86f4331e62ccfd7d8c07aa9754fd07cc1f4472f0 100755 (executable)
@@ -13,7 +13,7 @@
 # fcoe=eth0:nodcb:vn2vn
 # fcoe=4a:3f:4c:04:f8:d7:nodcb:fabric
 
-if getargbool 0 rd.nofcoe ; then
+if getargbool 0 rd.nofcoe ; then
        info "rd.nofcoe=0: skipping fcoe"
        return 0
 fi