mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
Merge pull request #578 from nix-community/zpool_update
types zpool: create pool if device is a zfs_member
This commit is contained in:
commit
a8c966ee11
@ -73,6 +73,9 @@
|
|||||||
elif (blkid "$dev" -o export | grep '^PTUUID='); then
|
elif (blkid "$dev" -o export | grep '^PTUUID='); then
|
||||||
echo "device $dev already has a partuuid, skipping creating zpool ${config.name}" >&2
|
echo "device $dev already has a partuuid, skipping creating zpool ${config.name}" >&2
|
||||||
continue=0
|
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
|
elif (blkid "$dev" -o export | grep '^TYPE='); then
|
||||||
echo "device $dev already has a partition, skipping creating zpool ${config.name}" >&2
|
echo "device $dev already has a partition, skipping creating zpool ${config.name}" >&2
|
||||||
continue=0
|
continue=0
|
||||||
|
Loading…
Reference in New Issue
Block a user