Hello
I am trying to achieve an AI install of a Unified Archive i have created. I have run into a slight problem with my AI Manifest:
How do i go about setting up another pool which has two mirrors within an AI manifest?
By using the snippet bellow i can create a single mirror:
<disk in_zpool="pool" whole_disk="true">
<disk_name name="c0t5000CCA00A472F08d0" name_type="ctd"/>
</disk>
<disk in_zpool="pool" whole_disk="true">
<disk_name name="c0t5000CCA00A46B434d0" name_type="ctd"/>
</disk>
However i am trying to achieve a mirror stripe, like you would get from running the following command:
zpool create tank mirror c1d0 c2d0 mirror c3d0 c4d0
Any help would be much appreciated.