forked from GouGoGoal/SHELL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetReinstallDebian.sh
913 lines (795 loc) · 25.4 KB
/
NetReinstallDebian.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
#!/bin/sh
# shellcheck shell=dash
set -eu
err() {
printf "\nError: %s.\n" "$1" 1>&2
exit 1
}
warn() {
printf "\nWarning: %s.\nContinuing with the default...\n" "$1" 1>&2
sleep 5
}
command_exists() {
command -v "$1" > /dev/null 2>&1
}
# Sets variable:
late_command='apt install -y ca-certificates apt-transport-https libpam-systemd iptables vim wget curl telnet lsof iperf3 dnsutils conntrack wireguard nmap;mkdir /root/.ssh;echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA5qK3fDbxZshKP3MbQo4xm1YNmTQsHcapbF8wAXJJcCgxtzujH9QuFCeQzsQ3QET2qZgG1k0GfTV6slRdrJJeI8fdwFgRc28JEhXh4rGx8MUdotJh8eVAnygWATBtet2Au5gpn3s3s44XqgnWXY+bRGJ6WoB58/3fjPG1YZIR5wh9knNxRt/9VO8YCTBqQP3z5hdPuNldx3jgIuFNhcI1qBVnQZ2czC2Zv8sHDDuiuNoaomKsg7LgbhKPnvRfEGb+yZaU/KKwbEJwbFcZkT7QiW90OhYVKT2+K8xEsUpR4ocH+SxgvFrpyKAXkSqF/Wwe32baAlzrNwucLdsS+jBk3w== OpenSSH-rsa-import-061520" >>/root/.ssh/authorized_keys'
in_target() {
local command=
for argument in "$@"; do
command="$command $argument"
done
if [ -n "$command" ]; then
[ -z "$late_command" ] && late_command='true'
late_command="$late_command;$command"
fi
}
in_target_backup() {
in_target "if [ ! -e \"$1.backup\" ]; then cp \"$1\" \"$1.backup\"; fi"
}
configure_sshd() {
# !isset($sshd_config_backup)
[ -z "${sshd_config_backup+1s}" ] && in_target_backup /etc/ssh/sshd_config
sshd_config_backup=
in_target sed -Ei \""s/^#?$1 .+/$1 $2/"\" /etc/ssh/sshd_config
}
prompt_password() {
local prompt=
if [ $# -gt 0 ]; then
prompt=$1
elif [ "$username" = root ]; then
prompt="Choose a password for the root user: "
else
prompt="Choose a password for user $username: "
fi
stty -echo
trap 'stty echo' EXIT
while [ -z "$password" ]; do
echo -n "$prompt" > /dev/tty
read -r password < /dev/tty
echo > /dev/tty
done
stty echo
trap - EXIT
}
download() {
# Set "$http/https/ftp_proxy" with "$mirror_proxy"
# only when none of those have ever been set
[ -n "$mirror_proxy" ] &&
[ -z "${http_proxy+1s}" ] &&
[ -z "${https_proxy+1s}" ] &&
[ -z "${ftp_proxy+1s}" ] &&
export http_proxy="$mirror_proxy" &&
export https_proxy="$mirror_proxy" &&
export ftp_proxy="$mirror_proxy"
if command_exists wget; then
wget -O "$2" "$1"
elif command_exists curl; then
curl -fL "$1" -o "$2"
elif command_exists busybox && busybox wget --help > /dev/null 2>&1; then
busybox wget -O "$2" "$1"
else
err 'Cannot find "wget", "curl" or "busybox wget" to download files'
fi
}
# Set "$mirror_proxy" with "$http/https/ftp_proxy"
# only when it is empty and one of those is not empty
set_mirror_proxy() {
[ -n "$mirror_proxy" ] && return
case $mirror_protocol in
http)
if [ -n "${http_proxy+1s}" ]; then mirror_proxy="$http_proxy"; fi
;;
https)
if [ -n "${https_proxy+1s}" ]; then mirror_proxy="$https_proxy"; fi
;;
ftp)
if [ -n "${ftp_proxy+1s}" ]; then mirror_proxy="$ftp_proxy"; fi
;;
*)
err "Unsupported protocol: $mirror_protocol"
esac
}
set_security_archive() {
case $suite in
buster|oldoldstable)
security_archive="$suite/updates"
;;
bullseye|oldstable|bookworm|stable|trixie|testing)
security_archive="$suite-security"
;;
sid|unstable)
security_archive=''
;;
*)
err "Unsupported suite: $suite"
esac
}
set_daily_d_i() {
case $suite in
buster|oldoldstable|bullseye|oldstable|bookworm|stable)
daily_d_i=false
;;
trixie|testing|sid|unstable)
daily_d_i=true
;;
*)
err "Unsupported suite: $suite"
esac
}
set_suite() {
suite=$1
set_daily_d_i
set_security_archive
}
set_debian_version() {
case $1 in
10|buster|oldoldstable)
set_suite buster
;;
11|bullseye|oldstable)
set_suite bullseye
;;
12|bookworm|stable)
set_suite bookworm
;;
13|trixie|testing)
set_suite bookworm
;;
sid|unstable)
set_suite sid
;;
*)
err "Unsupported version: $1"
esac
}
has_cloud_kernel() {
case $suite in
buster|oldoldstable)
[ "$architecture" = amd64 ] && return
[ "$architecture" = arm64 ] && [ "$bpo_kernel" = true ] && return
;;
bullseye|oldstable|bookworm|stable|trixie|testing|sid|unstable)
[ "$architecture" = amd64 ] || [ "$architecture" = arm64 ] && return
esac
local tmp; tmp=''; [ "$bpo_kernel" = true ] && tmp='-backports'
warn "No cloud kernel is available for $architecture/$suite$tmp"
return 1
}
has_backports() {
case $suite in
buster|oldoldstable|bullseye|oldstable|bookworm|stable|trixie|testing) return
esac
warn "No backports kernel is available for $suite"
return 1
}
DEFAULTNET="$(ip route show |grep -o 'default via [0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.*' |head -n1 |sed 's/proto.*\|onlink.*//g' |awk '{print $NF}')";
[[ -n "$DEFAULTNET" ]] && IPSUB="$(ip addr |grep ''${DEFAULTNET}'' |grep 'global' |grep 'brd' |head -n1 |grep -o '[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}/[0-9]\{1,2\}')";
ip="$(echo -n "$IPSUB" |cut -d'/' -f1)";
NETSUB="$(echo -n "$IPSUB" |grep -o '/[0-9]\{1,2\}')";
gateway="$(ip route show |grep -o 'default via [0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}' |head -n1 |grep -o '[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}')";
[[ -n "$NETSUB" ]] && netmask="$(echo -n '128.0.0.0/1,192.0.0.0/2,224.0.0.0/3,240.0.0.0/4,248.0.0.0/5,252.0.0.0/6,254.0.0.0/7,255.0.0.0/8,255.128.0.0/9,255.192.0.0/10,255.224.0.0/11,255.240.0.0/12,255.248.0.0/13,255.252.0.0/14,255.254.0.0/15,255.255.0.0/16,255.255.128.0/17,255.255.192.0/18,255.255.224.0/19,255.255.240.0/20,255.255.248.0/21,255.255.252.0/22,255.255.254.0/23,255.255.255.0/24,255.255.255.128/25,255.255.255.192/26,255.255.255.224/27,255.255.255.240/28,255.255.255.248/29,255.255.255.252/30,255.255.255.254/31,255.255.255.255/32' |grep -o '[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}'${NETSUB}'' |cut -d'/' -f1)";
interface=auto
dns='1.1.1.1 8.8.8.8'
hostname='Debian'
network_console=false
force_lowmem=
set_debian_version 11
cloud_kernel=true
bpo_kernel=false
mirror_protocol=http
mirror_host=deb.debian.org
mirror_directory=/debian
mirror_proxy=
security_repository=http://security.debian.org/debian-security
account_setup=true
username=root
password=114514114514
authorized_keys_url=
sudo_with_password=false
timezone=Asia/Shanghai
ntp=0.debian.pool.ntp.org
disk_partitioning=true
disk=
force_gpt=true
efi=
esp=106
filesystem=ext4
kernel=
install_recommends=true
install=
upgrade=
kernel_params=
bbr=false
ssh_port=222
hold=false
power_off=false
architecture=
firmware=false
force_efi_extra_removable=true
grub_timeout=3
dry_run=false
apt_non_free_firmware=true
apt_non_free=false
apt_contrib=false
apt_src=true
apt_backports=true
while [ $# -gt 0 ]; do
case $1 in
--cdn|--aws)
mirror_protocol=https
[ "$1" = '--aws' ] && mirror_host=cdn-aws.deb.debian.org
security_repository=mirror
;;
--china)
dns='223.5.5.5 119.29.29.29'
mirror_protocol=https
mirror_host=mirrors.tuna.tsinghua.edu.cn
ntp=ntp.aliyun.com
security_repository=mirror
;;
--interface)
interface=$2
shift
;;
--ip)
ip=$2
shift
;;
--netmask)
netmask=$2
shift
;;
--gateway)
gateway=$2
shift
;;
--dns)
dns=$2
shift
;;
--hostname)
hostname=$2
shift
;;
--network-console)
network_console=true
;;
--version)
set_debian_version "$2"
shift
;;
--suite)
set_suite "$2"
shift
;;
--release-d-i)
daily_d_i=false
;;
--daily-d-i)
daily_d_i=true
;;
--mirror-protocol)
mirror_protocol=$2
shift
;;
--https)
mirror_protocol=https
;;
--mirror-host)
mirror_host=$2
shift
;;
--mirror-directory)
mirror_directory=${2%/}
shift
;;
--mirror-proxy|--proxy)
mirror_proxy=$2
shift
;;
--reuse-proxy)
set_mirror_proxy
;;
--security-repository)
security_repository=$2
shift
;;
--no-user|--no-account-setup)
account_setup=false
;;
--user|--username)
username=$2
shift
;;
--password)
password=$2
shift
;;
--authorized-keys-url)
authorized_keys_url=$2
shift
;;
--sudo-with-password)
sudo_with_password=true
;;
--timezone)
timezone=$2
shift
;;
--ntp)
ntp=$2
shift
;;
--no-part|--no-disk-partitioning)
disk_partitioning=false
;;
--force-lowmem)
[ "$2" != 0 ] && [ "$2" != 1 ] && [ "$2" != 2 ] && err 'Low memory level can only be 0, 1 or 2'
force_lowmem=$2
shift
;;
--disk)
disk=$2
shift
;;
--no-force-gpt)
force_gpt=false
;;
--bios)
efi=false
;;
--efi)
efi=true
;;
--esp)
esp=$2
shift
;;
--filesystem)
filesystem=$2
shift
;;
--kernel)
kernel=$2
shift
;;
--cloud-kernel)
cloud_kernel=true
;;
--bpo-kernel)
bpo_kernel=true
;;
--apt-non-free-firmware)
apt_non_free_firmware=true
;;
--apt-non-free)
apt_non_free=true
apt_contrib=true
;;
--apt-contrib)
apt_contrib=true
;;
--apt-src)
apt_src=true
;;
--apt-backports)
apt_backports=true
;;
--no-apt-non-free-firmware)
apt_non_free_firmware=false
;;
--no-apt-non-free)
apt_non_free=false
;;
--no-apt-contrib)
apt_contrib=false
apt_non_free=false
;;
--no-apt-src)
apt_src=false
;;
--no-apt-backports)
apt_backports=false
;;
--no-install-recommends)
install_recommends=false
;;
--install)
install=$2
shift
;;
--no-upgrade)
upgrade=none
;;
--safe-upgrade)
upgrade=safe-upgrade
;;
--full-upgrade)
upgrade=full-upgrade
;;
--ethx)
kernel_params="$kernel_params net.ifnames=0 biosdevname=0"
;;
--bbr)
bbr=true
;;
--ssh-port)
ssh_port=$2
shift
;;
--hold)
hold=true
;;
--power-off)
power_off=true
;;
--architecture)
architecture=$2
shift
;;
--firmware)
firmware=true
;;
--no-force-efi-extra-removable)
force_efi_extra_removable=false
;;
--grub-timeout)
grub_timeout=$2
shift
;;
--dry-run)
dry_run=true
;;
*)
err "Unknown option: \"$1\""
esac
shift
done
[ -z "$architecture" ] && {
architecture=$(dpkg --print-architecture 2> /dev/null) || {
case $(uname -m) in
x86_64)
architecture=amd64
;;
aarch64)
architecture=arm64
;;
i386)
architecture=i386
;;
*)
err 'No "--architecture" specified'
esac
}
}
[ -z "$kernel" ] && {
kernel="linux-image-$architecture"
[ "$cloud_kernel" = true ] && has_cloud_kernel && kernel="linux-image-cloud-$architecture"
[ "$bpo_kernel" = true ] && has_backports && install="$kernel/$suite-backports $install"
}
[ -n "$authorized_keys_url" ] && ! download "$authorized_keys_url" /dev/null &&
err "Failed to download SSH authorized public keys from \"$authorized_keys_url\""
non_free_firmware_available=false
case $suite in
bookworm|stable|trixie|testing|sid|unstable)
non_free_firmware_available=true
;;
*)
apt_non_free_firmware=false
esac
apt_components=main
[ "$apt_contrib" = true ] && apt_components="$apt_components contrib"
[ "$apt_non_free" = true ] && apt_components="$apt_components non-free"
[ "$apt_non_free_firmware" = true ] && apt_components="$apt_components non-free-firmware"
apt_services=updates
[ "$apt_backports" = true ] && apt_services="$apt_services, backports"
installer_directory="/boot/debian-$suite"
save_preseed='cat'
[ "$dry_run" = false ] && {
[ "$(id -u)" -ne 0 ] && err 'root privilege is required'
rm -rf "$installer_directory"
mkdir -p "$installer_directory"
cd "$installer_directory"
save_preseed='tee -a preseed.cfg'
}
if [ "$account_setup" = true ]; then
prompt_password
elif [ "$network_console" = true ] && [ -z "$authorized_keys_url" ]; then
prompt_password "Choose a password for the installer user of the SSH network console: "
fi
$save_preseed << EOF
# Localization
d-i debian-installer/language string en
d-i debian-installer/country string US
d-i debian-installer/locale string en_US.UTF-8
d-i keyboard-configuration/xkb-keymap select us
# Network configuration
d-i netcfg/choose_interface select $interface
EOF
[ -n "$ip" ] && {
echo 'd-i netcfg/disable_autoconfig boolean true' | $save_preseed
echo "d-i netcfg/get_ipaddress string $ip" | $save_preseed
[ -n "$netmask" ] && echo "d-i netcfg/get_netmask string $netmask" | $save_preseed
[ -n "$gateway" ] && echo "d-i netcfg/get_gateway string $gateway" | $save_preseed
[ -z "${ip%%*:*}" ] && [ -n "${dns%%*:*}" ] && dns='2001:4860:4860::8888 2001:4860:4860::8844'
[ -n "$dns" ] && echo "d-i netcfg/get_nameservers string $dns" | $save_preseed
echo 'd-i netcfg/confirm_static boolean true' | $save_preseed
}
if [ -n "$hostname" ]; then
echo "d-i netcfg/hostname string $hostname" | $save_preseed
hostname=debian
domain=
else
hostname=$(cat /proc/sys/kernel/hostname)
domain=$(cat /proc/sys/kernel/domainname)
if [ "$domain" = '(none)' ]; then
domain=
else
domain=" $domain"
fi
fi
$save_preseed << EOF
d-i netcfg/get_hostname string $hostname
d-i netcfg/get_domain string$domain
EOF
echo 'd-i hw-detect/load_firmware boolean true' | $save_preseed
[ "$network_console" = true ] && {
$save_preseed << 'EOF'
# Network console
d-i anna/choose_modules string network-console
d-i preseed/early_command string anna-install network-console
EOF
if [ -n "$authorized_keys_url" ]; then
echo "d-i network-console/authorized_keys_url string $authorized_keys_url" | $save_preseed
else
$save_preseed << EOF
d-i network-console/password password $password
d-i network-console/password-again password $password
EOF
fi
echo 'd-i network-console/start select Continue' | $save_preseed
}
$save_preseed << EOF
# Mirror settings
d-i mirror/country string manual
d-i mirror/protocol string $mirror_protocol
d-i mirror/$mirror_protocol/hostname string $mirror_host
d-i mirror/$mirror_protocol/directory string $mirror_directory
d-i mirror/$mirror_protocol/proxy string $mirror_proxy
d-i mirror/suite string $suite
EOF
[ "$account_setup" = true ] && {
password_hash=$(mkpasswd -m sha-256 "$password" 2> /dev/null) ||
password_hash=$(openssl passwd -5 "$password" 2> /dev/null) ||
password_hash=$(busybox mkpasswd -m sha256 "$password" 2> /dev/null) || {
for python in python3 python python2; do
password_hash=$("$python" -c 'import crypt, sys; print(crypt.crypt(sys.argv[1], crypt.mksalt(crypt.METHOD_SHA256)))' "$password" 2> /dev/null) && break
done
}
$save_preseed << 'EOF'
# Account setup
EOF
configure_sshd PasswordAuthentication no
if [ "$username" = root ]; then
if [ -z "$authorized_keys_url" ]; then
configure_sshd PermitRootLogin yes
else
in_target "mkdir -m 0700 -p ~root/.ssh && busybox wget -O- \"$authorized_keys_url\" >> ~root/.ssh/authorized_keys"
fi
$save_preseed << 'EOF'
d-i passwd/root-login boolean true
d-i passwd/make-user boolean false
EOF
if [ -z "$password_hash" ]; then
$save_preseed << EOF
d-i passwd/root-password password $password
d-i passwd/root-password-again password $password
EOF
else
echo "d-i passwd/root-password-crypted password $password_hash" | $save_preseed
fi
else
configure_sshd PermitRootLogin no
[ -n "$authorized_keys_url" ] &&
in_target "sudo -u $username mkdir -m 0700 -p ~$username/.ssh && busybox wget -O - \"$authorized_keys_url\" | sudo -u $username tee -a ~$username/.ssh/authorized_keys"
[ "$sudo_with_password" = false ] &&
in_target "echo \"$username ALL=(ALL:ALL) NOPASSWD:ALL\" > \"/etc/sudoers.d/90-user-$username\""
$save_preseed << EOF
d-i passwd/root-login boolean false
d-i passwd/make-user boolean true
d-i passwd/user-fullname string
d-i passwd/username string $username
EOF
if [ -z "$password_hash" ]; then
$save_preseed << EOF
d-i passwd/user-password password $password
d-i passwd/user-password-again password $password
EOF
else
echo "d-i passwd/user-password-crypted password $password_hash" | $save_preseed
fi
fi
}
[ -n "$ssh_port" ] && configure_sshd Port "$ssh_port"
$save_preseed << EOF
# Clock and time zone setup
d-i time/zone string $timezone
d-i clock-setup/utc boolean true
d-i clock-setup/ntp boolean true
d-i clock-setup/ntp-server string $ntp
# Partitioning
EOF
[ "$disk_partitioning" = true ] && {
$save_preseed << 'EOF'
d-i partman-auto/method string regular
EOF
if [ -n "$disk" ]; then
echo "d-i partman-auto/disk string $disk" | $save_preseed
else
# shellcheck disable=SC2016
echo 'd-i partman/early_command string debconf-set partman-auto/disk "$(list-devices disk | head -n 1)"' | $save_preseed
fi
}
[ "$force_gpt" = true ] && {
$save_preseed << 'EOF'
d-i partman-partitioning/choose_label string gpt
d-i partman-partitioning/default_label string gpt
EOF
}
[ "$disk_partitioning" = true ] && {
echo "d-i partman/default_filesystem string $filesystem" | $save_preseed
[ -z "$efi" ] && {
efi=false
[ -d /sys/firmware/efi ] && efi=true
}
$save_preseed << 'EOF'
d-i partman-auto/expert_recipe string \
naive :: \
EOF
if [ "$efi" = true ]; then
$save_preseed << EOF
$esp $esp $esp free \\
EOF
$save_preseed << 'EOF'
$iflabel{ gpt } \
$reusemethod{ } \
method{ efi } \
format{ } \
. \
EOF
else
$save_preseed << 'EOF'
1 1 1 free \
$iflabel{ gpt } \
$reusemethod{ } \
method{ biosgrub } \
. \
EOF
fi
$save_preseed << 'EOF'
1075 1076 -1 $default_filesystem \
method{ format } \
format{ } \
use_filesystem{ } \
$default_filesystem{ } \
mountpoint{ / } \
.
EOF
if [ "$efi" = true ]; then
echo 'd-i partman-efi/non_efi_system boolean true' | $save_preseed
fi
$save_preseed << 'EOF'
d-i partman-auto/choose_recipe select naive
d-i partman-basicfilesystems/no_swap boolean false
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
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/device_remove_lvm_span boolean true
EOF
}
$save_preseed << EOF
# Base system installation
d-i base-installer/kernel/image string $kernel
EOF
[ "$install_recommends" = false ] && echo "d-i base-installer/install-recommends boolean $install_recommends" | $save_preseed
[ "$security_repository" = mirror ] && security_repository=$mirror_protocol://$mirror_host${mirror_directory%/*}/debian-security
$save_preseed << EOF
# Apt setup
d-i apt-setup/contrib boolean $apt_contrib
d-i apt-setup/non-free boolean $apt_non_free
d-i apt-setup/enable-source-repositories boolean $apt_src
d-i apt-setup/services-select multiselect $apt_services
EOF
[ "$non_free_firmware_available" = true ] && echo "d-i apt-setup/non-free-firmware boolean $apt_non_free_firmware" | $save_preseed
# If not sid/unstable
[ -n "$security_archive" ] && {
$save_preseed << EOF
d-i apt-setup/local0/repository string $security_repository $security_archive $apt_components
d-i apt-setup/local0/source boolean $apt_src
EOF
}
$save_preseed << 'EOF'
# Package selection
tasksel tasksel/first multiselect ssh-server
EOF
echo "d-i pkgsel/include string ca-certificates libpam-systemd $install" | $save_preseed
[ -n "$upgrade" ] && echo "d-i pkgsel/upgrade select $upgrade" | $save_preseed
$save_preseed << 'EOF'
popularity-contest popularity-contest/participate boolean false
# Boot loader installation
EOF
if [ -n "$disk" ]; then
echo "d-i grub-installer/bootdev string $disk" | $save_preseed
else
echo 'd-i grub-installer/bootdev string default' | $save_preseed
fi
[ "$force_efi_extra_removable" = true ] && echo 'd-i grub-installer/force-efi-extra-removable boolean true' | $save_preseed
[ -n "$kernel_params" ] && echo "d-i debian-installer/add-kernel-opts string$kernel_params" | $save_preseed
$save_preseed << 'EOF'
# Finishing up the installation
EOF
[ "$hold" = false ] && echo 'd-i finish-install/reboot_in_progress note' | $save_preseed
[ "$bbr" = true ] && in_target '{ echo "net.core.default_qdisc=fq"; echo "net.ipv4.tcp_congestion_control=bbr"; } > /etc/sysctl.d/bbr.conf'
[ -n "$late_command" ] && echo "d-i preseed/late_command string in-target sh -c '$late_command'" | $save_preseed
[ "$power_off" = true ] && echo 'd-i debian-installer/exit/poweroff boolean true' | $save_preseed
save_grub_cfg='cat'
[ "$dry_run" = false ] && {
base_url="$mirror_protocol://$mirror_host$mirror_directory/dists/$suite/main/installer-$architecture/current/images/netboot/debian-installer/$architecture"
[ "$suite" = stretch ] && [ "$efi" = true ] && base_url="$mirror_protocol://$mirror_host$mirror_directory/dists/buster/main/installer-$architecture/current/images/netboot/debian-installer/$architecture"
[ "$daily_d_i" = true ] && base_url="https://d-i.debian.org/daily-images/$architecture/daily/netboot/debian-installer/$architecture"
firmware_url="https://cdimage.debian.org/cdimage/unofficial/non-free/firmware/$suite/current/firmware.cpio.gz"
download "$base_url/linux" linux
download "$base_url/initrd.gz" initrd.gz
[ "$firmware" = true ] && download "$firmware_url" firmware.cpio.gz
gzip -d initrd.gz
# cpio reads a list of file names from the standard input
echo preseed.cfg | cpio -o -H newc -A -F initrd
gzip -1 initrd
mkdir -p /etc/default/grub.d
tee /etc/default/grub.d/zz-debi.cfg 1>&2 << EOF
GRUB_DEFAULT=debi
GRUB_TIMEOUT=$grub_timeout
GRUB_TIMEOUT_STYLE=menu
EOF
if command_exists update-grub; then
grub_cfg=/boot/grub/grub.cfg
update-grub
elif command_exists grub2-mkconfig; then
tmp=$(mktemp)
grep -vF zz_debi /etc/default/grub > "$tmp"
cat "$tmp" > /etc/default/grub
rm "$tmp"
# shellcheck disable=SC2016
echo 'zz_debi=/etc/default/grub.d/zz-debi.cfg; if [ -f "$zz_debi" ]; then . "$zz_debi"; fi' >> /etc/default/grub
grub_cfg=/boot/grub2/grub.cfg
grub2-mkconfig -o "$grub_cfg"
else
err 'Could not find "update-grub" or "grub2-mkconfig" command'
fi
save_grub_cfg="tee -a $grub_cfg"
}
mkrelpath=$installer_directory
[ "$dry_run" = true ] && mkrelpath=/boot
installer_directory=$(grub-mkrelpath "$mkrelpath" 2> /dev/null) ||
installer_directory=$(grub2-mkrelpath "$mkrelpath" 2> /dev/null) || {
err 'Could not find "grub-mkrelpath" or "grub2-mkrelpath" command'
}
[ "$dry_run" = true ] && installer_directory="$installer_directory/debian-$suite"
kernel_params="$kernel_params lowmem/low=1"
[ -n "$force_lowmem" ] && kernel_params="$kernel_params lowmem=+$force_lowmem"
initrd="$installer_directory/initrd.gz"
[ "$firmware" = true ] && initrd="$initrd $installer_directory/firmware.cpio.gz"
$save_grub_cfg 1>&2 << EOF
menuentry 'Debian Installer' --id debi {
insmod part_msdos
insmod part_gpt
insmod ext2
insmod xfs
insmod btrfs
linux $installer_directory/linux$kernel_params
initrd $initrd
}
EOF