Below you find a portion of my autoyast.xml file specifying an LVM setup. When the autoinstallation gets to this point and says, "Error: A logical volume with the requested size could not be created." What am I doing wrong? <partitioning> ... <drive> <device>/dev/sdb</device> <partitions config:type="list"> <partition> <lvm_group>apps</lvm_group> <partition_type>primary</partition_type> <size>max</size> </partition> </partitions> <use>all</use> </drive> <drive> <device>/dev/apps</device> <is_lvm_vg config:type="boolean">true</is_lvm_vg> <partitions config:type="list"> <partition> <lv_name>var_spool_lv</lv_name> <filesystem config:type="symbol">reiser</filesystem> <mount>/var/spool</mount> <size>50gb</size> </partition> <partition> <lv_name>srv_lv</lv_name> <mount>/srv</mount> <filesystem config:type="symbol">reiser</filesystem> <size>5gb</size> </partition> </partitions> <pesize>4M</pesize> </drive> .... </partitioning>