forked from rustybird/corridor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.upstream
1746 lines (1159 loc) · 49.8 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 f55aae793e4e19f67efdce476882fa74e445fb31
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 15 14:05:30 2020 -0400
readme
commit 0f8435604778f7cef80bbd52a59d423496107426
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 12:32:41 2020 -0400
bumped changelog version
commit c59196f3d69ae37682da00267fc0f7c787fbaa93
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 12:12:29 2020 -0400
convert to upstream Makefile
commit 227916f47636f7511e8daecbba1a0fffa9673e79
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:41:02 2020 -0400
bumped changelog version
commit 08bca211d5779c33a73766060e28073601b3ba96
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:22:25 2020 -0400
readme
commit b65fe2676f4f77bc3b0430023898cf97d3ab1aa9
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 18:59:47 2020 -0400
packaging fixes for build without genmkfile
commit 131d478ae156da9bca18b7eeda31c99f6d3bf547
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 18:48:15 2020 -0400
Makefile_orig -> Makefile
commit 8450519f9b94cbb49df03d09e8adb07881b70daa
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 18:47:34 2020 -0400
Makefile_orig -> Makefile
commit 1c674f1dfcb29c1e18cb018f5ce623eda617ee39
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 18:46:45 2020 -0400
Makefile_orig -> Makefile
commit 9c214b77c7c4003093ba64069d6db9434270961b
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 18:46:07 2020 -0400
fix packaging for no longer using genmkfile
commit 3c9f9e70e6da0eed2783f37984f86a0912efaf65
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:57:29 2020 -0400
remove genmkfile
commit 5e21650dfd1b1c888b6ceb1a147ee72ea927c79c
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:30:07 2020 -0400
add debian install file
commit 8176a70d2801a04356ba3b7cf2e747356d843be1
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 15:56:47 2020 -0400
add man pages (generated using "genmkfile manpages")
commit 01fc0e0ad37a0c137674048b9384e8bc87f070f7
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 10:33:49 2020 -0400
bumped changelog version
commit 9f6482a38d56d456d732c924e99d4cf8347f2d6d
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 09:21:31 2020 -0400
copyright
commit 04023e04750dbf5ae2021b7928bbd4eb9e52bd9b
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 09:04:43 2020 -0400
update CONTRIBUTING.md
commit 43bed1d0f909be81b0ddf303f873be3b9111967a
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 08:49:54 2020 -0400
update copyright year
commit a1e43fc0fe247685f475402ea14cdfea6536cc5e
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 17 11:45:45 2020 -0500
bumped changelog version
commit 5e0338cc430daf6d2cac3f71523cd34a6f46d612
Merge: c49e215 35d1308
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 17 11:37:14 2020 -0500
Merge remote-tracking branch 'rustybird/master'
commit 35d130896f3de6c796f004c6bc413f46dd5bfde7
Author: Rusty Bird <[email protected]>
Date: Fri Jan 17 14:15:19 2020 +0000
Qubes: Skip corridor.d/95-qubes.conf on any other OS
Closes #44
Closes #45
commit 8344bdfb36a06c2fb3819c61991e76395b9e99a8
Author: Rusty Bird <[email protected]>
Date: Fri Jan 17 14:15:17 2020 +0000
Qubes: Merge *-qubes.conf into 95-qubes.conf
commit 19c077a3c2683d10a2af28fc4d4e2c298f469a49
Author: Rusty Bird <[email protected]>
Date: Fri Jan 17 14:15:16 2020 +0000
Qubes: Remove legacy qubes-mount-dirs.service orderings
Obsolete since
https://github.com/QubesOS/qubes-core-agent-linux/commit/e0e89f153f87e9c92d647344a9bab7ef578108cb
commit b0cf65bfc8dd70402e2dfe51497363c39930cc45
Author: Rusty Bird <[email protected]>
Date: Fri Jan 17 14:15:15 2020 +0000
Qubes: Remove legacy qubes-netwatcher.service drop-in
Obsolete since
https://github.com/QubesOS/qubes-core-agent-linux/commit/4a8b10ea8b2f39509d5e73e86ca3d6c5c6d192c9
commit c49e21576f867baf99496c4d23920c50ee026c85
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 17 03:45:34 2020 -0500
bumped changelog version
commit a6f7cbb5d39abaf9b1cdc5386f0c127cf4028e98
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 17 03:35:06 2020 -0500
fix
commit e43f07f44cc4d6e315e895732fa69896241d139e
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 17 03:31:51 2020 -0500
fix
commit 01b69361ec3fded447decf2d444b22830c59c4cf
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 17 03:21:43 2020 -0500
bumped changelog version
commit fd57a58264dc5bc9b92e74825a1b88d1649d6af3
Merge: f175fa0 3763199
Author: Patrick Schleizer <[email protected]>
Date: Thu Jan 16 06:28:49 2020 -0500
Merge remote-tracking branch 'rustybird/master'
commit 3763199eed5396fa4678f13d5f1e4a6f5547654c
Author: Rusty Bird <[email protected]>
Date: Wed Jan 15 21:34:39 2020 +0000
Fail corridor-data on unwritable $RELAYS_STATE(.tmp)
Work around the absence of a 'set -o pipefail' equivalent in POSIX sh.
Fixes #46
commit e400a0317adc6e00d1614782c2b8a066c631e7e5
Author: Rusty Bird <[email protected]>
Date: Wed Jan 15 21:34:38 2020 +0000
Fail corridor-data earlier on process_consensus() failure
Terminate the process group immediately if the consensus reader function
fails, instead of possibly a few hours later when the next consensus
arrives. Use SIGUSR1, which by default terminates without additional
actions and is not treated as a successful exit by systemd.
#46
commit ff2e95bcace06ec74f35f647f0de4675ff9097c1
Author: Rusty Bird <[email protected]>
Date: Wed Jan 15 21:34:36 2020 +0000
Qubes: Remove R3.2 legacy orderings
commit 4480e0ab3065774bc59471c8494d6e70d827271f
Author: Rusty Bird <[email protected]>
Date: Wed Jan 15 21:34:35 2020 +0000
Qubes: Update qvm-create syntax for R4.0 in README.md
commit f175fa0023801bb3101a9cb2b4a48cc3391dea24
Author: Patrick Schleizer <[email protected]>
Date: Thu Dec 12 08:05:29 2019 -0500
bumped changelog version
commit c6311dd1b43d61b8c142fc602abe5f0d20327581
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 11 15:32:28 2019 -0500
newline
commit 2201af5e6ebbeac14687053f229aed1457b229e0
Merge: ee99889 14e7295
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 11 15:29:50 2019 -0500
Merge remote-tracking branch 'rustybird/master'
commit ee998895a09095a8214a440bcaee8939ba8dff04
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 11 15:27:45 2019 -0500
add 10.138.0.0/16
upstream did that
required for Qubes DispVMs
commit 1080c5e6c002116c3c1ac2e063ed53b4bee394a6
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 11 15:25:24 2019 -0500
Debian compatibility
allow running this corridor Debian package outside of Qubes Debian templates
out of the box
by applying Qubes specific configuration inside Qubes only
commit a34005289909102b1b304a618468bfb70105c32c
Author: Patrick Schleizer <[email protected]>
Date: Thu Nov 28 03:15:36 2019 -0500
bumped changelog version
commit f2edc96aab4a2862e8b034a5d02be9fd6ce53719
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 26 08:19:26 2019 +0000
version_numbers_by_upstream=true
commit d7aee8d362bb6a4929d8faa61cc4c79985ac88fe
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:36:29 2019 +0000
bumped changelog version
commit 54930485c5860272f3a8c8eab4ab9b87710caf7c
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:13:36 2019 +0000
readme
commit cbb945e45b0748397d7c4833956c17060995f051
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 11:09:05 2019 +0000
bumped changelog version
commit d7ea6af1edc2670098bee1baf8db2382240af850
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 00:05:31 2019 -0400
fix debian/watch lintian warning debian-watch-contains-dh_make-template
commit f5af72f848d19156f3b948e59cfa12d575febf3d
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 20:38:00 2019 +0000
bumped changelog version
commit f82a0b367664b114fecea035c5601a7460c6562a
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 12:28:56 2019 -0400
readme
commit 864c9e784ed94d90f27cf288799a4ffeb0f41b81
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 10:37:16 2019 +0000
bumped changelog version
commit fff53037d4b1d1e73e422f6727d42d632bb03127
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 02:58:42 2019 -0400
update path to pre.bsh
commit 4567148c4772e04f2fd717c0007a807bfad1c5e7
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 10:04:32 2019 -0400
bumped changelog version
commit 54347203b58fcdb1f2d384589c126f7ffc95e617
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:55:50 2019 -0400
port to debian buster
commit d526f4ce7f8ce8e8a58f3c4258da4bb7af38ed54
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:50:38 2019 -0400
port to debian buster
commit 12a5e1f68ccdaba5494489b15577836fbc26271f
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 3 18:04:49 2019 -0400
readme
commit f22a19b894c716c478380b4ba68918ac7a8a22f5
Author: Rusty Bird <[email protected]>
Date: Thu Sep 6 11:20:36 2018 +0000
Qubes: Masquerade and log DisposableVMs, too
commit 76523beef0c1682abc0fef06b8bf97a585af0176
Author: Rusty Bird <[email protected]>
Date: Thu Sep 6 11:20:35 2018 +0000
Start out with default ipset hashsize
commit ad38b3eaa03e8908ccc421c02e0d596e163035f4
Author: Rusty Bird <[email protected]>
Date: Thu Sep 6 11:20:33 2018 +0000
Use more readable style for $BRIDGES, $SNAT, and $LOGGED
#42
commit 8e2465106c99c6e1a81d00fdb53230876da544b5
Author: Rusty Bird <[email protected]>
Date: Thu Sep 6 11:20:31 2018 +0000
Allow empty lines in $LOGGED
commit 178a311794d69dd11a10d7e0de1d112d9458fb7c
Author: Rusty Bird <[email protected]>
Date: Wed Sep 5 20:49:27 2018 +0000
Remove 20-bridges-auto.conf, add 20-bridges.conf
Fixes #42
commit 40ecb5f00412cf976c42d4cbfbd76dfcaa052d0c
Author: Rusty Bird <[email protected]>
Date: Wed Sep 5 20:49:25 2018 +0000
Update copyright year
commit 0538cd02462202d3107248d5fcc75c096a138690
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 27 16:36:08 2018 +0000
bumped changelog version
commit 32f0757bc5689d8635edeea7e428c27338705034
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 21 05:17:57 2018 +0800
readme
commit 5cd06dc4de94d8c03170558316090104857a2121
Author: Patrick Schleizer <[email protected]>
Date: Thu Feb 1 15:00:51 2018 +0000
bumped changelog version
commit 79c293e864bf7a25e1fd74ff8c27d2a2467240d5
Author: Patrick Schleizer <[email protected]>
Date: Thu Feb 1 14:59:53 2018 +0000
bumped changelog version
commit 74165852005b9c3d934db70b187487b132bc4ed5
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:50:16 2018 +0000
readme
commit 72d84ed9c009b2cbe66908b0959fae410b73a0ac
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:38:48 2018 +0000
update copyright
commit bf087befa5d11eb438dc0f3873fe832c48a07425
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:21:56 2018 +0000
update copyright
commit e375b6871a75ab2d1a1c7c0eaffeea2c8ac9c826
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:15:08 2018 +0000
update copyright
commit bbac355735f22219294d393cb66ff491055e6b35
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:09:33 2018 +0000
update copyright
commit 14e72956599650805cf278cb3ef38da885a4aa5f
Author: Rusty Bird <[email protected]>
Date: Wed Dec 6 21:31:20 2017 +0000
Update my email address
commit ad499b21d40705ce9f02205616f256eab74608a9
Author: Rusty Bird <[email protected]>
Date: Wed Dec 6 21:29:41 2017 +0000
Update copyright year
commit 40796355196bc656c5325dde74c86f7396b3e2f0
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 17 13:57:09 2017 +0000
bumped changelog version
commit 2eadd5a01a366472977881f0a9db114c0bd7bf27
Author: Patrick Schleizer <[email protected]>
Date: Tue Feb 14 17:30:30 2017 +0000
"$@"
commit b07cf21c376cda36e659428c7dc2f2d9bca1e55f
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 10 15:47:50 2017 +0000
remove faketime from Build-Depends:
since no longer used for reproducible builds
commit b77859a0c0cd760d68cb3ef0aed2d3eefbd816de
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 10 15:35:22 2017 +0000
remove debian/gain-root-command workaround
commit 0f8674b2bc38bf9e092d6b7e466bc07d92cacaec
Author: Rusty Bird <[email protected]>
Date: Sun Jan 22 13:09:12 2017 +0000
Add "Documentation=man:corridor(8)" to systemd units
Closes #38
commit bd27085add583deb384028ee53af96ecbd14bcdf
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 15:29:44 2017 +0000
bumped changelog version
commit 24ea68683e03324e854edaf2d1bca429b9d2295e
Merge: 1eb3799 ae140fe
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 12:38:14 2017 +0000
Merge branch 'systemd-documentation'
commit ae140feda6e74124c852b7a64f9d92d47bd943f8
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 12:36:13 2017 +0000
Add Documentation=https://github.com/rustybird/corridor to systemd unit files.
This fixes a lintian warning on Debian.
commit 1eb3799e75ac3172dbe212e9c654b53c2baacb50
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 12:33:08 2017 +0000
override lintian copyright false positive
commit ae397137cd141e715241dce929313370ebdc5082
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 08:35:30 2017 +0100
packaging, bumped Standards-Version from 3.9.6 to 3.9.8 for jessie support
commit 6196ad1062339d3b94b14ba4f24cbd4975ae50dd
Author: Patrick Schleizer <[email protected]>
Date: Thu Jan 12 02:55:06 2017 +0000
bumped changelog version
commit db10c0c76a2046070730104fe4860c72b6b35009
Author: Patrick Schleizer <[email protected]>
Date: Thu Jan 12 02:51:05 2017 +0000
create signed commit
commit a900658b2fad4dde20873cdbbc1fdbb7da28f74f
Merge: d043cfc 8b6ea4b
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 11 21:10:55 2017 +0000
Merge branch 'rustybird-master'
Conflicts:
Makefile
commit d043cfc553e2452300d3954515f10f7bcaeb26eb
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 11 21:09:42 2017 +0000
fix, ?= actually not required
commit 8b6ea4b0652f017db82a0908ef40e8f029a774d9
Merge: bda0cc4 91088fd
Author: Rusty Bird <[email protected]>
Date: Mon Jan 9 15:25:28 2017 +0000
Merge remote-tracking branch 'origin/pr/37'
commit 91088fd94fac08ea8fa10fc3a29184576efc62bb
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 9 15:22:33 2017 +0100
don't enforce /usr/local/etc
commit 0ba7cabb9ce402079915ab6ea6c11b88029649fd
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 8 21:31:12 2017 +0000
make fixes, no longer require dh_local
commit b1b34a0dad98b2aa70e24278735fb11230ee2c7f
Merge: 431c3e6 bda0cc4
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 8 20:38:23 2017 +0000
Merge remote-tracking branch 'rustybird/master'
Conflicts:
Makefile
README.md
commit bda0cc417751a7b910d99f55892466aad740831a
Author: Rusty Bird <[email protected]>
Date: Sun Jan 8 10:26:48 2017 +0000
Add "make all" target
Fixes #35
commit a5bddb0b9c238fb228c117286bdb2d19cea6ee14
Author: Rusty Bird <[email protected]>
Date: Sun Jan 8 10:26:48 2017 +0000
Revert "Automatically run clean target before install-systemd target"
This reverts commit e0ce0f8242166a4f8a01462c2d094fb55b6b93ae.
commit acf8c891b4436e54e4e2b859b8da0b4a9a85a1f5
Merge: 7f30336 1aa4d9f
Author: Rusty Bird <[email protected]>
Date: Wed Dec 28 21:00:35 2016 +0000
Merge remote-tracking branch 'origin/pr/34'
commit 1aa4d9febed65ac808862f57f2f0237aabc899e6
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 28 21:06:59 2016 +0100
enable RemainAfterExit=yes in corridor-init-logged
commit 7f30336aeae0e8793cf44fdb23daa54a490fe357
Author: Rusty Bird <[email protected]>
Date: Sun Dec 18 14:47:17 2016 +0000
SAFETY: Document correct systemd snippet path
If you're using systemd with something other than systemd-networkd to
bring up your network (e.g. a service named some.service), the systemd
configuration snippet should go into /etc/systemd/system/some.service.d/
and *not* into /etc/systemd/some.service.d/ as the README.md previously
instructed.
In the event that corridor-init-forwarding.service failed for some
reason, such as a broken iptables binary, the misplaced snippet would
be ignored and the network would be brought up unfiltered. (corridor
would then also not enable IPv4 forwarding, but maybe your system has
been set up to enable it independently?)
commit 431c3e6b5c08719f7e97c542ce23f51954386ea2
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 10 02:07:19 2016 +0000
bumped changelog version
commit 4bd6da4794d04fecf55affd4821be40c40cf09ad
Author: Patrick Schleizer <[email protected]>
Date: Mon Nov 21 17:40:30 2016 +0000
readme
commit 041d995372c1270aa003f4c394ab1455ecff593a
Merge: 952342c bd1e9ea
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 5 16:19:48 2016 +0200
Merge remote-tracking branch 'rustybird/master'
Conflicts:
Makefile
commit bd1e9ea8598d72c837933b6cb2868f1a75b1f5db
Author: Rusty Bird <[email protected]>
Date: Fri Sep 2 12:47:37 2016 +0000
Use -f (noglob) option in corridor-data
Otherwise, line splitting via "set -- $LINE" is unsafe.
commit 7cbdb417d80dcb00aadee1928a3cf88f0b684bb1
Author: Rusty Bird <[email protected]>
Date: Wed Aug 17 12:37:28 2016 +0000
Fix broken Markdown
#24
commit d41ef93a7e837bd989bd83284b5c9fd59840214f
Author: Rusty Bird <[email protected]>
Date: Wed Aug 17 12:25:35 2016 +0000
Mention Debian package and Whonix wiki page
Closes #24
commit 4d63e2876c868a1b84cf07bc206f8a168b8d711e
Author: Rusty Bird <[email protected]>
Date: Sun Aug 14 16:24:41 2016 +0000
FallbackDir support for tor >= 0.2.8.1, e.g. TB >= 6.0.4
commit 918b788125f8c90342e754f8d37c6cc63ab7296b
Author: Rusty Bird <[email protected]>
Date: Sun Aug 14 16:24:39 2016 +0000
Be flexible about order of IP address and OR port
commit 130c885dad60e1fda0ac332e9f219ed76994837c
Author: Rusty Bird <[email protected]>
Date: Sun Aug 14 16:24:37 2016 +0000
Reformat
commit 77901c0039bcf431e2cb8f897a061a5032e8ab42
Author: Rusty Bird <[email protected]>
Date: Wed Aug 3 12:46:23 2016 +0000
Rephrase warning about other firewalls
#26
commit fe3414d4198c9978ebca082e0a560172c132edae
Author: Rusty Bird <[email protected]>
Date: Wed Aug 3 12:06:22 2016 +0000
Warn about other firewalls
Fixes #26
commit cc0c4dfab9945a6ce7023cb9ee9e4efffd9273b0
Author: Rusty Bird <[email protected]>
Date: Wed Aug 3 12:06:21 2016 +0000
-logged.service: require and order after -data.service
Fixes #32
commit f8b2247073b6c51106d4e23250850f94ab494301
Author: Rusty Bird <[email protected]>
Date: Wed Aug 3 12:06:19 2016 +0000
Makefile: make the default target depend on man/corridor.8
commit 952342cdc52efca40a7a2e3417767c7949507bcf
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 31 19:15:22 2016 +0000
bumped changelog version
commit 24cc4eff4722a7f7b96941b9349e85a3018f521a
Merge: 48ffa45 51e09be
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 31 14:08:37 2016 +0000
Merge remote-tracking branch 'rustybird/master'
Conflicts:
Makefile
commit 51e09be7dd1fc3cd8d841342d2b8be5b8e6c600b
Author: Rusty Bird <[email protected]>
Date: Sun Jul 31 12:32:24 2016 +0000
Use DefaultDependencies=no in -forwarding.service
Avoid ordering cycles if a unit (e.g. Debian's networking.service)
orders itself after network-pre.target but before basic.target.
Closes #29
commit 47895437c6ea7200ec190b88e1e1c79c6186eadc
Author: Rusty Bird <[email protected]>
Date: Sun Jul 31 12:32:23 2016 +0000
Break qubes-iptables.service's cycle
#29
commit e0ce0f8242166a4f8a01462c2d094fb55b6b93ae
Author: Rusty Bird <[email protected]>
Date: Sun Jul 31 12:32:21 2016 +0000
Automatically run clean target before install-systemd target
https://github.com/rustybird/corridor/issues/18#issuecomment-233384918
commit 8b3c9f0713b853e1c8d0da5eeb9e2f0027153522
Author: Rusty Bird <[email protected]>
Date: Sun Jul 31 12:32:20 2016 +0000
README.md: Don't use tabs in instructions
commit 950bd054657af58be539178ae10e7a1688cbcc9c
Author: Rusty Bird <[email protected]>
Date: Sun Jul 31 12:32:18 2016 +0000
README.md: Fix typo
commit b9bab19a59f056270200bd7febf91d4d345dab73
Author: Rusty Bird <[email protected]>
Date: Sun Jul 31 12:32:17 2016 +0000
Rename LICENSE to LICENSE-ISC
This way, the license used is obvious just from looking at the
directory.
commit 48ffa4552d25ae3b341154856b634c41319da7f2
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 30 17:37:51 2016 +0000
bumped changelog version
commit b767a6ae1d82769b67097142814cbda3625b79a2
Merge: 3efc8cc cfaabc5
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 30 17:35:46 2016 +0000
Merge remote-tracking branch 'rustybird/master'
Conflicts:
Makefile
commit cfaabc5d27fb7dfa494d828dbe2998730898674e
Author: Rusty Bird <[email protected]>
Date: Sat Jul 30 10:53:10 2016 +0000
Requires=, not Require=
#29
commit f8708d415d98a6831ace8819c0a926ef277153c1
Author: Rusty Bird <[email protected]>
Date: Sat Jul 30 10:53:09 2016 +0000
Use autoconf-like @SBIN@
#29
commit ce0b65cf4863184487b360361b1f40767e603e0b
Author: Rusty Bird <[email protected]>
Date: Sun Jul 24 11:47:06 2016 +0000
qubes-service.conf: Use triggering conditions
Start if the Qubes services directory doesn't exist at all, e.g. because
"make install-qubes" was run on another platform.
Closes #27
commit 3efc8cc212bbc5021d9bd291c986d651246ad9aa
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 23 14:11:58 2016 +0000
bumped changelog version
commit 88f373f06fe6271fe1230901ad16147c50f3022d
Merge: b87f0a8 d37640c
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 23 14:07:19 2016 +0000
Merge remote-tracking branch 'rustybird/master'
Conflicts:
Makefile
commit d37640ccf83630add83fdb316986f78e7689b308
Author: Rusty Bird <[email protected]>
Date: Sat Jul 23 12:39:19 2016 +0000
Also load configuration from /usr/local/etc/corridor.d
Fixes #22
commit 640d6b5ce08d0887c921702cb796cdc72a43814c
Author: Rusty Bird <[email protected]>
Date: Sat Jul 23 12:39:18 2016 +0000
Align a line
commit cd05d9557cabc2c5978051f84f7b695c343916b8
Author: Rusty Bird <[email protected]>
Date: Sat Jul 23 12:39:16 2016 +0000
Rename CORRIDOR_FORWARD chain to CORRIDOR_FILTER
commit b87f0a84a94a2bc583b5547536252d68d7a2100b
Merge: 310a60f 1ce7055
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 21 20:04:03 2016 +0200
Merge remote-tracking branch 'rustybird/master'
commit 310a60f1b49128aa9394b90cf6d54785188649bf
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 21 18:08:51 2016 +0200
disable man page creation since that is now done by upstream
Thanks to @rustybird for the report!
https://github.com/rustybird/corridor/issues/10#issuecomment-234256335
commit 746773ba5a635c319b1eb83ba9cd7af2f8a73477
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 21 17:36:17 2016 +0200
delete README.debian
no longer required since corridor is providing releases now
Thanks for @rustybird for the report!
https://github.com/rustybird/corridor/issues/21#issuecomment-234266585
commit 1ce7055d7394739d1c6162c1cad11ffa207d1d3c
Author: Rusty Bird <[email protected]>
Date: Thu Jul 21 13:11:41 2016 +0000
Order corridor-data after qubes-mount-dirs
The state file is saved on /rw, but mounting /rw is not part of the
DefaultDependencies.
Fixes #21
commit e9907c96ffc0264139c48625b6688a160f1d934c
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 18 21:26:28 2016 +0000
move to new corridor version scheme
https://github.com/rustybird/corridor/issues/10
commit dc136643d56de8d2184164eb440f4a5617ac6a7e
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 18 21:02:04 2016 +0000
no need to set variables for 'make clean'
commit 0e6e6b4d399070030d727295d7e59b017a6c8dc0
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 18 17:14:24 2016 +0000
properly run upstream make file 'make clean'
https://github.com/rustybird/corridor/issues/18
https://github.com/rustybird/corridor/issues/10
commit 01b7cbbdb87032b3f2ecdc78ac8c59cdd68cf967
Merge: 313fa4a 2b17a45
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 18 16:19:41 2016 +0000
use original makefile
https://github.com/rustybird/corridor/issues/18
https://github.com/rustybird/corridor/issues/10
Merge branch 'orig_makefile'
commit 2b17a45a6d262fb5274200132c071f8b4587fca9
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 18 16:04:58 2016 +0000
.
commit 42ef8aff5f2c346729467f3a8efaeed2c8ebf95d
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 16 15:16:05 2016 +0000
.
commit 313fa4aee495e016cef0172f1deba78027b95cd3
Merge: 6bcf1f8 463834f
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 16 15:27:08 2016 +0200
Merge remote-tracking branch 'rustybird/master'
commit 463834f8778c5a165346ac73442e8fede0366b6b
Author: Rusty Bird <[email protected]>
Date: Fri Jul 15 11:58:00 2016 +0000
Factor out loose IPv4:port matching
commit 10ba25123087070e9fc91681228989a652c07286
Author: Rusty Bird <[email protected]>
Date: Fri Jul 15 11:57:58 2016 +0000
Capitalize "Versioning", too
commit faf9309ca0891a8e9a069d4a93ce0e9162c80dd4
Author: Rusty Bird <[email protected]>
Date: Thu Jul 14 16:56:55 2016 +0000
Capitalize sentence
commit 4390c2a3f8ff34983cb18074f1865a33f5255af0
Author: Rusty Bird <[email protected]>
Date: Thu Jul 14 16:48:58 2016 +0000
Switch to semantic versioning
commit 6bcf1f8daa5365d256a9d4e26b5091265946fc5b
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 14 16:25:36 2016 +0200
remove Debian specific configuration file
since https://github.com/rustybird/corridor/issues/11 was fixed upstream in corridor
commit 2b3c46772f9bc25db0516bca90a6fb57922df3e1
Merge: 6e8a575 307ceed
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 14 16:23:18 2016 +0200
Merge remote-tracking branch 'rustybird/master'
Conflicts:
Makefile
commit 307ceeda94a7970245a1f27a57ab51a7ed5f5d45
Author: Rusty Bird <[email protected]>
Date: Wed Jul 13 16:34:57 2016 +0000
Rephrase Qubes warning
commit 2e392365e5d96e4131240c14a7013eb3ebe23f00
Author: Rusty Bird <[email protected]>