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
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
|
#!/usr/bin/env bash
set -Eeuo pipefail
SCRIPT_DIR="$(cd -- "$(dirname -- "$0")" && pwd)"
# shellcheck disable=SC1091
source "${SCRIPT_DIR}/lib/common.sh"
SCRIPT_NAME="restore-configs.sh"
CATEGORIES=()
LIST_CATEGORIES=false
usage() {
cat <<USAGE
Usage: sudo ./restore-configs.sh [options]
Purpose:
Restore selected configs from a capture DB in a controlled, category-based way.
Intended to be non-fatal per item whenever possible. Sensitive/identity-heavy
categories should be restored deliberately.
Options:
--db-dir PATH
--role lab|hardware|replacement
--category NAME May be used multiple times
--list-categories
--yes Non-interactive yes to prompts
--dry-run
--verbose
--help
Categories:
system-basics
users
ssh
network
dns
firewall
nginx
mariadb
postfix
prosody
tor
i2pd
docker
monitoring
USAGE
}
while [[ $# -gt 0 ]]; do
case "$1" in
--db-dir) DB_DIR="$2"; PUBLIC_DIR="${DB_DIR}/db/public"; SECRET_DIR="${DB_DIR}/db/secret"; shift ;;
--role) ROLE="$2"; shift ;;
--category) CATEGORIES+=("$2"); shift ;;
--list-categories) LIST_CATEGORIES=true ;;
--yes) ASSUME_YES=true ;;
--dry-run) DRY_RUN=true ;;
--verbose) VERBOSE=true ;;
--help) usage; exit 0 ;;
*) die "unknown option: $1" ;;
esac
shift
done
if [[ "${LIST_CATEGORIES}" == true ]]; then
printf '%s\n' \
system-basics \
users \
ssh \
network \
dns \
firewall \
nginx \
mariadb \
postfix \
prosody \
tor \
i2pd \
docker \
monitoring
exit 0
fi
ensure_root
load_optional_config
ensure_runtime_dirs
require_cmd cp chmod chown find grep sed awk systemctl
[[ -d "${PUBLIC_DIR}" ]] || die "public DB not found: ${PUBLIC_DIR}"
[[ ${#CATEGORIES[@]} -gt 0 ]] || die "no categories specified; use --category or --list-categories"
log "${SCRIPT_NAME}: role=${ROLE} categories=${CATEGORIES[*]} db=${DB_DIR}"
report "${SCRIPT_NAME}" "run" "start" "init" "ok" "role=${ROLE} categories=${CATEGORIES[*]}" ""
case "${ROLE}" in
lab|hardware|replacement) ;;
*) die "invalid role: ${ROLE}" ;;
esac
fix_sudoers_perms() {
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] normalize sudoers ownership and permissions\n'
return 0
fi
if [[ -f /etc/sudoers ]]; then
chown root:root /etc/sudoers || true
chmod 0440 /etc/sudoers || true
fi
if [[ -d /etc/sudoers.d ]]; then
chown root:root /etc/sudoers.d || true
chmod 0755 /etc/sudoers.d || true
find /etc/sudoers.d -maxdepth 1 -type f -exec chown root:root {} \; || true
find /etc/sudoers.d -maxdepth 1 -type f -exec chmod 0440 {} \; || true
fi
if visudo -c >/dev/null 2>&1; then
report "${SCRIPT_NAME}" "users" "sudoers-perms" "fix" "changed" "sudoers ownership and permissions normalized" ""
return 0
fi
note_failure "${SCRIPT_NAME}" "users" "sudoers-perms" "fix" "visudo validation failed after permission normalization"
return 1
}
maybe_restore() {
local category="$1" item="$2" src="$3" dst="$4"
local prompt_text="Restore ${category}/${item} -> ${dst}?"
if ! prompt_yes_no "${prompt_text}" yes; then
report "${SCRIPT_NAME}" "${category}" "${item}" "restore" "skipped" "operator skipped" ""
return 0
fi
restore_path "${SCRIPT_NAME}" "${category}" "${item}" "${src}" "${dst}" || true
}
category_enabled() {
local want="$1" x
for x in "${CATEGORIES[@]}"; do
[[ "${x}" == "${want}" ]] && return 0
done
return 1
}
restore_system_basics() {
local base="${PUBLIC_DIR}/system"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "system-basics" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'system-basics'?" yes; then
report "${SCRIPT_NAME}" "system-basics" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
maybe_restore "system-basics" "etc-hostname" "${base}/etc-hostname" "/etc/hostname"
maybe_restore "system-basics" "etc-hosts" "${base}/etc-hosts" "/etc/hosts"
maybe_restore "system-basics" "etc-environment" "${base}/etc-environment" "/etc/environment"
maybe_restore "system-basics" "locale.gen" "${base}/locale.gen" "/etc/locale.gen"
maybe_restore "system-basics" "timezone" "${base}/timezone" "/etc/timezone"
if [[ -f "${base}/etc-hostname" ]]; then
local captured_hostname
captured_hostname="$(head -n1 "${base}/etc-hostname" 2>/dev/null || true)"
if [[ -n "${captured_hostname}" ]]; then
if prompt_yes_no "Apply captured hostname now?" yes; then
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] hostnamectl set-hostname %s\n' "${captured_hostname}"
else
hostnamectl set-hostname "${captured_hostname}" || note_failure "${SCRIPT_NAME}" "system-basics" "hostnamectl" "set" "hostnamectl failed"
fi
report "${SCRIPT_NAME}" "system-basics" "hostnamectl" "set" "changed" "${captured_hostname}" ""
else
report "${SCRIPT_NAME}" "system-basics" "hostnamectl" "set" "skipped" "operator skipped hostnamectl" ""
fi
fi
fi
}
restore_users() {
local base="${PUBLIC_DIR}/users"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "users" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'users'?" yes; then
report "${SCRIPT_NAME}" "users" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
maybe_restore "users" "sudoers" "${base}/sudoers" "/etc/sudoers"
maybe_restore "users" "sudoers.d" "${base}/sudoers.d" "/etc/sudoers.d"
fix_sudoers_perms || true
maybe_restore "users" "shells" "${base}/shells" "/etc/shells"
maybe_restore "users" "login.defs" "${base}/login.defs" "/etc/login.defs"
}
restore_ssh() {
local pub_users="${PUBLIC_DIR}/users"
local sec_ssh="${SECRET_DIR}/ssh"
if ! prompt_yes_no "Restore category 'ssh'?" yes; then
report "${SCRIPT_NAME}" "ssh" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if prompt_yes_no "Restore ssh/sshd_config -> /etc/ssh/sshd_config?" yes; then
restore_path "${SCRIPT_NAME}" "ssh" "sshd_config" \
"${pub_users}/sshd_config" "/etc/ssh/sshd_config" \
0644 root root || true
else
report "${SCRIPT_NAME}" "ssh" "sshd_config" "restore" "skipped" "operator skipped" ""
fi
if prompt_yes_no "Restore ssh/sshd_config.d -> /etc/ssh/sshd_config.d?" yes; then
restore_path "${SCRIPT_NAME}" "ssh" "sshd_config.d" \
"${pub_users}/sshd_config.d" "/etc/ssh/sshd_config.d" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/ssh/sshd_config.d\n'
printf '[dry] find /etc/ssh/sshd_config.d -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/ssh/sshd_config.d -type f -exec chmod 0644 {} +\n'
else
if [[ -d /etc/ssh/sshd_config.d ]]; then
chown -R root:root /etc/ssh/sshd_config.d 2>/dev/null || true
find /etc/ssh/sshd_config.d -type d -exec chmod 0755 {} + 2>/dev/null || true
find /etc/ssh/sshd_config.d -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
fi
report "${SCRIPT_NAME}" "ssh" "sshd_config.d-metadata" "restore" "changed" \
"normalized /etc/ssh/sshd_config.d ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "ssh" "sshd_config.d" "restore" "skipped" "operator skipped" ""
fi
if [[ "${ROLE}" == "replacement" || "${ROLE}" == "hardware" ]]; then
if [[ -d "${sec_ssh}/etc-ssh" ]]; then
if prompt_yes_no "Restore SSH host keys from secret DB?" no; then
restore_path "${SCRIPT_NAME}" "ssh" "host-keys" \
"${sec_ssh}/etc-ssh" "/etc/ssh" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown root:root /etc/ssh\n'
printf '[dry] chmod 0755 /etc/ssh\n'
printf '[dry] find /etc/ssh -maxdepth 1 -type f -name '\''ssh_host_*_key'\'' -exec chown root:root {} +\n'
printf '[dry] find /etc/ssh -maxdepth 1 -type f -name '\''ssh_host_*_key'\'' -exec chmod 0600 {} +\n'
printf '[dry] find /etc/ssh -maxdepth 1 -type f -name '\''ssh_host_*_key.pub'\'' -exec chown root:root {} +\n'
printf '[dry] find /etc/ssh -maxdepth 1 -type f -name '\''ssh_host_*_key.pub'\'' -exec chmod 0644 {} +\n'
else
chown root:root /etc/ssh 2>/dev/null || true
chmod 0755 /etc/ssh 2>/dev/null || true
find /etc/ssh -maxdepth 1 -type f -name 'ssh_host_*_key' -exec chown root:root {} + 2>/dev/null || true
find /etc/ssh -maxdepth 1 -type f -name 'ssh_host_*_key' -exec chmod 0600 {} + 2>/dev/null || true
find /etc/ssh -maxdepth 1 -type f -name 'ssh_host_*_key.pub' -exec chown root:root {} + 2>/dev/null || true
find /etc/ssh -maxdepth 1 -type f -name 'ssh_host_*_key.pub' -exec chmod 0644 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "ssh" "host-keys-metadata" "restore" "changed" \
"normalized SSH host key ownership=root:root private=0600 public=0644" ""
else
report "${SCRIPT_NAME}" "ssh" "host-keys" "restore" "skipped" "operator skipped host keys" ""
fi
fi
else
report "${SCRIPT_NAME}" "ssh" "host-keys" "restore" "skipped" "lab role: host keys not restored" ""
fi
if [[ -d "${sec_ssh}/user-lukasz" ]]; then
if prompt_yes_no "Restore lukasz user SSH material from secret DB?" no; then
restore_path "${SCRIPT_NAME}" "ssh" "user-lukasz" \
"${sec_ssh}/user-lukasz" "/home/lukasz/.ssh" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R lukasz:lukasz /home/lukasz/.ssh\n'
printf '[dry] chmod 700 /home/lukasz/.ssh\n'
printf '[dry] find /home/lukasz/.ssh -maxdepth 1 -type f -exec chmod 600 {} +\n'
else
chown -R lukasz:lukasz /home/lukasz/.ssh 2>/dev/null || true
chmod 700 /home/lukasz/.ssh 2>/dev/null || true
find /home/lukasz/.ssh -maxdepth 1 -type f -exec chmod 600 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "ssh" "user-lukasz-metadata" "restore" "changed" \
"normalized /home/lukasz/.ssh ownership=lukasz:lukasz dir=0700 files=0600" ""
else
report "${SCRIPT_NAME}" "ssh" "user-lukasz" "restore" "skipped" "operator skipped user ssh material" ""
fi
fi
if have_cmd sshd; then
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] sshd -t\n'
report "${SCRIPT_NAME}" "ssh" "validate" "check" "ok" "dry-run only" ""
else
if sshd -t; then
report "${SCRIPT_NAME}" "ssh" "validate" "check" "ok" "sshd config validates" ""
systemctl restart ssh >/dev/null 2>&1 || true
else
note_failure "${SCRIPT_NAME}" "ssh" "validate" "check" "sshd validation failed"
fi
fi
fi
}
restore_network() {
local base="${PUBLIC_DIR}/network"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "network" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'network'? This can disrupt connectivity." no; then
report "${SCRIPT_NAME}" "network" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if [[ "${ROLE}" == "lab" ]]; then
manual_line="lab role: full network restore intentionally skipped"
report "${SCRIPT_NAME}" "network" "category" "manual" "manual" "${manual_line}" ""
return 0
fi
maybe_restore "network" "etc-network" "${base}/etc-network" "/etc/network"
maybe_restore "network" "etc-netplan" "${base}/etc-netplan" "/etc/netplan"
maybe_restore "network" "systemd-network" "${base}/systemd-network" "/etc/systemd/network"
maybe_restore "network" "nsswitch.conf" "${base}/nsswitch.conf" "/etc/nsswitch.conf"
maybe_restore "network" "hosts.allow" "${base}/hosts.allow" "/etc/hosts.allow"
maybe_restore "network" "hosts.deny" "${base}/hosts.deny" "/etc/hosts.deny"
}
# =============================================================================
# restore_dns() — smart, adaptive DNS category restore
# =============================================================================
#
# DROP-IN REPLACEMENT for the naive restore_dns() in restore-configs.sh.
# Replace lines 326-344 with this entire block.
#
# What this does that the old version did not:
#
# 1. SCAN — detects live interfaces, IPs, WireGuard ifaces, Docker bridges,
# who currently owns port 53
# 2. ANALYZE — classifies each captured dnsmasq.conf and dnsmasq.d/* file:
# safe | adapted | dormant-wireguard | dormant-docker | manual
# 3. ADAPT — rewrites listen-address/server lines to only use IPs that
# exist on this machine right now
# 4. PREPARE — bootstraps unbound root.key if missing
# disables systemd-resolved stub if it would conflict
# 5. START — enables + starts unbound then dnsmasq in correct order
# verifies each is listening before proceeding
# 6. VERIFY — confirms deb.debian.org resolves
# only then writes /etc/resolv.conf
# 7. REPORT — prints a precise summary with ✓/⚠/✗ and a MANUAL TASKS list
#
# Roles:
# lab — skipped (architecture mismatch too severe for lab)
# hardware — full adaptive restore, services started
# replacement — full adaptive restore, services started
#
# =============================================================================
# ── Internal helpers ──────────────────────────────────────────────────────────
# Print a DNS-category-specific status line (not using global report() for
# the inline summary — those go to TSV separately)
_dns_ok() { printf ' \033[32m✓\033[0m adapted %s\n' "$*"; }
_dns_dormant(){ printf ' \033[33m⚠\033[0m dormant %s\n' "$*"; }
_dns_manual() { printf ' \033[31m✗\033[0m MANUAL %s\n' "$*"; }
_dns_info() { printf ' \033[36m·\033[0m %s\n' "$*"; }
# Collect all IPs currently assigned to any interface on this machine
_live_ips() {
ip -o addr show 2>/dev/null \
| awk '{print $4}' \
| sed 's|/.*||' \
| sort -u
}
# Collect WireGuard interface names currently present
_wg_ifaces() {
ip link show type wireguard 2>/dev/null \
| awk -F': ' '/^[0-9]+:/{print $2}' \
| awk '{print $1}' \
| sort -u
}
# Collect Docker bridge IPs (172.x.x.1 pattern on br-* or docker0)
_docker_bridge_ips() {
ip -o addr show 2>/dev/null \
| awk '/br-|docker0/{print $4}' \
| sed 's|/.*||' \
| sort -u
}
# Who owns port 53 right now?
_port53_owner() {
local line
line="$(ss -tlnp 2>/dev/null | grep ':53 ' | head -1)"
if echo "$line" | grep -q dnsmasq; then echo "dnsmasq"
elif echo "$line" | grep -q unbound; then echo "unbound"
elif echo "$line" | grep -q systemd; then echo "resolved"
elif [[ -z "$line" ]]; then echo "none"
else echo "unknown"
fi
}
# Is an IP a WireGuard-range IP? (10.50.x.x by default on sanctum)
# Also checks if it matches any IP on a wg interface
_is_wg_ip() {
local ip="$1"
# Check against known wg interface IPs
local wg_ips
wg_ips="$(ip -o addr show type wireguard 2>/dev/null | awk '{print $4}' | sed 's|/.*||')"
echo "$wg_ips" | grep -qx "$ip" && return 0
# Heuristic: 10.50.x.x is sanctum's WireGuard subnet
[[ "$ip" =~ ^10\.50\. ]] && return 0
return 1
}
# Is an IP a Docker bridge IP?
_is_docker_ip() {
local ip="$1"
_docker_bridge_ips | grep -qx "$ip" && return 0
[[ "$ip" =~ ^172\.(1[6-9]|2[0-9]|3[01])\. ]] && return 0
return 1
}
# Is an IP live on this machine right now?
_ip_is_live() {
_live_ips | grep -qx "$1"
}
# Is an IP in a private LAN range (RFC1918) that is just not live on this machine?
# These are likely the source host's LAN IPs — dormant on fresh hardware, not truly foreign.
_is_lan_ip() {
local ip="$1"
[[ "$ip" =~ ^10\. ]] && return 0
[[ "$ip" =~ ^192\.168\. ]] && return 0
[[ "$ip" =~ ^172\.(1[6-9]|2[0-9]|3[01])\. ]] && return 0
return 1
}
# Classify a single IP from a dnsmasq config perspective
# Returns: live | wg | docker | lan | foreign
_classify_ip() {
local ip="$1"
[[ "$ip" == "127.0.0.1" || "$ip" == "::1" ]] && { echo "live"; return; }
_ip_is_live "$ip" && { echo "live"; return; }
_is_wg_ip "$ip" && { echo "wg"; return; }
_is_docker_ip "$ip" && { echo "docker"; return; }
_is_lan_ip "$ip" && { echo "lan"; return; }
echo "foreign"
}
# Rewrite a dnsmasq config file, adapting listen-address and server= lines.
# Writes adapted file to $dst. Returns classification of the file overall.
# Prints per-line notes to stdout.
_adapt_dnsmasq_file() {
local src="$1" dst="$2" fname="$3"
local line classification="safe"
local has_wg=false has_docker=false has_foreign=false has_live=false
local dropped_lan=()
local has_lan_dropped=false
local tmp
tmp="$(mktemp)"
while IFS= read -r line; do
# ── listen-address = a,b,c ──────────────────────────────────────────────
if [[ "$line" =~ ^[[:space:]]*listen-address= ]]; then
local addr_str="${line#*=}"
local new_addrs=() dropped_wg=() dropped_docker=() dropped_foreign=()
IFS=',' read -ra addrs <<< "$addr_str"
for addr in "${addrs[@]}"; do
addr="${addr// /}"
local cls
cls="$(_classify_ip "$addr")"
case "$cls" in
live) new_addrs+=("$addr"); has_live=true ;;
wg) dropped_wg+=("$addr"); has_wg=true ;;
docker) dropped_docker+=("$addr"); has_docker=true ;;
lan) dropped_lan+=("$addr"); has_lan_dropped=true ;;
foreign) dropped_foreign+=("$addr"); has_foreign=true ;;
esac
done
if [[ ${#new_addrs[@]} -gt 0 ]]; then
printf 'listen-address=%s\n' "$(IFS=','; echo "${new_addrs[*]}")" >> "$tmp"
else
# No live addresses left — bind to loopback only as safe fallback
printf 'listen-address=127.0.0.1\n' >> "$tmp"
_dns_info "$fname: all listen-address IPs non-local — fell back to 127.0.0.1"
fi
[[ ${#dropped_wg[@]} -gt 0 ]] && classification="dormant-wg"
[[ ${#dropped_docker[@]} -gt 0 ]] && [[ "$classification" == "safe" ]] && classification="dormant-docker"
[[ ${#dropped_foreign[@]} -gt 0 ]] && classification="foreign"
continue
fi
# ── interface= lines referencing named interfaces ───────────────────────
if [[ "$line" =~ ^[[:space:]]*interface= ]]; then
local iface_name="${line#*=}"
iface_name="${iface_name// /}"
if ip link show "$iface_name" >/dev/null 2>&1; then
printf '%s\n' "$line" >> "$tmp"
else
printf '# [adapted] interface=%s not present — uncomment when interface exists\n' \
"$iface_name" >> "$tmp"
if [[ "$iface_name" =~ ^wg ]]; then
has_wg=true
elif [[ "$iface_name" =~ ^br-|^docker ]]; then
has_docker=true
else
has_foreign=true
fi
fi
continue
fi
# ── server= lines pointing at specific IPs ──────────────────────────────
if [[ "$line" =~ ^[[:space:]]*server= ]]; then
local server_val="${line#*=}"
# Extract just the IP part (before any #port or @iface)
local server_ip
server_ip="$(echo "$server_val" | sed 's|[#@].*||' | tr -d '/')"
if [[ -n "$server_ip" && "$server_ip" != "127.0.0.1" && "$server_ip" != "::1" ]]; then
local cls
cls="$(_classify_ip "$server_ip")"
case "$cls" in
wg) has_wg=true ;;
docker) has_docker=true ;;
foreign) has_foreign=true ;;
esac
fi
printf '%s\n' "$line" >> "$tmp"
continue
fi
# All other lines pass through unchanged
printf '%s\n' "$line" >> "$tmp"
done < "$src"
# Final classification
# Note: "lan" IPs (RFC1918 not live on this machine) are treated as
# dormant-hardware — they belong to the source host's LAN and will be
# valid on real replacement hardware. They do NOT trigger "foreign".
if $has_foreign; then
classification="foreign"
elif $has_wg; then
classification="dormant-wg"
elif $has_docker; then
classification="dormant-docker"
fi
# If only lan IPs were dropped (no wg/docker/foreign), mark dormant-hardware
if [[ "$classification" == "safe" && ${#dropped_lan[@]} -gt 0 ]]; then
classification="dormant-hardware"
fi
mv "$tmp" "$dst"
echo "$classification"
}
# ── Main restore_dns() ────────────────────────────────────────────────────────
restore_dns() {
local base="${PUBLIC_DIR}/dns"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "dns" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'dns'? This will adapt and apply the captured DNS stack." no; then
report "${SCRIPT_NAME}" "dns" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
# lab: architecture too machine-specific, skip
if [[ "${ROLE}" == "lab" ]]; then
report "${SCRIPT_NAME}" "dns" "category" "manual" "manual" \
"lab role: DNS restore intentionally skipped — run with --role hardware to test" ""
return 0
fi
# ── MANUAL TASKS accumulator ────────────────────────────────────────────────
local manual_tasks=()
# ── PHASE 1: SCAN ──────────────────────────────────────────────────────────
log "dns: scanning local topology..."
local live_ips wg_ifaces docker_ips port53_owner
live_ips="$(_live_ips | tr '\n' ' ')"
wg_ifaces="$(_wg_ifaces | tr '\n' ' ')"
docker_ips="$(_docker_bridge_ips | tr '\n' ' ')"
port53_owner="$(_port53_owner)"
log "dns: live IPs: ${live_ips:-none}"
log "dns: WireGuard ifaces: ${wg_ifaces:-none}"
log "dns: Docker bridge IPs: ${docker_ips:-none}"
log "dns: port 53 currently owned by: ${port53_owner}"
report "${SCRIPT_NAME}" "dns" "topology-scan" "scan" "ok" \
"live_ips=${live_ips} wg=${wg_ifaces:-none} docker=${docker_ips:-none} port53=${port53_owner}" ""
# ── PHASE 2: DISABLE SYSTEMD-RESOLVED STUB if it owns port 53 ──────────────
# systemd-resolved's stub listener on 127.0.0.53 conflicts with dnsmasq
# wanting to own 127.0.0.1:53. The correct fix for sanctum's architecture
# is to disable the stub and let dnsmasq own the port.
if [[ "$port53_owner" == "resolved" ]]; then
log "dns: systemd-resolved stub owns port 53 — disabling stub listener..."
if $DRY_RUN; then
printf '[dry] mkdir -p /etc/systemd/resolved.conf.d\n'
printf '[dry] write DNSStubListener=no to /etc/systemd/resolved.conf.d/no-stub.conf\n'
printf '[dry] systemctl restart systemd-resolved\n'
else
mkdir -p /etc/systemd/resolved.conf.d
printf '[Resolve]\nDNSStubListener=no\n' \
> /etc/systemd/resolved.conf.d/no-stub.conf
systemctl restart systemd-resolved >/dev/null 2>&1 || true
sleep 1
port53_owner="$(_port53_owner)"
log "dns: port 53 owner after stub disable: ${port53_owner}"
fi
report "${SCRIPT_NAME}" "dns" "resolved-stub" "adapt" "changed" \
"disabled systemd-resolved DNSStubListener to free port 53 for dnsmasq" ""
fi
# ── PHASE 3: ADAPT AND RESTORE DNSMASQ.CONF ────────────────────────────────
if [[ -f "${base}/dnsmasq.conf" ]]; then
log "dns: adapting dnsmasq.conf..."
local adapted_conf
adapted_conf="$(mktemp)"
if $DRY_RUN; then
printf '[dry] adapt dnsmasq.conf → /etc/dnsmasq.conf\n'
report "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "restore" "ok" "dry-run only" ""
else
local cls
cls="$(_adapt_dnsmasq_file "${base}/dnsmasq.conf" "$adapted_conf" "dnsmasq.conf")"
cp "$adapted_conf" /etc/dnsmasq.conf
rm -f "$adapted_conf"
chown root:root /etc/dnsmasq.conf
chmod 0644 /etc/dnsmasq.conf
case "$cls" in
safe)
_dns_ok "dnsmasq.conf (no adaptation needed)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "restore" "changed" "restored unchanged" "" ;;
dormant-wg)
_dns_ok "dnsmasq.conf (adapted — WireGuard IPs dormant until wg0 exists)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "restore" "changed" "adapted: WireGuard IPs stripped from listen-address" ""
manual_tasks+=("WireGuard IPs in dnsmasq.conf will activate automatically once wg0 is up") ;;
dormant-docker)
_dns_ok "dnsmasq.conf (adapted — Docker bridge IPs dormant until Docker is up)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "restore" "changed" "adapted: Docker IPs stripped from listen-address" ""
manual_tasks+=("Docker bridge IPs in dnsmasq.conf will activate automatically once Docker is up") ;;
dormant-hardware)
_dns_ok "dnsmasq.conf (adapted — source-host LAN IPs stripped, will need real NIC IP)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "restore" "changed" "adapted: source LAN IPs stripped" ""
manual_tasks+=("dnsmasq.conf: add this machine's LAN IP to listen-address once NIC is configured") ;;
foreign)
_dns_dormant "dnsmasq.conf (contains unrecognized IPs — adapted to 127.0.0.1 only)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "restore" "changed" "adapted: foreign IPs stripped" ""
manual_tasks+=("dnsmasq.conf had unrecognized IPs — verify listen-address in /etc/dnsmasq.conf") ;;
esac
fi
else
mark_manual "${SCRIPT_NAME}" "dns" "dnsmasq.conf" "not found in DB"
fi
# ── PHASE 4: ADAPT AND RESTORE DNSMASQ.D/* ─────────────────────────────────
if [[ -d "${base}/dnsmasq.d" ]]; then
log "dns: adapting dnsmasq.d/..."
local dest_d="/etc/dnsmasq.d"
mkdir -p "$dest_d"
for src_file in "${base}/dnsmasq.d"/*; do
[[ -f "$src_file" ]] || continue
local fname
fname="$(basename "$src_file")"
local dst_file="${dest_d}/${fname}"
local adapted_f
adapted_f="$(mktemp)"
if $DRY_RUN; then
printf '[dry] adapt dnsmasq.d/%s → %s\n' "$fname" "$dst_file"
rm -f "$adapted_f"
continue
fi
local cls
cls="$(_adapt_dnsmasq_file "$src_file" "$adapted_f" "dnsmasq.d/${fname}")"
cp "$adapted_f" "$dst_file"
rm -f "$adapted_f"
chown root:root "$dst_file"
chmod 0644 "$dst_file"
case "$cls" in
safe)
_dns_ok "dnsmasq.d/${fname}"
report "${SCRIPT_NAME}" "dns" "dnsmasq.d/${fname}" "restore" "changed" "restored unchanged" "" ;;
dormant-wg)
_dns_dormant "dnsmasq.d/${fname} (WireGuard-dependent — dormant until wg0 exists)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.d/${fname}" "restore" "changed" "adapted: WireGuard IPs dormant" ""
manual_tasks+=("dnsmasq.d/${fname}: WireGuard-dependent rules preserved, activate when wg0 is up") ;;
dormant-docker)
_dns_dormant "dnsmasq.d/${fname} (Docker-dependent — dormant until Docker bridges exist)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.d/${fname}" "restore" "changed" "adapted: Docker IPs dormant" ""
manual_tasks+=("dnsmasq.d/${fname}: Docker-dependent rules preserved, activate when Docker is up") ;;
dormant-hardware)
_dns_ok "dnsmasq.d/${fname} (adapted — source-host LAN IPs stripped)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.d/${fname}" "restore" "changed" "adapted: source LAN IPs stripped" ""
manual_tasks+=("dnsmasq.d/${fname}: add this machine LAN IP to listen-address once NIC is configured") ;;
foreign)
_dns_manual "dnsmasq.d/${fname} (contains truly unrecognized IPs — copied but needs review)"
report "${SCRIPT_NAME}" "dns" "dnsmasq.d/${fname}" "restore" "changed" "adapted: foreign IPs stripped — review needed" ""
manual_tasks+=("REVIEW: dnsmasq.d/${fname} had unrecognized IPs — verify manually") ;;
esac
done
report "${SCRIPT_NAME}" "dns" "dnsmasq.d" "restore" "changed" "all files adapted and copied" ""
fi
# ── PHASE 5: RESTORE UNBOUND ────────────────────────────────────────────────
if [[ -d "${base}/etc-unbound" ]]; then
log "dns: restoring unbound config..."
if $DRY_RUN; then
printf '[dry] restore etc-unbound → /etc/unbound\n'
else
restore_path "${SCRIPT_NAME}" "dns" "etc-unbound" \
"${base}/etc-unbound" "/etc/unbound" || true
chown -R root:root /etc/unbound 2>/dev/null || true
find /etc/unbound -type d -exec chmod 0755 {} + 2>/dev/null || true
find /etc/unbound -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "dns" "etc-unbound" "restore" "changed" "unbound config restored and permissions normalized" ""
fi
# ── PHASE 6: BOOTSTRAP UNBOUND DATA FILES ───────────────────────────────────
# On Debian 13:
# - trust anchor managed by /usr/libexec/unbound-helper root_trust_anchor_update
# (ExecStartPre in unbound.service) — no manual unbound-anchor needed
# - root.hints must exist at /var/lib/unbound/root.hints if referenced by config
# NOT provided by the package — must be fetched from internic.net
log "dns: preparing unbound data files..."
if $DRY_RUN; then
printf '[dry] mkdir -p /var/lib/unbound\n'
printf '[dry] fetch root.hints if referenced by config and missing\n'
printf '[dry] chown -R unbound:unbound /var/lib/unbound\n'
else
mkdir -p /var/lib/unbound
# Check if root.hints is referenced in restored unbound config
local needs_root_hints=false
grep -rq 'root-hints' /etc/unbound/ 2>/dev/null && needs_root_hints=true
if $needs_root_hints && [[ ! -f /var/lib/unbound/root.hints ]]; then
log "dns: fetching root.hints from internic.net..."
if curl -sSf https://www.internic.net/domain/named.root \
-o /var/lib/unbound/root.hints 2>/dev/null; then
_dns_ok "root.hints fetched from internic.net"
report "${SCRIPT_NAME}" "dns" "root.hints" "prepare" "changed" "fetched from internic.net" ""
elif wget -qO /var/lib/unbound/root.hints \
https://www.internic.net/domain/named.root 2>/dev/null; then
_dns_ok "root.hints fetched (wget)"
report "${SCRIPT_NAME}" "dns" "root.hints" "prepare" "changed" "fetched via wget" ""
else
_dns_manual "could not fetch root.hints — unbound will fail without it"
manual_tasks+=("MANUAL: curl -o /var/lib/unbound/root.hints https://www.internic.net/domain/named.root")
report "${SCRIPT_NAME}" "dns" "root.hints" "prepare" "failed" "fetch failed" ""
fi
elif ! $needs_root_hints; then
_dns_info "root.hints not referenced in config — skipping"
else
_dns_ok "root.hints already present"
fi
# Detect unbound port from restored config (default 5353 for sanctum)
local unbound_port=5353
if [[ -f /etc/unbound/unbound.conf.d/recursive.conf ]]; then
local cfg_port
cfg_port="$(grep -h '^ *port:' /etc/unbound/unbound.conf.d/recursive.conf 2>/dev/null | awk '{print $2}' | tail -1)"
[[ -n "$cfg_port" ]] && unbound_port="$cfg_port"
fi
# If recursive.conf specifies validator module, it needs a valid trust anchor.
# On fresh installs without unbound-anchor, disable validator and force correct port.
# This gets unbound running; DNSSEC can be re-enabled after the system is stable.
local validator_in_use=false
grep -rq 'module-config.*validator' /etc/unbound/ 2>/dev/null && validator_in_use=true
if $validator_in_use; then
log "dns: validator module detected — creating no-dnssec override for bootstrap"
cat > /etc/unbound/unbound.conf.d/no-dnssec.conf << EOF
server:
module-config: "iterator"
port: ${unbound_port}
EOF
# Disable recursive.conf temporarily — it overrides module-config and port
if [[ -f /etc/unbound/unbound.conf.d/recursive.conf ]]; then
mv /etc/unbound/unbound.conf.d/recursive.conf /etc/unbound/unbound.conf.d/recursive.conf.bootstrap-disabled
_dns_dormant "recursive.conf disabled for bootstrap (re-enable after system is stable)"
manual_tasks+=("DNSSEC: re-enable DNSSEC after system stable: mv /etc/unbound/unbound.conf.d/recursive.conf.bootstrap-disabled /etc/unbound/unbound.conf.d/recursive.conf && rm /etc/unbound/unbound.conf.d/no-dnssec.conf && systemctl restart unbound")
fi
report "${SCRIPT_NAME}" "dns" "unbound-dnssec" "adapt" "changed" "validator disabled for bootstrap; re-enable after trust anchor is populated" ""
fi
# Ensure unbound owns its data directory
chown -R unbound:unbound /var/lib/unbound 2>/dev/null || true
chmod 755 /var/lib/unbound 2>/dev/null || true
# Trust anchor: unbound-anchor not shipped on Debian 13.
# Seed root.key in autotrust format with both current KSKs (20326 + 38696).
# unbound will validate and update the file automatically once running.
# Check DB first — if capture included root.key use that, else use built-in seed.
local db_rootkey="${PUBLIC_DIR}/dns/unbound-root.key"
if [[ ! -f /var/lib/unbound/root.key ]]; then
if [[ -f "$db_rootkey" ]]; then
cp "$db_rootkey" /var/lib/unbound/root.key
_dns_ok "trust anchor restored from DB"
report "${SCRIPT_NAME}" "dns" "unbound-trustanchor" "prepare" "changed" "restored from DB" ""
else
# Built-in seed: autotrust format with KSK-2017 (20326) and KSK-2024 (38696)
cat > /var/lib/unbound/root.key << 'ROOTKEY'
; autotrust trust anchor file
;;id: . 1
. 3600 IN DNSKEY 257 3 8 AwEAAaz/tAm8yTn4Mfeh5eyI96WSVexTBAvkMgJzkKTOiW1vkIbzxeF3+/4RgWOq7HrxRixHlFlExOLAJr5emLvN7SWXgnLh4+B5xQlNVz8Og8kvArMtNROxVQuCaSnIDdD5LKyWbRd2n9WGe2R8PzgCmr3EgVLrjyBxWezF0jLHwVN8efS3rCj/EWgvIWgb9tarpVUDK/b58Da+sqqls3eNbuv7pr+eoZG+SrDK6nWeL3c6H5Apxz7LjVc1uTIdsIXxuOLYA4/ilBmSVIzuDWfdRUfhHdY6+cn8HFRm+2hM8AnXGXws9555KrUB5qihylGa8subX2Nn6UwNR1AkUTV74bU= ;{id = 20326 (ksk), size = 2048b} ;;state=1 [ ADDPEND ] ;;count=0 ;;lastchange=0 ;;Thu Jan 1 00:00:00 1970
. 3600 IN DNSKEY 257 3 8 AwEAAa96jeuknZlaeSrvyAJj6ZHv28hhOKkx3rLGXVaC6rXTsDc449/cidltpkyGwCJNnOAlFNKF2jBosZBU5eeHspaQWOmOElZsjICMQMC3aeHbGiShvZsx4wMYSjH8e7Vrhbu6irwCzVBApESjbUdpWWmEnhathWu1jo+siFUiRAAxm9qyJNg/wOZqqzL/dL/q8PkcRU5oUKEpUge71M3ej2/7CPqpdVwuMoTvoB+ZOT4YeGyxMvHmbrxlFzGOHOijtzN+u1TQNatX2XBuzZNQ1K+s2CXkPIZo7s6JgZyvaBevYtxPvYLw4z9mR7K2vaF18UYH9Z9GNUUeayffKC73PYc= ;{id = 38696 (ksk), size = 2048b} ;;state=1 [ ADDPEND ] ;;count=0 ;;lastchange=0 ;;Thu Jan 1 00:00:00 1970
ROOTKEY
_dns_ok "trust anchor seeded (KSK-2017 + KSK-2024 autotrust format)"
report "${SCRIPT_NAME}" "dns" "unbound-trustanchor" "prepare" "changed" "seeded built-in autotrust root.key" ""
fi
chown unbound:unbound /var/lib/unbound/root.key 2>/dev/null || true
chmod 644 /var/lib/unbound/root.key
else
_dns_ok "trust anchor already present"
report "${SCRIPT_NAME}" "dns" "unbound-trustanchor" "prepare" "ok" "root.key exists" ""
fi
fi
# Check for blocklist files referenced in unbound config
if ! $DRY_RUN; then
local rpz_refs
rpz_refs="$(grep -rh 'rpz-file\|include:\|zonefile' /etc/unbound/ 2>/dev/null \
| grep -v '^#' \
| grep -oP '"[^"]*\.rpz[^"]*"|/[^ ]+\.rpz[^ ]*' \
| tr -d '"' \
| sort -u || true)"
if [[ -n "$rpz_refs" ]]; then
while IFS= read -r rpz_file; do
if [[ ! -f "$rpz_file" ]]; then
_dns_dormant "unbound references ${rpz_file} which does not exist yet"
manual_tasks+=("POPULATE: ${rpz_file} referenced by unbound config but not yet present")
fi
done <<< "$rpz_refs"
fi
fi
# ── PHASE 7: START UNBOUND ──────────────────────────────────────────────────
log "dns: starting unbound..."
if $DRY_RUN; then
printf '[dry] systemctl enable --now unbound\n'
else
systemctl enable unbound >/dev/null 2>&1 || true
systemctl restart unbound >/dev/null 2>&1 || true
sleep 2
# Verify unbound is listening on expected port
local unbound_port=5353
# Detect port from config if non-standard
if [[ -f /etc/unbound/unbound.conf ]]; then
local cfg_port
cfg_port="$(grep -h 'port:' /etc/unbound/unbound.conf.d/*.conf /etc/unbound/unbound.conf 2>/dev/null \
| grep -v '^#' | awk '{print $2}' | tail -1)"
[[ -n "$cfg_port" ]] && unbound_port="$cfg_port"
fi
if ss -tlnp 2>/dev/null | grep -q ":${unbound_port} "; then
_dns_ok "unbound listening on port ${unbound_port}"
report "${SCRIPT_NAME}" "dns" "unbound-start" "start" "ok" "listening on :${unbound_port}" ""
else
local unbound_err
unbound_err="$(journalctl -u unbound -n 5 --no-pager 2>/dev/null | tail -3 || true)"
_dns_manual "unbound NOT listening on port ${unbound_port}"
log "dns: unbound journal tail: ${unbound_err}"
report "${SCRIPT_NAME}" "dns" "unbound-start" "start" "failed" "not listening on :${unbound_port}" ""
manual_tasks+=("MANUAL: unbound failed to start — check: journalctl -u unbound -n 20")
fi
fi
# ── PHASE 8: START DNSMASQ ──────────────────────────────────────────────────
log "dns: starting dnsmasq..."
if $DRY_RUN; then
printf '[dry] systemctl enable --now dnsmasq\n'
else
# Give unbound a moment to fully come up before dnsmasq tries to reach it
# dnsmasq validates its upstream server= at startup — if unbound is not
# yet listening on 5353, dnsmasq exits with INVALIDARGUMENT
sleep 3
systemctl enable dnsmasq >/dev/null 2>&1 || true
systemctl restart dnsmasq >/dev/null 2>&1 || true
sleep 2
if ss -tlnp 2>/dev/null | grep -q ':53 '; then
local new_owner
new_owner="$(_port53_owner)"
_dns_ok "port 53 now owned by: ${new_owner}"
report "${SCRIPT_NAME}" "dns" "dnsmasq-start" "start" "ok" "listening on :53 owner=${new_owner}" ""
else
local dnsmasq_err
dnsmasq_err="$(journalctl -u dnsmasq -n 5 --no-pager 2>/dev/null | tail -3 || true)"
_dns_manual "dnsmasq NOT listening on port 53"
log "dns: dnsmasq journal tail: ${dnsmasq_err}"
report "${SCRIPT_NAME}" "dns" "dnsmasq-start" "start" "failed" "not listening on :53" ""
manual_tasks+=("MANUAL: dnsmasq failed to start — check: journalctl -u dnsmasq -n 20")
manual_tasks+=(" likely cause: port 53 still held by another process (ss -tlnp | grep :53)")
fi
fi
# ── PHASE 9: VERIFY RESOLUTION ─────────────────────────────────────────────
local resolution_ok=false
if ! $DRY_RUN; then
log "dns: verifying resolution..."
sleep 1
if getent ahostsv4 deb.debian.org >/dev/null 2>&1; then
_dns_ok "deb.debian.org resolves ✓"
resolution_ok=true
report "${SCRIPT_NAME}" "dns" "verify-resolution" "check" "ok" "deb.debian.org resolves" ""
else
_dns_manual "resolution FAILED for deb.debian.org"
report "${SCRIPT_NAME}" "dns" "verify-resolution" "check" "failed" "deb.debian.org did not resolve" ""
manual_tasks+=("MANUAL: DNS resolution failed — run: dig deb.debian.org @127.0.0.1 to debug")
fi
fi
# ── PHASE 10: WRITE RESOLV.CONF — only if resolution confirmed ─────────────
if $DRY_RUN; then
printf '[dry] write /etc/resolv.conf → nameserver 127.0.0.1 (only if resolution confirmed)\n'
elif $resolution_ok; then
log "dns: writing /etc/resolv.conf..."
# Back up current resolv.conf before touching it
backup_target /etc/resolv.conf >/dev/null 2>&1 || true
# Break symlink if it points at systemd-resolved stub
if [[ -L /etc/resolv.conf ]]; then
local link_target
link_target="$(readlink /etc/resolv.conf)"
log "dns: /etc/resolv.conf is symlink to ${link_target} — replacing with static file"
rm -f /etc/resolv.conf
fi
printf 'nameserver 127.0.0.1\n' > /etc/resolv.conf
chown root:root /etc/resolv.conf
chmod 0644 /etc/resolv.conf
_dns_ok "/etc/resolv.conf written → nameserver 127.0.0.1"
report "${SCRIPT_NAME}" "dns" "resolv.conf" "restore" "changed" \
"written: nameserver 127.0.0.1 (resolution confirmed before write)" ""
else
# Resolution failed — write a safe fallback, mark resolv.conf as manual
log "dns: resolution not confirmed — writing fallback resolv.conf (1.1.1.1)"
backup_target /etc/resolv.conf >/dev/null 2>&1 || true
[[ -L /etc/resolv.conf ]] && rm -f /etc/resolv.conf
printf '# fallback — local resolver did not come up cleanly\n# replace with: nameserver 127.0.0.1 once dnsmasq is running\nnameserver 1.1.1.1\nnameserver 9.9.9.9\n' \
> /etc/resolv.conf
chown root:root /etc/resolv.conf
chmod 0644 /etc/resolv.conf
_dns_dormant "/etc/resolv.conf → fallback 1.1.1.1 (local resolver not confirmed)"
report "${SCRIPT_NAME}" "dns" "resolv.conf" "restore" "changed" \
"fallback written: 1.1.1.1 — replace with 127.0.0.1 once dnsmasq is confirmed" ""
manual_tasks+=("MANUAL: once dnsmasq is running, run: echo 'nameserver 127.0.0.1' > /etc/resolv.conf")
fi
# ── PHASE 11: SUMMARY REPORT ────────────────────────────────────────────────
printf '\n'
printf ' ── DNS restore summary ────────────────────────────────────────────\n'
# WireGuard not present
if [[ -z "${wg_ifaces// /}" ]]; then
_dns_dormant "WireGuard not present — WireGuard-dependent DNS rules are preserved but dormant"
_dns_info "They will activate automatically once WireGuard is restored"
_dns_info "Run: restore-configs.sh --category wireguard (when implemented)"
fi
# Docker not present or no bridges
if [[ -z "${docker_ips// /}" ]] && ! have_cmd docker; then
_dns_dormant "Docker not present — Docker-dependent DNS rules are preserved but dormant"
fi
# Print manual task list
if [[ ${#manual_tasks[@]} -gt 0 ]]; then
printf '\n'
printf ' ── MANUAL TASKS REQUIRED ──────────────────────────────────────────\n'
local i=1
for task in "${manual_tasks[@]}"; do
printf ' [%d] %s\n' "$i" "$task"
((i+=1))
done
printf '\n'
report "${SCRIPT_NAME}" "dns" "manual-tasks" "manual" "manual" \
"${#manual_tasks[@]} manual tasks recorded" ""
else
printf '\n'
printf ' ── No manual tasks required ✓\n'
printf '\n'
fi
report "${SCRIPT_NAME}" "dns" "category" "restore" "changed" \
"adaptive DNS restore completed; manual_tasks=${#manual_tasks[@]}" ""
}
restore_firewall() {
local base="${PUBLIC_DIR}/firewall"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "firewall" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'firewall'? This can disrupt connectivity." no; then
report "${SCRIPT_NAME}" "firewall" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if [[ "${ROLE}" == "lab" ]]; then
report "${SCRIPT_NAME}" "firewall" "category" "manual" "manual" "lab role: firewall restore intentionally skipped" ""
return 0
fi
maybe_restore "firewall" "nftables.conf" "${base}/nftables.conf" "/etc/nftables.conf"
maybe_restore "firewall" "nftables.d" "${base}/nftables.d" "/etc/nftables.d"
if [[ ${DRY_RUN} == false && -f /etc/nftables.conf ]] && have_cmd nft; then
nft -c -f /etc/nftables.conf >/dev/null 2>&1 || note_failure "${SCRIPT_NAME}" "firewall" "validate" "check" "nftables config validation failed"
fi
}
restore_nginx() {
local base="${PUBLIC_DIR}/nginx/etc-nginx"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "nginx" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'nginx'?" no; then
report "${SCRIPT_NAME}" "nginx" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
maybe_restore "nginx" "etc-nginx" "${base}" "/etc/nginx"
if [[ "${ROLE}" == "lab" ]]; then
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] sanitize /etc/nginx for lab role\n'
printf '[dry] rm -rf /etc/nginx/nginx\n'
printf '[dry] find /etc/nginx -maxdepth 1 -type d -name '\''sites-available.bak.*'\'' -exec rm -rf {} +\n'
printf '[dry] rm -f /etc/nginx/sites-enabled/*\n'
printf '[dry] ln -sf ../sites-available/default /etc/nginx/sites-enabled/default\n'
else
rm -rf /etc/nginx/nginx 2>/dev/null || true
find /etc/nginx -maxdepth 1 -type d -name 'sites-available.bak.*' -exec rm -rf {} + 2>/dev/null || true
mkdir -p /etc/nginx/sites-enabled
find /etc/nginx/sites-enabled -mindepth 1 -maxdepth 1 -exec rm -f {} + 2>/dev/null || true
if [[ -e /etc/nginx/sites-available/default ]]; then
ln -sf ../sites-available/default /etc/nginx/sites-enabled/default
fi
fi
report "${SCRIPT_NAME}" "nginx" "lab-sanitize" "restore" "changed" \
"lab role: dropped captured production sites-enabled and restored only default site" ""
fi
}
restore_mariadb() {
local base="${PUBLIC_DIR}/mariadb/etc-mysql"
[[ -d "${base}" ]] || { mark_manual "${SCRIPT_NAME}" "mariadb" "db" "missing ${base}"; return 0; }
if ! prompt_yes_no "Restore category 'mariadb'?" no; then
report "${SCRIPT_NAME}" "mariadb" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if prompt_yes_no "Restore mariadb/etc-mysql -> /etc/mysql?" yes; then
restore_path "${SCRIPT_NAME}" "mariadb" "etc-mysql" "${base}" "/etc/mysql" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/mysql\n'
printf '[dry] find /etc/mysql -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/mysql -type f -exec chmod 0644 {} +\n'
else
if [[ -d /etc/mysql ]]; then
chown -R root:root /etc/mysql 2>/dev/null || true
find /etc/mysql -type d -exec chmod 0755 {} + 2>/dev/null || true
find /etc/mysql -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
fi
report "${SCRIPT_NAME}" "mariadb" "metadata" "restore" "changed" \
"normalized /etc/mysql ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "mariadb" "etc-mysql" "restore" "skipped" "operator skipped" ""
fi
}
restore_prosody() {
local pub_base="${PUBLIC_DIR}/prosody/etc-prosody"
local sec_base="${SECRET_DIR}/prosody/etc-prosody"
local base=""
local label=""
if ! prompt_yes_no "Restore category 'prosody'?" no; then
report "${SCRIPT_NAME}" "prosody" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if [[ -d "${sec_base}" ]]; then
base="${sec_base}"
label="etc-prosody(secret)"
elif [[ -d "${pub_base}" ]]; then
base="${pub_base}"
label="etc-prosody(public)"
else
mark_manual "${SCRIPT_NAME}" "prosody" "db" "missing public/secret prosody config"
return 0
fi
if prompt_yes_no "Restore prosody/${label} -> /etc/prosody?" yes; then
restore_path "${SCRIPT_NAME}" "prosody" "${label}" "${base}" "/etc/prosody" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/prosody\n'
printf '[dry] find /etc/prosody -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/prosody -type f -exec chmod 0644 {} +\n'
printf '[dry] find /etc/prosody/certs -type f -exec chmod 0640 {} + 2>/dev/null || true\n'
else
chown -R root:root /etc/prosody 2>/dev/null || true
find /etc/prosody -type d -exec chmod 0755 {} + 2>/dev/null || true
find /etc/prosody -type f -exec chmod 0644 {} + 2>/dev/null || true
[[ -d /etc/prosody/certs ]] && find /etc/prosody/certs -type f -exec chmod 0640 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "prosody" "metadata" "restore" "changed" \
"normalized /etc/prosody ownership=root:root dirs=0755 files=0644 certs=0640" ""
else
report "${SCRIPT_NAME}" "prosody" "${label}" "restore" "skipped" "operator skipped" ""
fi
}
restore_tor() {
local pub_base="${PUBLIC_DIR}/tor"
local sec_base="${SECRET_DIR}/tor"
if ! prompt_yes_no "Restore category 'tor'?" no; then
report "${SCRIPT_NAME}" "tor" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if prompt_yes_no "Restore tor/torrc -> /etc/tor/torrc?" yes; then
restore_path "${SCRIPT_NAME}" "tor" "torrc" \
"${pub_base}/torrc" "/etc/tor/torrc" \
0644 root root || true
else
report "${SCRIPT_NAME}" "tor" "torrc" "restore" "skipped" "operator skipped" ""
fi
if prompt_yes_no "Restore tor/torrc.d -> /etc/tor/torrc.d?" yes; then
restore_path "${SCRIPT_NAME}" "tor" "torrc.d" \
"${pub_base}/torrc.d" "/etc/tor/torrc.d" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/tor/torrc.d\n'
printf '[dry] find /etc/tor/torrc.d -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/tor/torrc.d -type f -exec chmod 0644 {} +\n'
else
if [[ -d /etc/tor/torrc.d ]]; then
chown -R root:root /etc/tor/torrc.d 2>/dev/null || true
find /etc/tor/torrc.d -type d -exec chmod 0755 {} + 2>/dev/null || true
find /etc/tor/torrc.d -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
fi
report "${SCRIPT_NAME}" "tor" "torrc.d-metadata" "restore" "changed" \
"normalized /etc/tor/torrc.d ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "tor" "torrc.d" "restore" "skipped" "operator skipped" ""
fi
if [[ "${ROLE}" == "replacement" && -d "${sec_base}/var-lib-tor" ]]; then
if prompt_yes_no "Restore tor/var-lib-tor -> /var/lib/tor?" no; then
restore_path "${SCRIPT_NAME}" "tor" "var-lib-tor" \
"${sec_base}/var-lib-tor" "/var/lib/tor" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R debian-tor:debian-tor /var/lib/tor\n'
printf '[dry] find /var/lib/tor -type d -exec chmod 0700 {} +\n'
printf '[dry] find /var/lib/tor -type f -exec chmod 0600 {} +\n'
else
if [[ -d /var/lib/tor ]]; then
chown -R debian-tor:debian-tor /var/lib/tor 2>/dev/null || true
find /var/lib/tor -type d -exec chmod 0700 {} + 2>/dev/null || true
find /var/lib/tor -type f -exec chmod 0600 {} + 2>/dev/null || true
fi
fi
report "${SCRIPT_NAME}" "tor" "var-lib-tor-metadata" "restore" "changed" \
"normalized /var/lib/tor ownership=debian-tor:debian-tor dirs=0700 files=0600" ""
else
report "${SCRIPT_NAME}" "tor" "var-lib-tor" "restore" "skipped" "operator skipped" ""
fi
else
report "${SCRIPT_NAME}" "tor" "identity" "restore" "skipped" "tor private data not restored in this role" ""
fi
}
restore_i2pd() {
local pub_base="${PUBLIC_DIR}/i2pd"
local sec_base="${SECRET_DIR}/i2pd"
if ! prompt_yes_no "Restore category 'i2pd'?" no; then
report "${SCRIPT_NAME}" "i2pd" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if prompt_yes_no "Restore i2pd/etc-i2pd -> /etc/i2pd?" yes; then
restore_path "${SCRIPT_NAME}" "i2pd" "etc-i2pd" \
"${pub_base}/etc-i2pd" "/etc/i2pd" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/i2pd\n'
printf '[dry] find /etc/i2pd -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/i2pd -type f -exec chmod 0644 {} +\n'
else
if [[ -d /etc/i2pd ]]; then
chown -R root:root /etc/i2pd 2>/dev/null || true
find /etc/i2pd -type d -exec chmod 0755 {} + 2>/dev/null || true
find /etc/i2pd -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
fi
report "${SCRIPT_NAME}" "i2pd" "etc-i2pd-metadata" "restore" "changed" \
"normalized /etc/i2pd ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "i2pd" "etc-i2pd" "restore" "skipped" "operator skipped" ""
fi
if [[ "${ROLE}" == "replacement" && -d "${sec_base}/var-lib-i2pd" ]]; then
if prompt_yes_no "Restore i2pd/var-lib-i2pd -> /var/lib/i2pd?" no; then
restore_path "${SCRIPT_NAME}" "i2pd" "var-lib-i2pd" \
"${sec_base}/var-lib-i2pd" "/var/lib/i2pd" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R i2pd:i2pd /var/lib/i2pd\n'
printf '[dry] find /var/lib/i2pd -type d -exec chmod 0700 {} +\n'
printf '[dry] find /var/lib/i2pd -type f -exec chmod 0600 {} +\n'
else
if [[ -d /var/lib/i2pd ]]; then
chown -R i2pd:i2pd /var/lib/i2pd 2>/dev/null || true
find /var/lib/i2pd -type d -exec chmod 0700 {} + 2>/dev/null || true
find /var/lib/i2pd -type f -exec chmod 0600 {} + 2>/dev/null || true
fi
fi
report "${SCRIPT_NAME}" "i2pd" "var-lib-i2pd-metadata" "restore" "changed" \
"normalized /var/lib/i2pd ownership=i2pd:i2pd dirs=0700 files=0600" ""
else
report "${SCRIPT_NAME}" "i2pd" "var-lib-i2pd" "restore" "skipped" "operator skipped" ""
fi
else
report "${SCRIPT_NAME}" "i2pd" "identity" "restore" "skipped" "i2pd private data not restored in this role" ""
fi
}
restore_docker() {
local pub_base="${PUBLIC_DIR}/docker"
local sec_base="${SECRET_DIR}/docker"
if ! prompt_yes_no "Restore category 'docker'?" no; then
report "${SCRIPT_NAME}" "docker" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if prompt_yes_no "Restore docker/daemon.json -> /etc/docker/daemon.json?" yes; then
restore_path "${SCRIPT_NAME}" "docker" "daemon.json" \
"${pub_base}/daemon.json" "/etc/docker/daemon.json" \
0644 root root || true
else
report "${SCRIPT_NAME}" "docker" "daemon.json" "restore" "skipped" "operator skipped" ""
fi
if [[ -d "${sec_base}/compose-full" ]]; then
report "${SCRIPT_NAME}" "docker" "compose-full" "manual" "manual" \
"compose files available in secret DB; restore manually per stack" ""
fi
}
restore_monitoring() {
if ! prompt_yes_no "Restore category 'monitoring'?" no; then
report "${SCRIPT_NAME}" "monitoring" "category" "restore" "skipped" "operator skipped category" ""
return 0
fi
if [[ -d "${PUBLIC_DIR}/prometheus/etc-prometheus" ]]; then
if prompt_yes_no "Restore monitoring/prometheus -> /etc/prometheus?" yes; then
restore_path "${SCRIPT_NAME}" "monitoring" "prometheus" \
"${PUBLIC_DIR}/prometheus/etc-prometheus" "/etc/prometheus" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/prometheus\n'
printf '[dry] find /etc/prometheus -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/prometheus -type f -exec chmod 0644 {} +\n'
else
[[ -d /etc/prometheus ]] && chown -R root:root /etc/prometheus 2>/dev/null || true
[[ -d /etc/prometheus ]] && find /etc/prometheus -type d -exec chmod 0755 {} + 2>/dev/null || true
[[ -d /etc/prometheus ]] && find /etc/prometheus -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "monitoring" "prometheus-metadata" "restore" "changed" \
"normalized /etc/prometheus ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "monitoring" "prometheus" "restore" "skipped" "operator skipped" ""
fi
fi
if [[ -f "${PUBLIC_DIR}/prometheus/node-exporter-defaults" ]]; then
if prompt_yes_no "Restore monitoring/prometheus-node-exporter -> /etc/default/prometheus-node-exporter?" yes; then
restore_path "${SCRIPT_NAME}" "monitoring" "prometheus-node-exporter" \
"${PUBLIC_DIR}/prometheus/node-exporter-defaults" \
"/etc/default/prometheus-node-exporter" \
0644 root root || true
else
report "${SCRIPT_NAME}" "monitoring" "prometheus-node-exporter" "restore" "skipped" "operator skipped" ""
fi
fi
if [[ -d "${PUBLIC_DIR}/loki/etc-loki" ]]; then
if prompt_yes_no "Restore monitoring/loki -> /etc/loki?" yes; then
restore_path "${SCRIPT_NAME}" "monitoring" "loki" \
"${PUBLIC_DIR}/loki/etc-loki" "/etc/loki" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/loki\n'
printf '[dry] find /etc/loki -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/loki -type f -exec chmod 0644 {} +\n'
else
[[ -d /etc/loki ]] && chown -R root:root /etc/loki 2>/dev/null || true
[[ -d /etc/loki ]] && find /etc/loki -type d -exec chmod 0755 {} + 2>/dev/null || true
[[ -d /etc/loki ]] && find /etc/loki -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "monitoring" "loki-metadata" "restore" "changed" \
"normalized /etc/loki ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "monitoring" "loki" "restore" "skipped" "operator skipped" ""
fi
fi
if [[ -d "${PUBLIC_DIR}/grafana/etc-grafana" ]]; then
if prompt_yes_no "Restore monitoring/grafana -> /etc/grafana?" yes; then
restore_path "${SCRIPT_NAME}" "monitoring" "grafana" \
"${PUBLIC_DIR}/grafana/etc-grafana" "/etc/grafana" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/grafana\n'
printf '[dry] find /etc/grafana -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/grafana -type f -exec chmod 0644 {} +\n'
else
[[ -d /etc/grafana ]] && chown -R root:root /etc/grafana 2>/dev/null || true
[[ -d /etc/grafana ]] && find /etc/grafana -type d -exec chmod 0755 {} + 2>/dev/null || true
[[ -d /etc/grafana ]] && find /etc/grafana -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "monitoring" "grafana-metadata" "restore" "changed" \
"normalized /etc/grafana ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "monitoring" "grafana" "restore" "skipped" "operator skipped" ""
fi
fi
if [[ -d "${SECRET_DIR}/alloy/etc-alloy" ]]; then
if prompt_yes_no "Restore monitoring/alloy -> /etc/alloy?" yes; then
restore_path "${SCRIPT_NAME}" "monitoring" "alloy" \
"${SECRET_DIR}/alloy/etc-alloy" "/etc/alloy" || true
if [[ ${DRY_RUN} == true ]]; then
printf '[dry] chown -R root:root /etc/alloy\n'
printf '[dry] find /etc/alloy -type d -exec chmod 0755 {} +\n'
printf '[dry] find /etc/alloy -type f -exec chmod 0644 {} +\n'
else
[[ -d /etc/alloy ]] && chown -R root:root /etc/alloy 2>/dev/null || true
[[ -d /etc/alloy ]] && find /etc/alloy -type d -exec chmod 0755 {} + 2>/dev/null || true
[[ -d /etc/alloy ]] && find /etc/alloy -type f -exec chmod 0644 {} + 2>/dev/null || true
fi
report "${SCRIPT_NAME}" "monitoring" "alloy-metadata" "restore" "changed" \
"normalized /etc/alloy ownership=root:root dirs=0755 files=0644" ""
else
report "${SCRIPT_NAME}" "monitoring" "alloy" "restore" "skipped" "operator skipped" ""
fi
fi
}
for category in "${CATEGORIES[@]}"; do
log "processing category: ${category}"
case "${category}" in
system-basics) restore_system_basics ;;
users) restore_users ;;
ssh) restore_ssh ;;
network) restore_network ;;
dns) restore_dns ;;
firewall) restore_firewall ;;
nginx) restore_nginx ;;
mariadb) restore_mariadb ;;
postfix) restore_postfix ;;
prosody) restore_prosody ;;
tor) restore_tor ;;
i2pd) restore_i2pd ;;
docker) restore_docker ;;
monitoring) restore_monitoring ;;
*) note_failure "${SCRIPT_NAME}" "category" "${category}" "restore" "unknown category" ;;
esac
done
set_state restore_configs done
report "${SCRIPT_NAME}" "run" "finish" "exit" "ok" "completed" ""
log "${SCRIPT_NAME}: done; report=${REPORT_FILE}"
|