forked from Kicksecure/swap-file-creator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchangelog.upstream
More file actions
2195 lines (1467 loc) · 62.4 KB
/
Copy pathchangelog.upstream
File metadata and controls
2195 lines (1467 loc) · 62.4 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 790e70d92674c9595f58f8a2d7284c34a36d4050
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 20 16:57:16 2026 -0400
genmkfile uch
commit ad8863fa232497d10d2fb08491f6343cb790650d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 09:54:34 2026 +0000
bumped changelog version
commit df47d36b86f215c03d861979593d2d59c28d8d20
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 05:30:53 2026 -0400
readme
commit 528a1c5066e8f25fad0985eefad1751e6c93ec57
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 05:27:04 2026 -0400
signed commit
commit af0668fd7999837b1dfd9cc386d067586684c27d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 12:19:27 2026 +0000
bumped changelog version
commit 3f6c96c70e00c2d0fb10655f2c1d2c7ce5529e4e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 07:12:55 2026 -0500
add exit_handler
commit fad8d566f926bb214b43cb0d3b0c92dbf3fde98c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 07:06:07 2026 -0500
reduce verbosity (no output during boot) when ENOUGH_RAM is detected
commit bd77f14249c851e99536a81d0c84ef93b95bbda4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 06:54:14 2026 -0500
refactoring
commit 693359c5c581d5a3d5cfbe914d9bade338498b45
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 06:53:19 2026 -0500
refactoring
commit 734dcc4f2c1560c5ad89b09355300f4fa0255051
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 06:15:16 2026 -0500
output
commit f6b6c59a14a08cc069177b61bf1bd869ce92e8b4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 06:00:55 2026 -0500
output
commit e3c3babfb52568a24cd4989366c5e4bd6ed9ff04
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 05:59:16 2026 -0500
output
commit 09dc46726da7857accce1d3f007abd06efdade8a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jan 3 05:28:12 2026 -0500
output
commit e93255b51b2081e38949de324bbb3d04d7f6322e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 11:53:02 2025 +0000
bumped changelog version
commit 2ef0e350c03864f3995ec22ede6ddb0ce5508b2d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 06:52:39 2025 -0500
fix swap file creation on Btrfs
commit 92c8d1b50c832782fe72cea88e093a7b6debef2c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 06:31:22 2025 -0500
comment
commit 9028084fae2ca1405cc605c22207193d53d0595c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 11:25:28 2025 +0000
bumped changelog version
commit c66fcd873fc89124ae094b7221f8ac1e8508eea0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 06:24:19 2025 -0500
also parse `.conf` files in `/etc/default/swap-file-creator.d` and `/usr/local/etc/default/swap-file-creator.d folders`
commit ac32210fc9369f0127603e19956a33aeab0e1a1a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 06:20:33 2025 -0500
readme
commit 94319096cb0c289cc46160a79c54788ed732beb4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Dec 4 06:17:15 2025 -0500
decription
commit 1e46220064021f14a948549d4f3f3841076c623a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 12:45:22 2025 +0000
bumped changelog version
commit 581addc9935f98685696ca79ab3f4a615f9161fa
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 07:45:11 2025 -0500
fix
commit 44e03fcbc17d4a669b5b9f3791cbbd11a87a1200
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 12:40:20 2025 +0000
bumped changelog version
commit 5c59ff5458d97a91f39f13547badefbe13ee30bb
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 07:40:09 2025 -0500
fix
commit 810044bcc8b479ab1d5ac73a0798314162f938b1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 10:23:05 2025 +0000
bumped changelog version
commit f861f984ddc962e892e04fc36f43f507f22d8d31
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 05:06:26 2025 -0500
readme
commit 1367957a5d918583d93adc208f22f5c64d9d2573
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 05:04:06 2025 -0500
description
commit fc3bc7015bf5c5e513f4c9d0228a67736559ff61
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 05:03:32 2025 -0500
description
commit e9c665d04813d0d93ecbd2ede01868b7f66f946c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 06:58:50 2025 +0000
bumped changelog version
commit f0987272e55bca09628b9d4bee178f5f8b0d46dc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:55:22 2025 -0500
add root_check
commit 1251c6bdaa9d89e0e4885b07a5fed6b88ee8928f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:54:21 2025 -0500
output
commit 3bab812f997ba696ab34874906af6adca82ea971
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:43:53 2025 -0500
output
commit 055b48855d0db932043be06e036b755af03a6768
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:42:24 2025 -0500
allow running swap-file-creator inside Xen / Qubes if setting `DO_PRE_CHECK=no`
commit 0bc7e572a9a2d3e5cb940550e7fc79c7d2fcf502
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:39:59 2025 -0500
code simplification
commit 78df1e5f5efb8473d34d91dc7671e2950d8d68bc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:38:17 2025 -0500
refactoring
commit 8f2ea96090c6c61097b446b69d18e16d7d9b0c06
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:36:23 2025 -0500
end-of-options
commit cbf592fb9eff66dac83a958df65dd3781005f044
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:35:48 2025 -0500
refactoring
commit 05565452e3a17957dc22ad2a7fe620a49b405d6e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:34:46 2025 -0500
refactoring
commit b1178c6f68bfdd1a8e29aae28361777916779a80
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:34:07 2025 -0500
refactoring
commit e5d3f240de4672a5de3dc5e6772262634d969eb0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:32:31 2025 -0500
local
commit ed085868aacfab495c05241c1036c408709d0741
Merge: 9f11963 774da73
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 13 01:29:15 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
commit 774da73c9a816e39a3df526d23ae3b4eeff961e2
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Nov 12 21:05:11 2025 -0600
fix
commit e8f67629b15b7bf156f2e1553eb8adf0f92b9e24
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Nov 12 21:04:03 2025 -0600
Use config file for allowing the user to disable LUKS check, fix some issues
commit c181983ecd0e526b2ee94d5136e5e30b28bf28ab
Merge: 7145ef4 9f11963
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Nov 12 19:37:04 2025 -0600
Merge branch 'master' into arraybolt3/trixie
commit 9f1196336e1cdcb452d5bd17f5e2802248f9f849
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 10:12:56 2025 +0000
bumped changelog version
commit 48fe346f937590808f6cc3421a9f1db97dc5ee60
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 05:11:50 2025 -0500
comment
commit 9888cc47c28ca394d7c689471a99fcec0931823e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 05:09:27 2025 -0500
fix
commit 6408db83a36d84fb8796d371c8a771466a5127c5
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 05:09:03 2025 -0500
fix
commit 636c2c3026cf9aff200c3d3b2f34683ecd79ff37
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 05:07:21 2025 -0500
fix
commit a2bc1432220fbbf89133f13f878935fd2202544a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:43:17 2025 -0500
output
commit 93ae7cd88fa53412552a9519ad386665d8b4583a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:42:33 2025 -0500
fix
commit a4199ce8e7421cd3fe5771f1857d69d54388a061
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:31:22 2025 -0500
move to helper-scripts
commit 0c07b47812cd62e4568de64c8b9af7869bf72e4b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:24:02 2025 -0500
fix
commit 7b6702962114fc216d8e462bff268fceda27bcaf
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:23:27 2025 -0500
fix
commit 8cbdb01438c77b99247b0f1f87401f9995afa929
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:20:31 2025 -0500
refactoring
commit 5e25e29df4c92734304d1acd697a15eb31cc87c1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:18:28 2025 -0500
fix
commit 6c12ae007a86c5a2239b816ddf23a773e06e3220
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:14:09 2025 -0500
refactoring
commit bdbe023341232853b46d0c3fd13d1cfc81d7fd2b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:10:48 2025 -0500
end-of-options
commit 4fdba8c6f6f631496d24727149c16f796feb46f7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:06:38 2025 -0500
use long option name
commit ea41bb4ccd70ced60e93342ac089a0810afcd71f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:05:25 2025 -0500
comment
commit 6f3327fe7ce6e52280dcb02a100bade22db7c819
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:03:25 2025 -0500
refactoring
commit 136e50d3a05c377d94a55eb18b8db42f1f6929b3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 02:00:16 2025 -0500
end-of-options
commit 2aef33e93f751dc1a25d306157a123fd1028c0f2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:59:32 2025 -0500
sanity test
commit b5265120d16a560d94a23828fd287f2b90fb6ae3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:58:27 2025 -0500
output
commit 091ecdf74b3767f107c6429e870c85509c001fb9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:57:26 2025 -0500
skip faster in Qubes
commit 005375936f8cb6fe461d4d8a0568978503ea4fa1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:32:52 2025 -0500
end-of-options
commit 0195a060030e2b18de2654c08e1d630bf41eaf3c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:31:17 2025 -0500
refactoring
commit c63468df78cb87a8ae1cd2f0befb61186b09d867
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:26:40 2025 -0500
cleanup
commit 901c3fe2eb8d9112f83228dd179b87129f6593b1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:26:13 2025 -0500
fix
commit da4ef296d1e9e496d5b36517c98951f96042da91
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:25:43 2025 -0500
fix
commit d995cb60927e1c8ecd948242383e02e5deb7df07
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:24:20 2025 -0500
output
commit a57ef59c9ca5abed86752d62061e24de249b0d74
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:23:22 2025 -0500
fix
commit a312a5592699bc0c501703a953def88424fd6900
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:21:14 2025 -0500
output
commit 2f2a9ca5fdf26d856a01a7297518158477e02820
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:21:00 2025 -0500
comment
commit f62ba7fa29283a1924c0658164b92bb7ca474ad8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:18:55 2025 -0500
comment
commit 02408410c0b7b321575f9597072d48a345124b17
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:17:41 2025 -0500
fix
commit f394c40a8913a8b2a0c1428c90ae98ed3280599f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 01:15:26 2025 -0500
fix
commit 87c080fb8b7956d7147515522313683bf3dbc95e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 06:13:51 2025 +0000
bumped changelog version
commit 7145ef4d9e7b9db4561b420efff3a7f8dbbfb1c5
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Nov 11 23:49:52 2025 -0600
Allow forcing creation of a swapfile on unencrypted systems, don't remove swapfile if unnecessary, wording adjustments
commit 77ec9613d125baeb236ca0eea2680e0bc7cfd68b
Merge: ae2b0e0 8962ac4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Nov 12 00:28:46 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
commit 8962ac43ef9c7e1c87a532f83b7a6626521a8719
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Nov 11 21:28:19 2025 -0600
Stop creating an encrypted swapfile, only create swapfiles on LUKS volumes, delete swapfile on shutdown, improve do_stop reliability
commit ae2b0e01027ce3ffb62a7c99333645539f91ad75
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Sep 19 16:19:56 2025 +0000
bumped changelog version
commit e98a80fa86db6b11a799fb047b6c2e9e407df564
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Sep 18 10:08:17 2025 -0400
fix
commit 0cceca8eaebbc6cfbd40b50267cec13b8976ca85
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 2 15:27:18 2025 +0000
bumped changelog version
commit 009cdc876f7813f1908d5f224be678e62eedd230
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 27 19:32:39 2025 +0000
bumped changelog version
commit 876e83627a15d5933d7ac8dfada9bf4f5efa6cb4
Merge: 34d53c3 35ea048
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 27 12:34:53 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
commit 35ea0480461576d7184a847535f24ddde33b6396
Merge: 73e171e 34d53c3
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Aug 26 19:20:50 2025 -0500
Merge branch 'master' into arraybolt3/trixie
commit 34d53c395e8a092361d50fc64e849d2e3fcfb94a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 26 09:17:43 2025 +0000
bumped changelog version
commit 73e171eab081f5a9b394e8907cb3449849dba38d
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Fri Aug 22 19:46:06 2025 -0500
Remove initramfs-tools support
commit c804c9c800f88bcbd8d50f71136d150f43a8f996
Merge: 6048ab4 2a402e9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 20 09:49:18 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
commit 6048ab4b5df2720f42bbaf3888aef73f4c145eda
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 20 06:57:30 2025 -0400
bumped Standards-Version
commit 90131b734adaeef46e19c250a3ca7462a79c431f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 20 06:25:36 2025 -0400
readme
commit 2a402e91d710faca479fc5d42c3c8b3d0fa6878e
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Aug 5 22:58:07 2025 -0500
Port to Trixie.
commit 50ca4c6774d073d5cc5199ba81558ea8f2b0c982
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun May 11 15:56:56 2025 +0000
bumped changelog version
commit b11d13bc85194c87acafe7c85e033b36106ca088
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun May 11 11:55:43 2025 -0400
fix: skip in grub-live mode
commit 4ec0cd46c34af33df0174ed4521b93cc8fd0e35f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 12:39:16 2025 +0000
bumped changelog version
commit b4d844bd7c8008453213634e914fe6c1be732608
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 05:43:25 2025 -0400
improve live mode detection code
commit 87bde26044186c97bdacf6e8903930519c9e994b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 29 14:11:52 2025 +0000
bumped changelog version
commit 55ef9cc0e88d9b857b5dda800b1dbf74c91d86b0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 29 09:11:42 2025 -0500
outpu
commit 7b4f1dd492296d6c8b8b0aec7822f6234c9a9b2f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 29 14:03:04 2025 +0000
bumped changelog version
commit ed9332537f884a35a87f0e8bf7af0b6b8612b359
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 29 06:53:01 2025 -0500
export
commit 1d509ead24340600a7e3896302b107aa513bb63f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 29 06:07:10 2025 -0500
fix printf error message on non-English locales
by setting `LC_ALL=C` environment variable
Thanks to @Decidable3 for the bug report!
https://forums.whonix.org/t/swap-file-creator-error/21128
commit 0ee0e924e05364470216a1b896af4067c47c58fc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jan 28 13:49:43 2025 -0500
refactoring
commit 912c54d833359dea5cce73ed629afe42794b8005
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jan 28 13:33:59 2025 -0500
quotes
commit 2a2035ddeb95d47afff675aa2039eb5b4d8f09d2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jan 28 13:33:10 2025 -0500
quotes
commit b3fd247df37d8c0067cc3754ce6f335753b5dad4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jan 28 13:28:25 2025 -0500
refactoring
commit 2ccfcbb84612bddb47389f9baa1caf93ad0d23c7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 16:30:15 2025 +0000
bumped changelog version
commit e2834c94318d0bfc592da98c5521a73eb107f5b0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 11:12:34 2025 -0500
copyright
commit 0760cbe7d7a4272a7c69ace9d46144df2b4ab27d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 18:43:18 2024 +0000
bumped changelog version
commit 0fc7f4b3abd8cc952de1b275167d20c15edf35cc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 13:26:21 2024 -0500
copyright
commit 1f57a4a192613e926a1a2876158f8ac53154e9e7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 22:50:40 2024 +0000
bumped changelog version
commit 9196d2f83d9f8f33616d93c9c3d3a100f843d500
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 17:50:21 2024 -0500
check if folder of swapfile exists
commit 2d36c7dc0836ec269ca0693b0a59f48b74315e6c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 17:48:50 2024 -0500
fix
commit 0ef214ac443666efad3dda09271801725f06d076
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 17:44:23 2024 -0500
add sanity tests to check if swap file is readable/writeable
commit 341f8ef8f09a3c669cabb23ba62f0cddc2f80aaa
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 17:41:05 2024 -0500
fix live mode detection
commit d3cfb1f179cc290bf2e3cdd8b0704cc6ae7bb99f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 15:21:13 2024 +0000
bumped changelog version
commit 7bbb291e1380e573d995c4c8bcd4404e758b415a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 10:20:06 2024 -0500
increase verbosity
commit 2ebf1d247979617bb007ee32850f4ac636afcb62
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 10:18:41 2024 -0500
fix: detach mapper only if swap was on
commit 770b9b26b671445d2e1a65e70d590464c6856fe7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 14:58:13 2024 +0000
bumped changelog version
commit b1f7358a8f6774da4aefeb001f2ebd2b00286065
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 09:55:03 2024 -0500
minor
commit 77050042f99cfe42aa17885855a68d2e75ecefec
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 08:03:29 2024 +0000
bumped changelog version
commit 5d455a7201ba5c150fa4f83791082e2a496db6ef
Merge: 4919c3a 8395628
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 4 03:02:28 2024 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/heuristics'
commit 8395628b6ca4323619b710c154f94e19972208c6
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Dec 3 23:40:02 2024 -0600
Pass disk size to calculate-swap-size, avoid calling calculate-swap-size twice, add some local var declarations
commit 4919c3aa32b2b50dff66f3b3c1d0b5944ddb0bf4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Nov 15 11:17:52 2024 +0000
bumped changelog version
commit da739875e36444ed44a5dfb256419058e40851d9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Nov 15 06:17:30 2024 -0500
sanity test
commit 528694be791b126da112cbf71276a1dacd9273f6
Author: Patrick Schleizer <adrelanos@whonix.org>
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 <adrelanos@whonix.org>
Date: Thu Aug 29 10:07:05 2024 +0000
bumped changelog version
commit 03754a2b197e40ce9b4d6c803e85771d0086f60d
Author: Patrick Schleizer <adrelanos@whonix.org>
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 <adrelanos@whonix.org>
Date: Thu Apr 25 13:21:48 2024 +0000
bumped changelog version
commit 7eee84f4ce0a4104b9992540d0b346c04615e945
Author: Patrick Schleizer <adrelanos@whonix.org>
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 <adrelanos@whonix.org>
Date: Sat Mar 9 15:19:22 2024 +0000
bumped changelog version
commit cacbe150505ec9d9c674dbd432dc9bf07ab868a7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 9 10:19:03 2024 -0500
skip on ISO
commit eb11492021c3f3b62fe1e4052f2e96755a9b8a6f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Feb 2 13:50:14 2024 +0000
bumped changelog version
commit 2b9f8f0c61ae1c4f6bac1668f0099e91efdb53f4
Author: Patrick Schleizer <adrelanos@whonix.org>
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 <adrelanos@whonix.org>
Date: Fri Feb 2 12:37:44 2024 +0000
bumped changelog version
commit 2846e0418ec39739d703a7ec42e9fe2fbea245b9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Feb 2 07:32:42 2024 -0500
usrmerge debhelper systemd Debian package maintainer scripts fix
commit 843965ba2ba6be6ae91b548970ab42a5e08da7b1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 22 12:46:07 2024 +0000
bumped changelog version
commit 19af6836de664dcde3f0956246be6a8d089986d7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 22 07:13:32 2024 -0500
usrmerge
commit b0950c78d72870d1bfd4053c3f1c846853f94de6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 18 14:11:56 2024 +0000
bumped changelog version
commit d2d61f1324d88aead415d2c352dcf10693feca08
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 18 08:55:46 2024 -0500
readme
commit f9c7df42fa62b58f67452a19a6aaa0ba795c5e20
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 27 13:05:28 2023 +0000
bumped changelog version
commit bcdda87eda573d0f9cec81aaca733b20731ee53b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Dec 27 08:04:16 2023 -0500
Depends: bc
commit 2113ae99c38321207beb8bb70fc782f9664c5998
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 18:41:42 2023 +0000
bumped changelog version
commit dd604bb51ffcae70f6e880a46566973e8ec79535
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 13:40:48 2023 -0500
fix: handle cases where swapon returns decimal point numbers
commit c83cdae33c07e9cb3991d689affefb4bf97f4e2f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 13:35:13 2023 -0500
fix
commit 35d67a55e498408e6f5fc8aee51a04fa8bf5ba78
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 13:33:48 2023 -0500
fix: cases where swapon outputs M instead of G
commit 7d3a83a05fab2219daff8ad17c729192d0b9b254
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 13:19:04 2023 -0500
shellcheck
commit a3194c47dc0a49dda785a1b6e4e79b100ef1dc90
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 13:18:10 2023 -0500
improved error handling
commit ecb1c8752b591e5afff13559f96de77aedaccb28
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Dec 22 16:32:19 2023 +0000
bumped changelog version
commit 674f3a16d7cac7fa5d180ae854e83e9e8a653f30
Author: Patrick Schleizer <adrelanos@whonix.org>
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 <adrelanos@whonix.org>
Date: Sat Dec 9 16:31:09 2023 +0000
bumped changelog version
commit 4f94502308d1b89c9ece28cb254a597df1538331
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Dec 9 11:30:32 2023 -0500
increase encrypted swap file size to 1 GB
commit de96c98b026c38ed76bb86c8341a7f62dec22a93
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Nov 11 20:23:57 2023 +0000
bumped changelog version
commit 4983b18096bf6f533f896d578cbc489cac760ffa
Author: Patrick Schleizer <adrelanos@whonix.org>
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 <adrelanos@whonix.org>
Date: Mon Jul 17 11:49:26 2023 -0400
bumped changelog version
commit 708f892008716acdc8836287f1a6b2cab683f384
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 11:19:19 2023 -0400
Kicksecure
commit 11cafae6cf4406a95cd5ee470b4c878c1886fbd6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 11:10:54 2023 -0400
Kicksecure
commit d3a31df0977a2f2c40b09c716fd31ad29ff790b8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Jul 9 11:32:43 2023 -0400
bumped changelog version
commit 5bf142a0c28b8d01e23d3d49ff0ef559625a72d7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Jul 9 11:32:16 2023 -0400
fix, grep --quiet
commit b983bbf28c6c7c967045722f6a19ac8d72132905
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:37:43 2023 +0000
bumped changelog version