-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathchangelog.upstream
More file actions
2318 lines (1551 loc) · 68.5 KB
/
Copy pathchangelog.upstream
File metadata and controls
2318 lines (1551 loc) · 68.5 KB
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
commit 74d5943c697415af16ea2058b28ed2e4ede7a8c0
Merge: d6ce125 ee8f99d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Sep 6 23:29:58 2026 -0400
Merge remote-tracking branch 'refs/remotes/ArrayBolt3/arraybolt3/trixie'
commit d6ce1252dca6cbbe5c42a2182d3533f8cd5b9d2f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Sep 6 16:28:01 2026 +0000
bumped changelog version
commit ee8f99dd786a6e7b09ad221542451ee1f96fb366
Merge: 9484f26 3771fe3
Author: Aaron Rainbolt <arraybolt3@gmail.com>
Date: Sun Sep 6 01:04:47 2026 -0400
Merge branch 'master' into arraybolt3/trixie
commit f63739e21ab2496a3bed0ba9d0cf090cf3ad7781
Merge: 3771fe3 9484f26
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Sep 5 01:30:00 2026 -0400
Merge remote-tracking branch 'refs/remotes/ArrayBolt3/arraybolt3/trixie'
commit 9484f260bb9b00f6f4f134f30013606ebd7a1ebf
Author: Aaron Rainbolt <arraybolt3@gmail.com>
Date: Fri Sep 4 18:30:20 2026 -0400
.
commit 7b50e8979f44f0b519282352b13f275811978b69
Merge: c4f7632 efb064d
Author: Aaron Rainbolt <arraybolt3@gmail.com>
Date: Fri Sep 4 18:26:19 2026 -0400
Merge branch 'ai' into arraybolt3/trixie
commit 3771fe369a75e802d67581e7665dec064e6844e3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 26 07:52:55 2026 +0000
bumped changelog version
commit fde92fd392515a0f361c498b33f6028943a40446
Merge: cef0891 efb064d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 25 01:29:14 2026 -0400
Merge remote-tracking branch 'refs/remotes/org-ai-assisted/ai'
commit efb064dc6ac8f98e1166bf6323bd4caa19a8d239
Author: assisted-by-ai (Bot Account) (Machine Account) <228987186+assisted-by-ai@users.noreply.github.com>
Date: Mon Aug 24 23:29:15 2026 -0400
ci: drop orphaned consumer-pre-push-static.yml (reusable decommissioned)
commit cef08915c9e8993db43af191244e8b422a2d30ce
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Aug 23 05:44:27 2026 +0000
bumped changelog version
commit 92c10021cb390e78d79163a991c0718b5dcddf0d
Merge: f9f83bc 6b15036
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Aug 22 22:37:43 2026 -0400
Merge remote-tracking branch 'refs/remotes/org-ai-assisted/ai'
commit f9f83bc13e4c39d8182330210c62238582663e47
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Aug 21 08:50:54 2026 +0000
bumped changelog version
commit 6b15036dcfcb61190c02a2a5f8f316a8bce1cb95
Author: claude (dev272 e8b76afb-795c-4739-8ebd-023de854021e) <noreply@anthropic.com>
Date: Fri Aug 21 04:23:30 2026 -0400
apparmor-profile-dist: source live-mode.sh via HELPER_SCRIPTS_PATH, drop SC1091 disable
- live-mode-apparmor: use source "${HELPER_SCRIPTS_PATH:-}"/usr/libexec/helper-scripts/live-mode.sh;
drop the dead '# shellcheck disable=SC1091' and the stale sibling note.
- .github/dm-consumer.yml: dist-ai-tests: helper-scripts: true, so the
pre-push-static gate checks out helper-scripts as the repo sibling and
shellcheck FOLLOWS the source. See the shellcheck skill.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
commit d820a4b02e4dad862f97f1adb8f556fef5c5f37c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 19 00:07:06 2026 -0400
fix
commit 4db6aec3e864f8120395cb5b475311f451a2d023
Merge: c4f7632 dbd852c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 19 00:05:32 2026 -0400
Merge remote-tracking branch 'refs/remotes/org-ai-assisted/ai'
commit dbd852c9b7613a52b2d3ecb352fe2ca822653369
Author: claude (dev163 38f9745c-aed1-4fb4-b6ae-9899f20f8de2) <noreply@anthropic.com>
Date: Sat Aug 8 04:55:21 2026 -0400
CI: enrol in the pre-push static gate
This repo had no GitHub Actions workflow at all, so nothing verified its PRs on
the server side -- the only gate was ci-repro run locally.
The workflow file is the canonical consumer template, copied verbatim from
developer-meta-files/consumer-templates/.github/workflows/. It is managed: once
present, dm-packaging-helper-script's pkg_update_consumer_workflows keeps it in
sync, so it must not be hand-edited here.
Enrolment is deliberately a SEPARATE act from propagation: that function uses
pkg_update_if_exists, which only updates a workflow that already exists, and
pkg_install_dependabot_yml skips any repo with no .github/workflows/ directory.
Neither creates the first one. Hence this commit.
Scope: the repos this session actually changed and that ship shell code -- not
every repo lacking CI. Enrolling a repo consumes shared org-wide Actions
concurrency (20 jobs, the real limit; public repos are not minute-billed), so it
is worth spending where there is signal.
Verified BEFORE enrolling: 'ci-repro.sh --worktree' passes for this repo, so the
gate arrives green rather than turning someone's PR red on arrival.
NOTE, so it is not a surprise: creating .github/workflows/ makes this repo
eligible for the canonical .github/dependabot.yml on the next propagation pass,
which pkg_install_dependabot_yml installs into any repo that uses Actions.
commit 5aa3781dc08e57229245b178b8eca8ff6c9f47b8
Author: claude (dev163 38f9745c-aed1-4fb4-b6ae-9899f20f8de2) <noreply@anthropic.com>
Date: Fri Aug 7 13:26:59 2026 -0400
apparmor-profile-dist: R-010 strict mode for live-mode-apparmor
The script toggles one line in /etc/apparmor.d/tunables/home.d/live-mode
depending on live versus persistent mode.
The behaviour change is deliberate and is the SAFE direction
---------------------------------------------------------------
live_status_detected comes from the sourced live-mode.sh. If that file does not
set it -- absent, truncated, a helper-scripts version skew -- the old code
silently took the ELSE branch and DISABLED the live-mode tunable. On a live
boot that is the wrong AppArmor configuration, applied quietly. Under nounset
it now aborts and the tunable is left exactly as it was.
'${live_status_detected:-false}' was deliberately NOT used. That is the obvious
way to make the abort go away, and it reinstates the bug: an undetermined mode
would again be treated as persistent. The canary below is exactly that change.
Also: the '## double hash' opt-out documented in the script is preserved -- the
greps are anchored to a single '#', so an administrator who commented the line
out twice is untouched by either branch.
Testing
-------
Gate exit 0 in an ISOLATED checkout.
New harness at ~/strict-pass-tests/apd-test/. It compares the RESULTING FILE,
not just the exit code -- the tunable IS this script's output, and an exit code
cannot show a wrong AppArmor configuration. Eight cases: both modes crossed
with the tunable enabled, disabled and double-hashed, plus a missing tunable
file and a live-mode.sh that sets nothing.
8 same, 0 differing
Canary: replacing the read with '${live_status_detected:-false}' gives
7 same, 1 differing -- the fail-closed case reports a zero exit with the
tunable silently flipped to disabled.
commit c4f7632db951fae61ab567d77c04ef8d90604e12
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 20 21:55:46 2026 +0000
bumped changelog version
commit 32100dcc9f2ec04214b06c3849a396612ead3cb7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 20 16:56:36 2026 -0400
genmkfile uch
commit 57e2150a1ec908ea966f99ff8526c7ea5d0e26f9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 09:38:28 2026 +0000
bumped changelog version
commit c336fa09694470946c7b2da98ab2faefc9cc9e8c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 05:29:55 2026 -0400
readme
commit 131d23ef4e33d3fc5b9d6443bb2cf4caacaecc81
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 05:26:24 2026 -0400
signed commit
commit c7def2beba73e71a764ecab5d639f39b22e29460
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Nov 29 06:06:17 2025 +0000
bumped changelog version
commit ea03ce815e3c2df8fbd717f812ca9c847fbaff93
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Nov 28 00:57:12 2025 -0500
update path
commit 57adbd7569c3dcf4e902beaa557a9f43467a51dd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Sep 19 16:08:30 2025 +0000
bumped changelog version
commit 298b232d5fd04a8a7e762852fe6bdd0705a29118
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Sep 18 10:04:45 2025 -0400
add debian install file (generated using "genmkfile debinstfile")
commit 022849b10baa23e16500c269de2d24dbfc3af312
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 2 15:09:01 2025 +0000
bumped changelog version
commit 8535ac08196c8ca8fb8ed7798d01594e570eccbf
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 26 08:32:53 2025 +0000
bumped changelog version
commit e33dca5d5ec8f0c8091f620bad8ee0e28b9bbdb7
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Aug 5 22:57:56 2025 -0500
Port to Trixie.
commit 425a45cde122f0b0f196652045bb5e6ad59193fc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 12 08:08:41 2025 +0000
bumped changelog version
commit 535acb356947636e055d1e7b21800c6cf3c5b934
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 12 03:37:06 2025 -0400
grep quiet
commit de043acad88ca2987d147d810855b4a9a3d1591d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 12 03:35:57 2025 -0400
lower debugging
commit cc9778789afbc5711d371fe279803c58941ca0ee
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Mar 28 14:43:40 2025 +0000
bumped changelog version
commit 7d74401254e7efde597d896591e37fb6374934a3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Mar 28 06:22:07 2025 -0400
apparmor
commit 65b0fbe4f067a866b659378290404d9283396d15
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 12:37:12 2025 +0000
bumped changelog version
commit 37ee762f1df6e9d86527cc8c786bde258cf200d5
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 06:06:24 2025 -0400
improve live mode detection
commit e0e9034034b827e60dfc83ce9a8b25b07339fa39
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Feb 2 15:29:52 2025 +0000
bumped changelog version
commit 6916aae80f6c70185dc9d2c32a4abc37e1c3a5a1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Feb 2 09:55:30 2025 -0500
debugging
commit eeac16786e22c1d996fcf802356e36241d20c671
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 30 12:55:38 2025 +0000
bumped changelog version
commit f47372f58638fd9ad785bd1cddf4dc5f2fb44f03
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 30 07:43:26 2025 -0500
LANG=C str_replace: no longer requires LANG=C, therefore removed
commit d171098b91e2892e363414726fe2174e4de98eb4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 16:15:47 2025 +0000
bumped changelog version
commit b104980b7de64b38341b04629f632772f45df235
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 11:09:02 2025 -0500
copyright
commit d4007dfd86bbf83f8d87fb06623e5dba54e230dd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 18:28:20 2024 +0000
bumped changelog version
commit 42ccfb6e11dc9910f6f5b64d1231622133a093f1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 13:26:14 2024 -0500
copyright
commit 60771c42c4f0f47f1c6a7867edfeaf249634eabc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Feb 2 12:33:36 2024 +0000
bumped changelog version
commit 7d5074048263f9dc36a411bade78ef48118aecf7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Feb 2 07:32:20 2024 -0500
usrmerge debhelper systemd Debian package maintainer scripts fix
commit c71476686617c6b6a46c7e8cba010ae828243bff
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 22 12:36:30 2024 +0000
bumped changelog version
commit e037f4788540a601c413d39bb9f94f22897d6a60
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 22 07:14:02 2024 -0500
usrmerge
commit 0bd3c1dcdaad245e4b08bba220c436e8db7438fc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 18 13:56:39 2024 +0000
bumped changelog version
commit 2ab83d9145d3b90223b509de70b17be29aad70b4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 18 08:53:09 2024 -0500
readme
commit 858b59a9209aead22b572ed853ca738c7b98c5cc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 16 05:45:07 2023 +0000
bumped changelog version
commit fb69ff88698191b2738226b8ee54e7d74e86ac00
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 15 20:39:03 2023 -0500
rm_conffile /etc/apparmor.d/abstractions/base.anondist
commit f1010c621cfb31e5454afa95c0f44ea3a60bb66f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 15 20:34:24 2023 -0500
port to /etc/apparmor.d/abstractions/base.d part 2
https://phabricator.whonix.org/T927
commit 41e1c82ea56b9f3e55f6f325c863bb6fbc92803a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 15 20:31:32 2023 -0500
description
commit f821373a712deb312041946d50be3769d9aa9b19
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 15 20:30:37 2023 -0500
port to /etc/apparmor.d/abstractions/base.d
https://phabricator.whonix.org/T927
commit 666e2c15bdff6cbd74f7f6ad6b5dea98f0399c65
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Nov 11 20:11:44 2023 +0000
bumped changelog version
commit da9f3843f8247fcebf12b4788c2ba5984e85ecbd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Nov 11 13:41:28 2023 -0500
change license to AGPL-3+
https://forums.whonix.org/t/license-change-to-agplv3/17455
commit e096769f361a6ea0f29bd3ce6038582461d96fe8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 11:31:22 2023 -0400
bumped changelog version
commit d5a06f1975b0a8b03859e6363fea573d470c31bd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 11:16:33 2023 -0400
Kicksecure
commit 90bfb583937208f802fe13cc209ee24ee31c4821
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 10:59:18 2023 -0400
Kicksecure
commit 3f70bec9b574eb77ae1a4d5b3c47e0730c620dbe
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:13:13 2023 +0000
bumped changelog version
commit ab9276a0de4fecc57feb9724852acfdc5f137a00
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:11:25 2023 +0000
bookworm
commit bea8d7eb83528a8bd3c26bf7d1ac0b20b20db975
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jun 16 10:50:08 2023 +0000
bumped changelog version
commit d1e3aa290a515e9d5809957c1e7cbd1924c529be
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jun 16 10:48:59 2023 +0000
readme
commit 6eaf52641e699c3038c9096121ed2bfd6e48c565
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jun 15 16:58:05 2023 +0000
bumped changelog version
commit 0ee5e5eaa9778f851c3ffc2a51dd87c57c6e90ad
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 14 13:14:42 2023 +0000
copyright
commit 3e421c9612b3eb2cd9375b90035886d23cf41778
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 17:43:00 2023 +0000
bumped changelog version
commit 3bfdea3043ab8fbfcb029b1ffe3bd58ce03a40a6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 16:22:26 2023 +0000
Standards-Version: 4.6.1.0
commit a380838f3a20913ac5cc60fb48115a48d64c453c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 15:14:31 2023 +0000
bumped changelog version
commit 7556c3381a7378fd19b620d52ff2914f1af1df73
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 14:51:55 2023 +0000
update copyright year
commit f7a70cef016de760060264ea8b40cf516a829366
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 25 06:05:38 2022 -0400
bumped changelog version
commit ee8e5480f51d83783a1420db8864294cf2192e33
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri May 20 15:27:02 2022 -0400
readme
commit bf62db4c3b8b98750eee7198a661bdf6044f6091
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri May 20 14:46:30 2022 -0400
copyright
commit a168f4876ff3a63c37c85841acb67653b0785b98
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Apr 10 12:37:31 2022 -0400
readme
commit 6e871943de886498736d65ee90fd83d1149c14d8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Nov 9 14:32:28 2021 -0500
readme
commit 372f809c7921380ba8290b246e7d39f4f7f985d4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Sep 24 11:08:54 2021 -0400
bumped changelog version
commit 24494f6f48397d40b9b86e12e54aeb73f9fbb79f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Sep 24 11:07:28 2021 -0400
fix
commit 85dedc1c4adf1750e80cdc848ba55d1a1abdfe53
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Sep 11 18:34:16 2021 -0400
bumped changelog version
commit be3565e68ab349f0b1efb3aa26996a0217a0f067
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Sep 11 16:31:08 2021 -0400
readme
commit 0adc142f14342e0cb2be39e9318bd71a6da53d5d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Aug 22 05:27:17 2021 -0400
bumped changelog version
commit d5535bcd09e5ac921f1d546a8c3b06b9d22a9458
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Aug 22 05:21:05 2021 -0400
LANG=C str_replace
commit a5f412774c191712c302addaccca404beb3c21ff
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 17 13:02:01 2021 -0400
bumped changelog version
commit 6966b2d610902a8ff2d5371f0709ce9500f8fac4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 17 12:58:40 2021 -0400
fix
commit 9f661c833f1490b2915f796e08bbf1df83f252ef
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 17 12:49:50 2021 -0400
comment
commit 253ab9ff01921427ec76052814e78977911d790f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 17 12:39:11 2021 -0400
bumped changelog version
commit 41e3bb610efbff440299694bf00117240ed8b12e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 17 12:26:39 2021 -0400
security-msic `/run/faillock/** rwc,`
commit 18dd12cd7883d44f4ca2469029bc79a79146119f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Aug 16 16:19:32 2021 -0400
bumped changelog version
commit 51c82b715fe47fecf9fb0c76317ba3558f5af455
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Aug 16 16:19:08 2021 -0400
pam security-misc bullseye
commit b6f37eccd785cc3dfdc3e6295948be0233ddd418
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Aug 16 16:12:46 2021 -0400
/etc/security/ r,
commit 3b2ce3bd4e4ee9749c4dc0c42c7364da099e7235
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Aug 16 15:40:44 2021 -0400
bumped changelog version
commit 4554d97de8cbc126b11fc8504739bd138a8f1922
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Aug 16 15:36:20 2021 -0400
/etc/security/faillock.conf r,
commit bb4a8ceb900abcd16fcdcbf5445290f2ee82f1e8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Aug 5 16:32:11 2021 -0400
bumped changelog version
commit 8941fe324f73a8fe8f0f2b059f2bda135490120b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 4 14:56:10 2021 -0400
lintian FHS
commit c7b4dad4753889932db9401abe93c8d076f4a4ea
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 4 14:55:53 2021 -0400
lintian FHS
commit b65055c97ff1d645b958ae383cc873bd69bc2d90
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 4 07:44:26 2021 -0400
update path
commit 1143d705d32f27810bfd40278f19fe30ea3857ce
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 4 06:56:06 2021 -0400
cleanup
commit 15db8f43e138aed886b984fe1d62df0b873ce752
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 4 06:55:11 2021 -0400
update path
commit 5b9c74363455fd52d3a37824d50e269d44951ba0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 3 12:56:30 2021 -0400
move /usr/lib/security-misc to /usr/libexec/security-misc as per lintian FHS
commit 17fcf4d9bdc5d25ac1d7e1b1fce9ee6ca2ca7ac7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 3 12:48:51 2021 -0400
move /usr/lib/helper-scripts and /usr/lib/curl-scripts to /usr/libexec/helper-scripts as per lintian FHS
commit 4aa57365d63b29aca4c5a38e47794eba0625be3a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 3 05:48:16 2021 -0400
bullseye
commit 74f83bbdc8bb97359b1a1619390c03fe1f9549db
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Aug 1 16:24:20 2021 -0400
readme
commit 981009ac8987ba42c86115bf1f35efd1387c787d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 17 10:57:31 2021 -0400
bumped changelog version
commit 84cd0139f268281f6f273cd8bd990256978e6b07
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 17 10:57:30 2021 -0400
readme
commit a989ccbe91d40e58ed72a25007453c3d89a6b283
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 17 09:45:11 2021 -0400
copyright
commit 580d973a4937bc2c8a60c2ade83e37f6e2588291
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 27 04:17:27 2021 -0500
bumped changelog version
commit 889d2638142bb64682055ae96d237e0d9a56926e
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 27 03:42:04 2021 -0500
comment
commit b797d4e8ed227e73fd626bcc6aac3d17e45cc366
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Fri Jan 15 07:27:13 2021 -0500
bumped changelog version
commit 7be8d67f840ca4a07312f508f3d27226e53b1cbe
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Fri Jan 15 01:44:35 2021 -0500
Cannot use: `rPx`
AVC apparmor="DENIED" operation="exec" info="no new privs" error=-1 profile="/usr/lib/systemcheck/census" name="/usr/bin/tor-circuit-established-check"
Might be fixed in later kernel version.
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1844186
`/usr/bin/tor-circuit-established-check rix,`
commit ae64881b9f6e3b0590dcc0a153dfe4e387f9ca60
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Fri Jan 15 01:12:33 2021 -0500
fix, rCx -> rPx
commit 0dd19aeacc0123b154caaa7ebeecf933ea7c775c
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Fri Jan 15 01:01:29 2021 -0500
`/usr/bin/tor-circuit-established-check rix,` -> `rCx`
commit 92326a078e7042200b707867e291fa9279a37886
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Fri Jan 15 00:38:33 2021 -0500
update path
commit 4e773d4c9454a646183834b76d7c7dc0782ddc4d
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Sun Jan 10 23:15:21 2021 -0500
bumped changelog version
commit 4ba741d5d5233572e085e3c54f7e81eb4215a534
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Sun Jan 10 03:32:11 2021 -0500
update path
commit 878744f656b4a5427cca65b73a698f107a545189
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 6 05:29:45 2021 -0500
bumped changelog version
commit fc3e6f953c7463c91e3d552170e6f68425aff029
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 6 05:29:44 2021 -0500
readme
commit 8a0bcebb289f1743cd9b739b4cd67e7130703d4e
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 6 05:22:42 2021 -0500
update path
commit 9c7c157f71c18aa29931ca59120ce428812a8997
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jul 15 00:12:03 2020 -0400
bumped changelog version
commit 6834278a4d57b34f3b3f35b95892dfb7ed753701
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jul 15 00:11:46 2020 -0400
update filenames
commit 4f1ec615177a937722d38346a8124aa7f8701906
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Thu Jun 25 10:56:36 2020 -0400
bumped changelog version
commit 72c257ecb798a7fc4fb3664ccbe74e9409545724
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Sun Jun 21 17:23:22 2020 -0400
apparmor snoopy
commit 09adf80ec813f288707b6918f1c4eba0d76681bd
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Thu Apr 16 16:59:59 2020 -0400
bumped changelog version
commit 559f15babdecebbf76f0ca6c466e74bd11375aa8
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Thu Apr 16 12:02:18 2020 -0400
/var/lib/dist-base-files/build_version
commit 7ee5226a217f3ada7fa1f33770040743ac37d839
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Thu Apr 16 08:23:08 2020 -0400
bumped changelog version
commit c52c6706894a71e65ba0160e2f8c754598b40c2c
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 15 14:05:27 2020 -0400
readme
commit 5b7a87cf0b033b30176c5f084e74b30c47f0a988
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 15 08:42:44 2020 -0400
bumped changelog version
commit 9a3716ac73e491198255a42c9114b3b6e5b0d2af
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 15 05:56:06 2020 -0400
refactoring
https://forums.whonix.org/t/apparmor-for-complete-system-including-init-pid1-systemd-everything-full-system-mac-policy/8339/388
commit 4863375bed86ab278d13d030012aff313d3a113c
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 17:24:36 2020 +0000
bumped changelog version
commit 18e52595f72e13182672205b4ac751a2dfbb6b60
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 17:23:06 2020 +0000
apparmor-profile-anondist -> apparmor-profile-dist
commit c9686b735a889c4a5efb5b35bc14fd5da905631a
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 17:11:26 2020 +0000
bumped changelog version
commit f98f658e3b0e04072ad0544b435f5701b2acbd94
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 16:55:47 2020 +0000
apparmor-profile-anondist -> apparmor-profile-dist
commit 9ef55b15044882e79f350243f904ae1f944450b0
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 13:19:31 2020 +0000
bumped changelog version
commit f05e419fb1d6b1e0c2a1ef3fbb0f8a0ef83ad052
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 12:48:26 2020 +0000
cleanup `@{HOME}/.whonix/* rwk,` - no longer in use
commit 5262552295b94361ea49a1a46a379d9191365a7a
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 12:40:15 2020 +0000
bumped changelog version
commit 8c34639d727f3e626b8527d7ae3af41436db4f35
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 12:39:58 2020 +0000
copyright
commit 1636b90761c1caa76cfe5e73125946efe58b33ba
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 12:38:03 2020 +0000
/etc/resolv.conf.whonix
commit cf7d7e827f4561aeddd275d6efbb78923d6f8c2e
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 8 12:03:35 2020 +0000
anon-base-files -> dist-base-files
commit 7603c47913c8bb5397bab0ac94c2a77a6f6c971e
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Tue Apr 7 10:36:52 2020 +0000
bumped changelog version
commit 6028de10c3dd823b6858569f6a750a71f6a11676
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Mon Apr 6 20:04:52 2020 +0000
comment
commit 91222a5f104d0834ac542fd06187ab622a2fac89
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Thu Apr 2 07:34:01 2020 -0400
bumped changelog version
commit d0ceb60a9345afd0fc4df88f54acd59b1b7f8b95
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Thu Apr 2 07:22:17 2020 -0400
readme
commit e1633c5734181afc4c8c3279b97d84906dc45e07
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 1 16:57:27 2020 -0400
remove genmkfile
commit 4a50d12d3cdfdd6cf37f1255781d52aeb01f38bc
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 1 16:30:05 2020 -0400
add debian install file
commit 5499dc76d9c09ab5049c6c92a92d259fd17247c6
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 1 10:25:46 2020 -0400
bumped changelog version
commit c8a5f551f6cf364d71d65832ccfc44f87af31788
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Apr 1 08:49:52 2020 -0400
update copyright year
commit c396e0bf1a5e08bbe93630901f7e72fc6bc0a626
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 1 09:34:37 2020 -0500
bumped changelog version
commit 0ec077b6ae99ed08b6607ef9322de1986d256baa
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 1 09:31:56 2020 -0500
/usr/lib/security-misc/pam-abort-on-locked-password rUx,
commit a169daa3f9bd5fc0a54af6c483f55cea240f573a
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 1 09:30:53 2020 -0500
/usr/lib/security-misc/pam_only_if_login rUx,
/etc/security/access-security-misc.conf r,
commit 8945cebb5e986bb3bba70ba8f694e0b6f494f630
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 1 09:29:24 2020 -0500
Revert "Replace Ux rules"
This reverts commit 2070406b60bbbaff52095537a90b385eb0a33a3d.
commit 04d2be17aeef26b0bce0f7c74d76fb9367ce4771
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Wed Jan 1 09:26:45 2020 -0500
Revert "remove"
This reverts commit a55417e067616f1cb5a1d64725f43c26b1a40de1.
commit c9055150c75316925a8b0e835b8e1884f0c7c215
Author: Patrick Schleizer <adrelanos@riseup.net>
Date: Sun Dec 8 04:03:49 2019 -0500
bumped changelog version
commit a55417e067616f1cb5a1d64725f43c26b1a40de1
Author: Patrick Schleizer <adrelanos@riseup.net>