-
Notifications
You must be signed in to change notification settings - Fork 3
/
changelog.upstream
1438 lines (961 loc) · 42.3 KB
/
changelog.upstream
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 da739875e36444ed44a5dfb256419058e40851d9
Author: Patrick Schleizer <[email protected]>
Date: Fri Nov 15 06:17:30 2024 -0500
sanity test
commit 528694be791b126da112cbf71276a1dacd9273f6
Author: Patrick Schleizer <[email protected]>
Date: Fri Nov 15 06:16:30 2024 -0500
no longer consider hibernation by default
to have a smaller default swap file by default
and because hibernation is not yet compatible with Secure Boot
https://forums.kicksecure.com/t/enable-and-use-zram-instead-for-swap/654/8
commit 4a3db90f0b14cac04cf7c35549f69074a368fd5e
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 29 10:07:05 2024 +0000
bumped changelog version
commit 03754a2b197e40ce9b4d6c803e85771d0086f60d
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 29 06:06:06 2024 -0400
skip swap-file-creator if xen was detected
(Likely a Qubes HVM, which has dynamic RAM assignment.)
commit a16c6c8ff3a3654c5310881d58c4e4e003a19180
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 25 13:21:48 2024 +0000
bumped changelog version
commit 7eee84f4ce0a4104b9992540d0b346c04615e945
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 25 08:43:51 2024 -0400
skip output if live mode is detected and not creating a swap file
commit cc44c8016a12f1e4b944d151f127935be8196e36
Author: Patrick Schleizer <[email protected]>
Date: Sat Mar 9 15:19:22 2024 +0000
bumped changelog version
commit cacbe150505ec9d9c674dbd432dc9bf07ab868a7
Author: Patrick Schleizer <[email protected]>
Date: Sat Mar 9 10:19:03 2024 -0500
skip on ISO
commit eb11492021c3f3b62fe1e4052f2e96755a9b8a6f
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 13:50:14 2024 +0000
bumped changelog version
commit 2b9f8f0c61ae1c4f6bac1668f0099e91efdb53f4
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 08:48:08 2024 -0500
fix VM detection to disable hibernation swap file size calculation considerations inside VMs
commit a52bcfd62c16f5310e9268e5944a57f15ec98448
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 12:37:44 2024 +0000
bumped changelog version
commit 2846e0418ec39739d703a7ec42e9fe2fbea245b9
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 07:32:42 2024 -0500
usrmerge debhelper systemd Debian package maintainer scripts fix
commit 843965ba2ba6be6ae91b548970ab42a5e08da7b1
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 22 12:46:07 2024 +0000
bumped changelog version
commit 19af6836de664dcde3f0956246be6a8d089986d7
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 22 07:13:32 2024 -0500
usrmerge
commit b0950c78d72870d1bfd4053c3f1c846853f94de6
Author: Patrick Schleizer <[email protected]>
Date: Thu Jan 18 14:11:56 2024 +0000
bumped changelog version
commit d2d61f1324d88aead415d2c352dcf10693feca08
Author: Patrick Schleizer <[email protected]>
Date: Thu Jan 18 08:55:46 2024 -0500
readme
commit f9c7df42fa62b58f67452a19a6aaa0ba795c5e20
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 27 13:05:28 2023 +0000
bumped changelog version
commit bcdda87eda573d0f9cec81aaca733b20731ee53b
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 27 08:04:16 2023 -0500
Depends: bc
commit 2113ae99c38321207beb8bb70fc782f9664c5998
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 25 18:41:42 2023 +0000
bumped changelog version
commit dd604bb51ffcae70f6e880a46566973e8ec79535
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 25 13:40:48 2023 -0500
fix: handle cases where swapon returns decimal point numbers
commit c83cdae33c07e9cb3991d689affefb4bf97f4e2f
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 25 13:35:13 2023 -0500
fix
commit 35d67a55e498408e6f5fc8aee51a04fa8bf5ba78
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 25 13:33:48 2023 -0500
fix: cases where swapon outputs M instead of G
commit 7d3a83a05fab2219daff8ad17c729192d0b9b254
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 25 13:19:04 2023 -0500
shellcheck
commit a3194c47dc0a49dda785a1b6e4e79b100ef1dc90
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 25 13:18:10 2023 -0500
improved error handling
commit ecb1c8752b591e5afff13559f96de77aedaccb28
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 22 16:32:19 2023 +0000
bumped changelog version
commit 674f3a16d7cac7fa5d180ae854e83e9e8a653f30
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 22 10:48:44 2023 -0500
vastly improve swap-file-creator
* always create a swap file if swap-file-creator is installed
* increased minimum size of swap file to 6 GB
* vastly speed up swap-file-creator through use of `fallocate` and `systemd-cryptsetup`
from several or tens of seconds to around 1 second
* use `calculate-swap-size` to calculate size of swap file to be created
* take into account for size calculation if the system is using hibernation,
it is assumed that this is not the case in VMs, therefore a smaller
swapfile is sufficient.
* do not attempt to create a swap file if there is insufficient disk space
* improved output
* systemd `After=systemd-random-seed-load.service` for better entropy
* added a test to check if a swap file with the expected size has been created
* improved error handling
* code simplification through integration with systemd / journald for logs and status
* removed little/unused configuration options, see /etc/default/swap-file-creator
https://forums.whonix.org/t/swap-swap-file-whonix-gateway-freezing-during-apt-get-dist-upgrade-encrypted-swap-file-creator/8317/8
commit d065868b01b18fc6126d1af51bc0d182c8e55c80
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 9 16:31:09 2023 +0000
bumped changelog version
commit 4f94502308d1b89c9ece28cb254a597df1538331
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 9 11:30:32 2023 -0500
increase encrypted swap file size to 1 GB
commit de96c98b026c38ed76bb86c8341a7f62dec22a93
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 11 20:23:57 2023 +0000
bumped changelog version
commit 4983b18096bf6f533f896d578cbc489cac760ffa
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 11 13:41:27 2023 -0500
change license to AGPL-3+
https://forums.whonix.org/t/license-change-to-agplv3/17455
commit 1ec8dfd87887c7d07f0722dd471119be16ae9377
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 17 11:49:26 2023 -0400
bumped changelog version
commit 708f892008716acdc8836287f1a6b2cab683f384
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 17 11:19:19 2023 -0400
Kicksecure
commit 11cafae6cf4406a95cd5ee470b4c878c1886fbd6
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 17 11:10:54 2023 -0400
Kicksecure
commit d3a31df0977a2f2c40b09c716fd31ad29ff790b8
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 11:32:43 2023 -0400
bumped changelog version
commit 5bf142a0c28b8d01e23d3d49ff0ef559625a72d7
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 11:32:16 2023 -0400
fix, grep --quiet
commit b983bbf28c6c7c967045722f6a19ac8d72132905
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:37:43 2023 +0000
bumped changelog version
commit a337c2a0f577a0f0e0897f24bcbfe54ef9c97b61
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:11:31 2023 +0000
bookworm
commit fdc7e865a2e559be6ca439127ebfea1917d116ba
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 11:09:45 2023 +0000
bumped changelog version
commit a959410bf7abcb411cf5982c10f0f0a88cb88409
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 10:49:06 2023 +0000
readme
commit 8b8fd0d4612e071662496ee5219cf40364a6cb01
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 15 17:05:35 2023 +0000
bumped changelog version
commit 16ab04197949b54e886ecf759aca27e085a7ca82
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 13:14:47 2023 +0000
copyright
commit d976a099cd79450eafb5eea7e7d52ab7c4a99415
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 18:05:00 2023 +0000
bumped changelog version
commit 93a1759e43670ddbd2857dd965e1c4d8a33f1756
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 16:22:33 2023 +0000
Standards-Version: 4.6.1.0
commit 3b26792f5469fc135f6a2accd3413095fabfde83
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 15:33:34 2023 +0000
bumped changelog version
commit 45f5d577eb1b26ed825e5ddd5f8a5d2feaa37335
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 14:52:01 2023 +0000
update copyright year
commit f8c1aaa579d943ecbed91d677696352c76f33def
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 18 04:53:01 2022 -0400
bumped changelog version
commit 2ddf86d5e0acd992b0b89635c4398deaa1549551
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 16 02:26:26 2022 -0400
output
commit 9619c18a1cb66e81682b5a114811588c2a5c133b
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 16 02:25:54 2022 -0400
output
commit 54466d1bbc6e2ff998ba16270b285e949c03543d
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 16 02:16:55 2022 -0400
output
commit bd0a93b59f8eb058a22532871a0e0c02d8655c85
Author: Patrick Schleizer <[email protected]>
Date: Wed May 25 06:07:20 2022 -0400
bumped changelog version
commit 7ad7a3e9493e666b9ad3b7477e46d549d9a62997
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 15:27:11 2022 -0400
readme
commit 13adafe61ed0300936f66ae85418e7b035e09340
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 14:46:39 2022 -0400
copyright
commit bf4b9bee026fc35e534533246ed847bc7160dd0e
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 10 12:40:17 2022 -0400
readme
commit c85f144eeba2561847492922fafeb44656d55f51
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 9 14:32:34 2021 -0500
readme
commit 20f016562e2d1a0d88d0412563700b3ee577ba62
Author: Patrick Schleizer <[email protected]>
Date: Fri Oct 15 18:32:50 2021 -0400
bumped changelog version
commit ea587d1f9b300f205512e8b440a9c5f589d252f3
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 14 11:21:52 2021 -0400
comment
commit f03cd0c0c18a384a3440e9dbe1adebdeafa6d496
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 14 11:20:09 2021 -0400
`dh_installsystemd --no-stop-on-upgrade`
Use --no-stop-on-upgrade to not stop (and therefore not restart) the
swap-file-creator systemd unit after package upgrade since there is no
reason to re-create the swap file during upgrade of this package.
Not using --no-start because swap file should be created after installation
of this package.
dh_installsystemd manpage:
--no-stop-on-upgrade
"Do not stop service on upgrade. This has the side-effect of not restarting the service as a part of the upgrade."
commit d1086a5b7c425a1d146349ce77a77b320c0c816d
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 12 19:50:03 2021 -0400
bumped changelog version
commit b2b9dae3c16cacc6f786a74ac0fe723cd7794735
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 12 19:47:06 2021 -0400
lower verbosity of output during boot
to avoid "swap file created" message to overwrite console login prompt
The alternative, configuring the login prompt to wait for
swap-file-creator to be done instead would lead to a slower boot process.
commit a762927cdb5dd002035dae4f2cf3d0b884f4dc0f
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 12 11:59:31 2021 -0400
bumped changelog version
commit 97330af1ae6650aa382ffd1a73ff4ad73df63728
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 11 16:31:41 2021 -0400
readme
commit 4e52112115a8d61961327a540ee402a622c8967d
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 5 17:06:07 2021 -0400
bumped changelog version
commit 2fa6f47c1028bec892d7f9d319ec6d3a90a2688f
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 05:48:26 2021 -0400
bullseye
commit 469970982d5c0a908e947d4ff99a8a82d6be1e94
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 1 16:24:43 2021 -0400
readme
commit 449779107b72da942fd7888bb8fd7d8ebae8a301
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 12:36:30 2021 -0400
bumped changelog version
commit 6a8be55c0b0ed552b7e3716e43be0106dc238a99
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 12:36:29 2021 -0400
readme
commit 27643a59b1d0c48370ff4161acc6941b015297ff
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 09:45:22 2021 -0400
copyright
commit 6f835cf343d85877c0c15e2ac7cd94275b60eab4
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 1 16:12:10 2021 -0500
bumped changelog version
commit 753104cd92e8cdadcab08cde9e94a2ce930e1621
Author: Patrick Schleizer <[email protected]>
Date: Mon Dec 28 08:05:53 2020 -0500
comment
commit fc3c1f7db77bb53c236a3d2cfa7fea9877501b14
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 14 11:56:48 2020 -0500
bumped changelog version
commit c65edf17f952ac4a296ae6a0aac5a10541579ff6
Author: Patrick Schleizer <[email protected]>
Date: Fri Nov 13 09:33:23 2020 -0500
use cryptsetup_pre_wrapper ld-system-preload-disable
to work around issue with hardened malloc slowing down cryptsetup
https://forums.whonix.org/t/hardened-malloc-hardened-memory-allocator/7474/106
commit 0042c35964afaa431803900484462e42968d6015
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 13 12:32:51 2020 -0400
bumped changelog version
commit 827cbbdb1b09bba7ba3561aec6cc948b03d41f9c
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 13 12:32:50 2020 -0400
readme
commit e622b3358e63fe4f09c255499541b320a16448d2
Author: Patrick Schleizer <[email protected]>
Date: Fri Oct 9 09:43:33 2020 -0400
swapoff and luksClose only if previously opened
https://forums.whonix.org/t/hardened-malloc-hardened-memory-allocator/7474/106
commit 935ba35283f4871bee1f125e2cf2ac32c602acf1
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 16 08:44:47 2020 -0400
bumped changelog version
commit 318f910b90096a3f337086492fda4b857e47d609
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 15 14:05:37 2020 -0400
readme
commit d270de1e2f8d3211bee8d88106e465d4fd484cdb
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 12:51:47 2020 +0000
bumped changelog version
commit 3f19e56e115ea2a5246d986439c19982c5a9d588
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 11:46:51 2020 +0000
output
commit 21dcfdd7a8b34513e2dc9d30c144174c6cc6f216
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 09:47:36 2020 +0000
bumped changelog version
commit 29232f5416bb7569e23a9aa685fc0477e6df6f3a
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 09:40:49 2020 +0000
suggest to increase RAM to avoid swapfile
commit 7534539ad2ce957360037f45030bbbcf3d698719
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 09:26:30 2020 +0000
update path
commit 43af1e19484071268270fdab7ba231a39ee418b6
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 09:25:48 2020 +0000
usr/share/swap-file-creator/start -> usr/share/swap-file-creator/swap-file-creator
because systemd uses the file name in console output
commit 6afd302b43dc56f2c995ece39bac4cf31f5f3a6c
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 09:13:10 2020 +0000
output
commit f08c46ad9edfff384c5d4c66667474655cd705f0
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 08:00:30 2020 -0400
bumped changelog version
commit 4d833d522cbd520c16496bb6dca8b8dd84a0dd68
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:22:49 2020 -0400
readme
commit 613c58b46188970ea1da1c9f6fb0103c05e68aa8
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:57:33 2020 -0400
remove genmkfile
commit 09f0e426f71f394c856b68c7d6020fc3bdff50fa
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:33:30 2020 -0400
add debian install file
commit 0fd347c825e85f501f0d292790fcbc792ea466d3
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 11:00:16 2020 -0400
bumped changelog version
commit 6448ffaaa4a7405f095c558b2de626c56fb635a4
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 08:49:59 2020 -0400
update copyright year
commit 183e99112456f61163f71c9ad5408023c2a10aa4
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 31 15:59:30 2020 -0400
bumped changelog version
commit 1c1eebc3e73291bf4ea74bb9fdd8950493973d7f
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 31 15:29:17 2020 -0400
Do nothing inside systemd-nspawn container since does not work and swap is managed by host
ConditionVirtualization=!systemd-nspawn
commit 5ef1398a4969536a0863832b82e02d85b228d2cc
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 1 06:00:58 2020 -0500
bumped changelog version
commit fa82fec2758c6ccd040476bd6802476f920edab4
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 1 03:09:32 2020 -0500
fix "/usr/share/swap-file-creator/start: line 72: warning: command substitution: ignored null byte in input"
during random password generation
commit 68737601dd582c719fc7aa389a4d4346bac6e881
Author: Patrick Schleizer <[email protected]>
Date: Tue Dec 31 07:20:07 2019 -0500
bumped changelog version
commit 76b4c9fa064d92186bff12208430f8ecccc21732
Author: Patrick Schleizer <[email protected]>
Date: Tue Dec 31 07:17:32 2019 -0500
fix Non-Qubes-Whonix Whonix-Gateway slow boot
initramfs-tools - Begin: Running /scripts/local-block ... done. - takes a long time during boot - RESUME=none
https://forums.whonix.org/t/swap-swap-file-whonix-gateway-freezing-during-apt-get-dist-upgrade-encrypted-swap-file-creator/8317
Thanks to Algernon for reporting this bug!
commit 3b14cc3bd075677da796a481e78cc13b2ae3f17f
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 6 09:33:00 2019 -0500
bumped changelog version
commit 44524f88a6293f5f4c964816c04540f9e88f83c6
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 6 09:30:05 2019 -0500
readme
commit c5b8861dae774260c9dad1b51a1143ef23db3b9c
Author: Patrick Schleizer <[email protected]>
Date: Tue Dec 3 06:31:35 2019 -0500
document ENOUGH_RAM
commit 59c7d32cec6484d82dc0559487f49f7c27a250b1
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 24 12:33:55 2019 +0000
bumped changelog version
commit f474e41a8b65fa4b01623573432cbb41187ef8d1
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 24 11:51:23 2019 +0000
fix enough RAM logic
commit e2aec55e254bf5bca1dbb6dcb3d670f122066206
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 24 07:34:27 2019 -0400
if there is ENOUGH_RAM (defaults to 1950 MB) ("2 GB"), do not create a swapfile
commit 7d405d4776957dbfbd525319339a69f8fb83b567
Author: Patrick Schleizer <[email protected]>
Date: Wed Oct 23 10:22:40 2019 +0000
bumped changelog version
commit 068918b260e60dbb982bd09e514b34a784a5c313
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 22 08:52:17 2019 -0400
Recommends: jitterentropy-rngd
commit 937762a5784acc2ae159b34b479bcf0c8d10a7cb
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 22 08:51:40 2019 -0400
After=jitterentropy.service
commit 3544d0683330ac5f524b38948efc8208dc256e8d
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 21 09:56:18 2019 +0000
bumped changelog version
commit 8191bd1486518541ce2b7cbdefa200b4a5411dc9
Author: Patrick Schleizer <[email protected]>
Date: Sun Oct 20 03:05:38 2019 -0400
syntax fix for buster
commit 7c7f394facc35a6c2fa150cd351a62251b581588
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 12:04:17 2019 +0000
bumped changelog version
commit a27a913cfcf9e5fb911ed87870fa2eebaef0ed3b
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:13:44 2019 +0000
readme
commit b8af133d1df659cd749681f3337789342c87b69b
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 31 07:45:27 2019 +0000
bumped changelog version
commit 11c88bab724712a4188b8b1abf033a3e41b9b263
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 31 03:11:55 2019 -0400
/var/run -> /run
commit 2bfc32436e3dbda6748100b74b3442281dcc2889
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 11:33:38 2019 +0000
bumped changelog version
commit b4a0b853fbe6577ae7f8b3eec7bf1f18524e3a8d
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 00:05:36 2019 -0400
fix debian/watch lintian warning debian-watch-contains-dh_make-template
commit b5acc61f3dcf7791961b909cd34129322428a0b9
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 20:50:30 2019 +0000
bumped changelog version
commit 65410299ba7bcd711047e8a79aef32d534890487
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 12:29:09 2019 -0400
readme
commit 9d296dc88ce6e669f959da64b60fda0a765fec6c
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 11:35:26 2019 +0000
bumped changelog version
commit f627459bef762738b774c5c36907a3704dce0841
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 10:56:56 2019 +0000
update
commit 8463f9b58a94c73738d209e3fdde2b0c553623d4
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 12:14:42 2019 +0000
bumped changelog version
commit 3fa872f38cf8096a5916c61336d7c6c8292fb344
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:55:52 2019 -0400
port to debian buster
commit 15a67cc37a95a56056518a143e286685388d1d0c
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:51:07 2019 -0400
port to debian buster
commit 3b5f058135a5ec5def5e639b5304202baf1cded6
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 3 18:05:56 2019 -0400
readme
commit 03b05b232c5c9d43a2a804681d35f1427b0f10dd
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 10:03:51 2019 +0000
bumped changelog version
commit 552468b2df88138013b6b27ca04f8882461abe98
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 09:03:18 2019 +0000
https://www.whonix.org/wiki/Dev/Licensing
commit b24635f9d28fc4c158c92100e41cb66d998c225e
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 12 11:37:26 2019 +0000
bumped changelog version
commit f17704ecbb22126e035262dbb2a26967ebfa9ecf
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 1 14:32:41 2019 +0000
add improved legal protections clauses
The license for software created by Whonix is the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version with additional terms applicable per GNU GPL version 3 section 7.
The additional terms are based on the Doom 3 license which is Debian refers to as `GPL-3+-with-id-software-additional-terms`, which is Debian DFSG [1] (The Debian Free Software Guidelines) approved and which is therefore suitable for Debian `main`. Whonix made applied minimal changes to it:
* Rewrite `The Doom 3 BFG Edition GPL Source Code` to the more common `this program` which is used throughout the GPL.
* Added a "trump clause" [2], in other words, any conflicts or disputes between the additional terms and the GPLv3 shall be resolved in favor of the GPLv3 by adding `Notwithstanding any other provision of this License` (as mentioned in GPL FAQ [3]) at the beginning of the additional terms.
[1] https://www.debian.org/social_contract#guidelines
[2] https://www.fsf.org/news/canonical-updated-licensing-terms
[3] https://www.gnu.org/licenses/gpl-faq.html#v3Notwithstanding
For more considerations, see also:
https://www.whonix.org/wiki/Dev/Licensing
commit 553c3d118bd65ee01cb24b090cfdd4edf8e8f65e
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 27 16:50:42 2018 +0000
bumped changelog version
commit 96ebc2d1f07f945b5746d7a293f5061a85d56ad0
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 21 05:18:38 2018 +0800
readme
commit b19536ec70b847805af0968547fbba06039b681d
Author: Patrick Schleizer <[email protected]>
Date: Thu Feb 1 15:20:15 2018 +0000
bumped changelog version
commit dd63d57b883f215179ebbf2fd084205e24ed3722
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:50:36 2018 +0000
readme
commit e86e0894d5bba2bc830577097cc4c48eaedf29bc
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:38:58 2018 +0000
update copyright
commit 51c3bb41bf40abc00256e5ca12017cb13fbee4c6
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:22:06 2018 +0000
update copyright
commit 63e6e91b29844c6921e3ae0d101b89c4df036af7
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:15:18 2018 +0000
update copyright
commit e8e49d564ec0c49e092c434735f87a4ceb3bbed0
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:09:43 2018 +0000
update copyright
commit aa3dfdb4b63cfde463f69fb2bff677573c35e2af
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 15 18:42:30 2017 +0000
bumped changelog version
commit 9cca1dfedc646c2159325afa1018c500fe5b6dd6
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 9 13:34:32 2017 +0100
minor
commit 5dca779156ed5721804cf3746435c58d101b6d0d
Merge: bd48e31 ef4e13d
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 9 13:33:40 2017 +0100
Merge remote-tracking branch 'origin/master'
commit ef4e13db2ada8a8e127c7ee5bba91a70bc962fab
Merge: bd48e31 4e789a6
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 9 12:31:47 2017 +0000
Merge pull request #2 from Algernon-01/master
Patches for live system based on initramfs-tools.
commit 4e789a6186cfdd2abb4859b453a20e22c9698c20
Author: Algernon <[email protected]>
Date: Fri Dec 8 23:37:25 2017 +0000
Reverted some stuff. Was only relevant for "toram".
commit f95517396ca1b4c37c5d51c7c0c7296317564931
Author: Algernon <[email protected]>
Date: Fri Dec 8 23:02:54 2017 +0000
Patches for Whonix live system based on intramfs-tools.
commit 38446865962e8c38cb3b08db1b391065b387ad42
Author: user <[email protected]>
Date: Mon Nov 27 15:30:43 2017 -0500
Patches for Whonix live
commit bd48e31818f35d831ef62bc50112f1d6c5b16bb2
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 17 14:09:28 2017 +0000
bumped changelog version
commit c01fbc1c3a54d2961d621e10a11fcb127f02589e
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 10 15:47:52 2017 +0000
remove faketime from Build-Depends:
since no longer used for reproducible builds
commit f8aba92f558e7fd21f42534bbd0fa8230ccddf44
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 10 15:35:25 2017 +0000
remove debian/gain-root-command workaround
commit f4633bbc69b3e8244f21bdb034a1088c6fb6a2fa
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 15:35:48 2017 +0000
bumped changelog version
commit 7579abaa0259fb2cdaadf766f40a846cd4cd95d6
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 08:35:41 2017 +0100
packaging, bumped Standards-Version from 3.9.6 to 3.9.8 for jessie support
commit ef597c28a72dbf4656bbcca8221398d9c12bac6a
Author: Patrick Schleizer <[email protected]>
Date: Thu Jan 12 02:57:06 2017 +0000
bumped changelog version
commit 2023100643ca8cd7da3e1937c84add0c1ed1fdb5
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 8 05:26:24 2017 +0000
fix bash null byte warning
commit e8d1a90e40bcc6b59dbaabe6b71ac601f66c62b0
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 8 05:26:04 2017 +0000
StandardOutput=journal+console
commit 8873f635822c17aaa7bac7d2edf2a6d17934ad31
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 8 05:13:50 2017 +0000
minor
commit 17e245f104207133fb0216ba873000d98abb9ae5
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 10 02:31:42 2016 +0000
bumped changelog version
commit f489d586f045a38010bf20f1415abe39bb63953c
Author: Patrick Schleizer <[email protected]>
Date: Mon Nov 21 17:42:58 2016 +0000
readme
commit 6747a46844bc4ebcb2ef39ad5341f5d67bfe100c
Author: Patrick Schleizer <[email protected]>
Date: Sat Aug 13 01:28:53 2016 +0200
fix, Wants=haveged.service -> After=haveged.service
commit 5199437d10ba20ff490f6cfd5a001f4fb3289516
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 7 22:54:47 2016 +0000
bumped changelog version
commit 581794f300a1f200bc7dee58f4296551d3406a59
Author: Patrick Schleizer <[email protected]>
Date: Tue Jan 5 19:37:38 2016 +0000
comment