découpage LVM spécifique dans preseed.cfg

Bonjour ,

je recherche un petit coup de main sur un sujet que j’ai pas mal potassé sur différent forum debian.

je cherche à créer un fichier type preseed pour des installations de masse via le réseau.
tout fonctionne sauf le résultat du partitionnement.
j’ai un petit prôblème sur le LVM et partman-auto car je souhaite un découpage spécifique du LVM

voici mon découpage idéal :

File system standard :

/boot

File system de type LVM :

/ , /usr , /home , /tmp , /var ,

autre File system :

swap

mon pbs est qu il me créé pas tous les FS et en plus il me met la totalité de la volumetrie dans /home

ci dessous mon fichier de conf :

[quote]### Partitioning
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string lvm
d-i partman-auto/purge_lvm_from_device boolean true
d-i partman/confirm boolean true
d-i partman-lvm/device_remove_lvm boolean true
d-i partman/confirm boolean true
d-i partman-auto/expert_recipe string
boot-root::
128 512 256 ext3
$defaultignore{ }
$primary{ }
$bootable{ }
method{ format }
format{ }
use_filesystem{ }
filesystem{ ext3 }
mountpoint{ /boot } .
100 1000 1000000000 ext3
$defaultignore{ }
$primary{ }
device{ /dev/sda }
vgname{ rootvg }
method{ lvm } .
70 800 280 ext3
$lvmok{ }
$primary{ }
$bootable{ }
invg{ rootvg }
method{ format }
format{ }
use_filesystem{ }
filesystem{ ext3 }
mountpoint{ / } .
500 3000 5000 ext3
$lvmok{ }
invg{ rootvg }
method{ format }
format{ }
use_filesystem{ }
filesystem{ ext3 }
mountpoint{ /usr } .
70 1500 3000 ext3
$lvmok{ }
invg{ rootvg }
method{ format }
format{ }
use_filesystem{ }
filesystem{ ext3 }
mountpoint{ /var } .
96 512 300% linux-swap
$lvmok{ }
invg{ rootvg }
method{ swap }
format{ } .
20 300 400 ext3
$lvmok{ }
invg{ rootvg }
method{ format }
format{ }
use_filesystem{ }
filesystem{ ext3 }
mountpoint{ /tmp } .
300 3000 3000 ext3
$lvmok{ }
invg{ rootvg }
method{ format }
format{ }
use_filesystem{ }
filesystem{ ext3 }
mountpoint{ /home } .
d-i partman/confirm boolean true
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition
select Finish partitioning and write changes to disk
d-i partman/confirm boolean true
d-i partman-partitioning/confirm_copy boolean true
d-i partman/confirm_new_label boolean true[/quote]

Est ce quelqu’un à une petite idée ?

merci d’avance