Hi,

ich habe ein preseed Script konfiguriert bei dem automatisch ein Raid1 erstellt wird auf Basis von mdadm.

Nun hätte ich gerne das beim Anlegen des Raids direkt eine internal Bitmap für das Raid angelegt wird,
jedoch finde ich nichts.

Nachträglich funktioniert das mit:
Code:
mdadm --grow /dev/md0 --bitmap=internal
Ich hätte gerne das direkt im preseed beim erstellen des Raids.
Was muss ich hier ändern, das das klappt?
Code:
...
...
# If one of the disks that are going to be automatically partitioned
# contains an old LVM configuration, the user will normally receive a
# warning. This can be preseeded away...
d-i partman-lvm/device_remove_lvm boolean true
# The same applies to pre-existing software RAID array:
d-i partman-md/device_remove_md boolean true
# And the same goes for the confirmation to write the lvm partitions.
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-auto/confirm_nooverwrite boolean true
d-i partman-md/confirm_nooverwrite boolean true


d-i partman-auto/method string raid
d-i partman-auto/disk string /dev/sda /dev/sdb

d-i partman-auto/expert_recipe string                                    \
      multiraid ::                                                       \
              1000 5000 -1 raid                                          \
                      $primary{ } method{ raid }  $bootable{ } format{ } \
          .

d-i partman-auto-raid/recipe string \
    1 2 0 ext4 /                    \
          /dev/sda1#/dev/sdb1       \
.

d-i partman-md/confirm boolean true
...
...
Weiß jemand wie ich das hin bekomme?
Danke für die Hilfe.

mfg.
blubbersuelze