Skip destroyed pools in zpool import

This commit is contained in:
Faruk Kasumovic 2018-08-06 14:54:13 +02:00
parent 4cd8ea7346
commit 897b81a1af
1 changed files with 3 additions and 0 deletions

View File

@ -376,6 +376,9 @@ func poolSearchImport(q string, searchpaths []string, guid bool) (name string,
err = errPoolList err = errPoolList
return return
} }
if PoolState(C.get_zpool_state(tconfig)) == PoolStateDestroyed {
continue // skip destroyed pools
}
if guid { if guid {
sguid := fmt.Sprint(C.get_zpool_guid(tconfig)) sguid := fmt.Sprint(C.get_zpool_guid(tconfig))
if q == sguid { if q == sguid {