i-t: don't try to import from empty cache
Chases 7c64ee9e77
("zfs-import-{cache,scan}: change condition to FileNotEmpty")
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Closes #12108
This commit is contained in:
parent
11b165cc9b
commit
b12a6d961c
|
@ -709,7 +709,8 @@ mountroot()
|
||||||
|
|
||||||
# ------------
|
# ------------
|
||||||
# Look for the cache file (if any).
|
# Look for the cache file (if any).
|
||||||
[ ! -f "${ZPOOL_CACHE}" ] && unset ZPOOL_CACHE
|
[ -f "${ZPOOL_CACHE}" ] || unset ZPOOL_CACHE
|
||||||
|
[ -s "${ZPOOL_CACHE}" ] || unset ZPOOL_CACHE
|
||||||
|
|
||||||
# ------------
|
# ------------
|
||||||
# Compatibility: 'ROOT' is for Debian GNU/Linux (etc),
|
# Compatibility: 'ROOT' is for Debian GNU/Linux (etc),
|
||||||
|
|
Loading…
Reference in New Issue