Preseed Multiple Disks

1

Eu tenho máquinas no meu ambiente com 1 ou 2 discos / matrizes.

Eu gostaria que o preseed usasse todo o espaço em disco, independentemente do número de caixas.

O problema é: Meu esquema atual de particionamento desliga assim que ele vê vários discos.

Veja como funciona a minha preseed para particionamento:

# Partitioning
d-i partman-auto/method string lvm
# 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
# You can choose one of the three predefined partitioning recipes:
# - atomic: all files in one partition
# - home:   separate /home partition
# - multi:  separate /home, /var, and /tmp partitions
d-i partman-auto/choose_recipe select atomic

# This makes partman automatically partition without confirmation, provided
# that you told it what to do using one of the methods above.
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true

# Choose automatic partitioning recipes where automatic puts
# All configuration on the same partition
d-i partman-auto/choose_recipe select automic
# Complete partitioning without further confirmation
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true

Minha pergunta: Como faço o preseed usar todos os discos disponíveis, independentemente de quantos são detectados?

Alternativamente: Como eu faço o preseed instalar na primeira partição e depois criar uma partição em branco nos discos secundários?

    
por rainereality 09.11.2016 / 15:39

1 resposta

0

Sem teste, aparece esta linha -

d-i partman-auto/choose_recipe select automic

deve ser realmente -

d-i partman-auto/choose_recipe select atomic

(observe 'atômico', em vez de 'automico') Dê uma chance.

    
por 11.08.2017 / 14:00