autoyast and lvm

I would like to use autoyast on a test machine where I have some raid and lvm partitions. These can be formatted but there is no requirement to recreate the partitions or lvm’s since I have other distributions on them as well.

My partitioning part is given below. During the install the system wants to create the logical volume vg00 which in actual fact is the volume group.

I have not found the right solution in the documentation and not managed to find anything related via google.

Does anybody understand why this is happening and what might be wrong in my autoinst.xml for partitioning.

<partitioning config:type=“list”>
<drive>
<device>/dev/vg00</device>
<lvm2 config:type=“boolean”>true</lvm2>
<partitions config:type=“list”>
<partition>
<create config:type=“boolean”>false</create>
<filesystem config:type=“symbol”>ext3</filesystem>
<format config:type=“boolean”>true</format>
<lv_name>lv03root</lv_name>
<mount>/</mount>
<mountby config:type=“symbol”>device</mountby>
</partition>
<partition>
<create config:type=“boolean”>false</create>
<filesystem config:type=“symbol”>ext3</filesystem>
<format config:type=“boolean”>true</format>
<lv_name>lv03home</lv_name>
<mount>/home</mount>
<mountby config:type=“symbol”>device</mountby>
</partition>
</partitions>
</drive>
<drive>
<device>/dev/md03</device>
<partitions config:type=“list”>
<partition>
<create config:type=“boolean”>false</create>
<filesystem config:type=“symbol”>ext2</filesystem>
<format config:type=“boolean”>true</format>
<mount>/boot</mount>
<raid_name>/dev/md3</raid_name>
<raid_type>raid1</raid_type>
</partition>
</partitions>
</drive>
</partitioning>