Manual
This commit is contained in:
parent
a3b0580dae
commit
8a2dd75b6a
2 changed files with 5 additions and 2 deletions
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
# Riavvia netcfg in modo da configurare i parametri di rete
|
||||
# https://www.debian.org/releases/trixie/amd64/apbs04.it.html#preseed-network
|
||||
kill-all-dhcp; netcfg
|
||||
echo "CIAO" > /CIAO
|
||||
|
|
|
|||
|
|
@ -6,7 +6,10 @@ d-i debconf/priority select high
|
|||
|
||||
# B.5.1 Script da eseguire prima di avviare l'installer
|
||||
# https://www.debian.org/releases/trixie/amd64/apbs05.it.html#preseed-hooks
|
||||
d-i preseed/early_command string sh early_command.sh
|
||||
d-i preseed/early_command string \
|
||||
wget https://git.fermimn.it/nicola.belluti/test/src/branch/main/early_command.sh -o /tmp/early_command.sh; \
|
||||
chmod +x /tmp/early_command.sh; \
|
||||
sh /tmp/early_command.sh;
|
||||
|
||||
|
||||
# B.4.1 Locale
|
||||
|
|
|
|||
Loading…
Reference in a new issue