mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
fix mdadm raid device numbering style
This commit is contained in:
parent
fb91351af9
commit
65ff2f9f63
1 changed files with 3 additions and 1 deletions
|
@ -55,8 +55,10 @@ rec {
|
|||
dev + toString index # /dev/{s,v}da style
|
||||
else if match "/dev/(disk|zvol)/.+" dev != null then
|
||||
"${dev}-part${toString index}" # /dev/disk/by-id/xxx style, also used by zfs's zvolumes
|
||||
else if match "/dev/(nvme|md/|mmcblk).+" dev != null then
|
||||
else if match "/dev/((nvme|mmcblk).+|md/.*[[:digit:]])" dev != null then
|
||||
"${dev}p${toString index}" # /dev/nvme0n1p1 style
|
||||
else if match "/dev/md/.+" dev != null then
|
||||
"${dev}${toString index}" # /dev/md/raid1 style
|
||||
else
|
||||
abort ''
|
||||
${dev} seems not to be a supported disk format. Please add this to disko in https://github.com/nix-community/disko/blob/master/types/default.nix
|
||||
|
|
Loading…
Reference in a new issue