diff --git a/mkdumprd b/mkdumprd index 0376320..b49b74f 100644 --- a/mkdumprd +++ b/mkdumprd @@ -103,7 +103,9 @@ to_mount() { _t=$(findmnt -k -f -n -r -o TARGET,FSTYPE $_dev) _o=$(findmnt -k -f -n -r -o OPTIONS $_dev) _o=${_o/#ro/rw} #mount fs target as rw in 2nd kernel - _o="${_o},nofail" #with nofail set, systemd won't block for mount failure + # "nofail" mount could be run later than kdump.sh. So we don't pass nofail + # for short term. + #_o="${_o},nofail" #with nofail set, systemd won't block for mount failure _mntopts="$_t $_o" #for non-nfs _dev converting to use udev persistent name if [ -b "$_s" ]; then