mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
types zpool: create pool if device is a zfs_member
This commit is contained in:
parent
1efdc66977
commit
f6f2e009d6
1 changed files with 3 additions and 0 deletions
|
@ -73,6 +73,9 @@
|
|||
elif (blkid "$dev" -o export | grep '^PTUUID='); then
|
||||
echo "device $dev already has a partuuid, skipping creating zpool ${config.name}" >&2
|
||||
continue=0
|
||||
elif (blkid "$dev" -o export | grep '^TYPE=zfs_member'); then
|
||||
# zfs_member is a zfs partition, so we try to add the device to the pool
|
||||
:
|
||||
elif (blkid "$dev" -o export | grep '^TYPE='); then
|
||||
echo "device $dev already has a partition, skipping creating zpool ${config.name}" >&2
|
||||
continue=0
|
||||
|
|
Loading…
Reference in a new issue