Hi,
I have a machine with 8 disks from the same model (pretty common situation for a new server), I'm trying to match 2 of the disks for a ZFS RAID1 install by using their ID_SERIAL as follows:
However I get the following error:
I managed to make it work thanks to having two serial matches by using :
But this will work only up to two disks.
Is there a way to match more than two disks by ID_SERIAL?
I have a machine with 8 disks from the same model (pretty common situation for a new server), I'm trying to match 2 of the disks for a ZFS RAID1 install by using their ID_SERIAL as follows:
Code:
[disk-setup]
filesystem = "zfs"
zfs.raid = "raid1"
filter.ID_SERIAL="*194K"
filter.ID_SERIAL="*191V"
However I get the following error:
Code:
Checking provided answer file...
Error parsing answer file: TOML parse error at line 23, column 1
|
23 | filter.ID_SERIAL="*191V"
| ^
duplicate key `ID_SERIAL` in table `disk-setup`
I managed to make it work thanks to having two serial matches by using :
Code:
[disk-setup]
filesystem = "zfs"
zfs.raid = "raid1"
filter.ID_SERIAL="*194K"
filter.ID_SERIAL_SHORT="*191V"
But this will work only up to two disks.
Is there a way to match more than two disks by ID_SERIAL?