forked from oetiker/znapzend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
2722 lines (1822 loc) · 75.2 KB
/
CHANGES
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 5533b20687e33eee25e4c63885b02334a24bf0d1
Author: Tobias Oetiker <[email protected]>
Date: Fri May 6 10:57:49 2016 +0200
* add autocreation support to main code
* fix some mor $_ instances
commit 93130b6116b6c20539ae8def9ae89cad6b709a0f
Author: Tobias Oetiker <[email protected]>
Date: Mon May 2 15:34:49 2016 +0200
do not try to be smart about compression and encryption let the user set this on his own in .ssh/config
commit 56fe85ed02123ac99978e2008283f9d4680c949d
Author: Tobias Oetiker <[email protected]>
Date: Fri May 6 08:46:40 2016 +0200
* fix variable re-assignements
* better test for nonexisting destination snapshots.
commit 83b16d2651a4e5b22b05a4e6ddae491f27a5d836
Author: Tobias Oetiker <[email protected]>
Date: Thu Apr 28 15:36:50 2016 +0200
add option back to cli
commit efd5b697f9be925b71bfb2e22843351102fe0a65
Author: Tobias Oetiker <[email protected]>
Date: Thu Apr 28 15:35:36 2016 +0200
must keep the option in
commit 48514f86d29144e4563babc212a114718ceef50d
Author: Tobias Oetiker <[email protected]>
Date: Thu Apr 28 15:27:27 2016 +0200
attempt a fix for autocreation
commit f81f973f73681700920c2e0402a75aaf28be7105
Author: Tobias Oetiker <[email protected]>
Date: Fri Apr 22 13:52:53 2016 +0200
go gitter
commit 8600ee9818b09a715b67b0a91ef1d47b72808d80
Author: Tobias Oetiker <[email protected]>
Date: Mon Apr 11 08:28:50 2016 +0200
rerelease
commit 12d917d1d4c5d2dfec876eab13ecf0ee9ad25129
Author: Tobias Oetiker <[email protected]>
Date: Mon Apr 11 08:28:32 2016 +0200
revert error message fix
commit 6efd70f911f724724044119f17bf7040b49f0554
Author: Tobias Oetiker <[email protected]>
Date: Mon Apr 11 08:26:06 2016 +0200
prep for 0.15.5
commit a054a4b72da1a6369df4d61bf2c43913c3eaf184
Author: Tobias Oetiker <[email protected]>
Date: Mon Apr 11 08:25:31 2016 +0200
fix regression from autoCreate feature in mbuffer mode
commit 85a7dc95d1ecce55d2976d27be00c34d72455ee1
Author: Tobias Oetiker <[email protected]>
Date: Tue Apr 5 19:35:23 2016 +0200
0.15.4
commit 648a016ebbad8a04a13da9fe3dcb522e46c5019f
Author: Tobias Oetiker <[email protected]>
Date: Tue Apr 5 18:56:52 2016 +0200
0.15.4
commit 44ed50a8dd67cb4dc5489a5474bc21e4fbcf7121
Author: Tobias Oetiker <[email protected]>
Date: Tue Apr 5 18:56:18 2016 +0200
be more careful in testing the environment
commit 06ddae478277fba10feed6fc2eeabba686e6688a
Author: RageLtMan <rageltman [at] sempervictus>
Date: Mon Apr 4 00:23:24 2016 -0400
sendRecvSnapshots - don't cut dstDataSet in-place
The current code in sendRecvSnapshots splits the dstDataSet var
early on in the execution chain to provide logging output and the
remote variable contents. This removes the remote information from
dstDataSet which is then passed to listSnapshots without the
remote data and the attempt to list the last snapshot occurs on the
local host, not over SSH on the remote target.
Address the issue by creating a dstDataSetPath variable to hold the
stripped target path while retaining the original dstDataSet with
the remote information attached for lastAndCommonSnapshots to use
in listSnapshots.
-----
Testing:
4 hosts with waterfall replication topologies in debug mode
commit 2e905cbbd753956f373a3bd318794f8e25e11818
Author: sylvain-ilm <[email protected]>
Date: Mon Apr 4 12:22:35 2016 +0200
Separate fields by tabs when using -H
commit 7555b59dbf7d87dc6a909495e50b6a7d2661cb96
Author: sylvain-ilm <[email protected]>
Date: Fri Apr 1 18:24:07 2016 +0200
added --only-enabled option in znapzendztatz to filter out disabled datasets
commit 8ec92aec894d508c00d0cd0cb58a67b2e16c6939
Author: tisc0 <[email protected]>
Date: Tue Mar 22 15:58:18 2016 +0100
Update README.md
Simple typo. Thanks for that project guyz !
commit 175b4e93c1cd4b2ed329f0e0f93ac2146e45fd4b
Author: Wouter van Os <[email protected]>
Date: Thu Mar 17 21:52:40 2016 +0100
Updated exception to exclude remote when local
commit c46e0fe0df8a75040b2fccd7b147748b2f00b10f
Author: Wouter van Os <[email protected]>
Date: Sat Mar 12 17:50:33 2016 +0100
Added documentation about the new --autoCreation and createDataSet
commit 1345311ea4e37e743f3c3beec9380f1677dd9e44
Author: Wouter van Os <[email protected]>
Date: Sat Mar 12 15:36:20 2016 +0100
Made an exception message more clear with extra data and info
commit edef36a5486e93e08971420b018846a201be1828
Author: Wouter van Os <[email protected]>
Date: Sat Mar 12 15:28:05 2016 +0100
Improved logs for the createDataSet sub and removed null-check
commit 4cd300427ab49322339dbdd1fc4b0ddf1e70ab2b
Author: Wouter van Os <[email protected]>
Date: Sat Mar 12 12:48:41 2016 +0100
Create datasets on dst when it doesn't exist
It checks f the `$dstDataSet` exists, if not,
it attempts to create it. When creation is succes,
the script continues. When it fails, the script
stops and continues to the next dataset.
commit 3494e80e37a1ce70f02e27a34d69e9bdc9f6af69
Author: Tobias Oetiker <[email protected]>
Date: Fri Mar 4 14:22:48 2016 +0100
actually disable the code in testmode!
commit e50d481d9900ba2a16ce1338ae5ed7b18cad1278
Author: Tobias Oetiker <[email protected]>
Date: Fri Mar 4 13:33:18 2016 +0100
we should add the recurring trick even when not daemonized ...
commit 5bc7cc5bfdfe80de984493f42233e95dde1c5868
Author: Tobias Oetiker <[email protected]>
Date: Mon Feb 29 14:09:55 2016 +0100
our test scripts do not like the recurring event to enable signal handling in connection with EV
commit b32074bf044eb915b42c87bb00bfc2166a48a18a
Author: Martin Rueegg <[email protected]>
Date: Fri Feb 26 14:51:30 2016 +0100
wake the io loop periodically to make sure signals get processed even when running with EV
commit da82e77790423ee7bf347d26230edaad1e073149
Author: Tobias Oetiker <[email protected]>
Date: Thu Feb 25 15:05:18 2016 +0100
updated for release
commit 56ee5792ff201286802aee58ea3480605d40f519
Author: Tobias Oetiker <[email protected]>
Date: Thu Feb 25 15:00:38 2016 +0100
release 0.15.3
commit 547476e6bdb97ecf4fba3cf9f9c3b26e0397006e
Author: martin-rueegg <[email protected]>
Date: Tue Feb 23 10:08:46 2016 +0100
additional [info] and [debug] messages
commit d6f65c4e1ae3e2ff244671690a64da90e1752bbf
Author: Sebastian Wiedenroth <[email protected]>
Date: Wed Feb 24 22:30:24 2016 +0100
fix bashism introduced in thirdparty makefile (comparing with ==)
commit fd824808b3ee86dcd213811ddec97c1b583e3457
Author: Tobias Oetiker <[email protected]>
Date: Thu Feb 25 14:58:48 2016 +0100
simplifie module setup
commit 48e22271edc1184effec296e0a3d2027b506db19
Author: Tobias Oetiker <[email protected]>
Date: Mon Feb 15 17:02:29 2016 +0100
fix wording
commit d07418b2887d35c6bcb0e4eb1d8f1f013c6e44b1
Author: Tobias Oetiker <[email protected]>
Date: Mon Feb 15 17:00:51 2016 +0100
fix readme again
commit d16fd713038665dc966b6b4d3fbea27290ca78dd
Author: Tobias Oetiker <[email protected]>
Date: Mon Feb 15 16:53:04 2016 +0100
0.15.2
commit 8f6280d4d7609da6cfd3c77d95c7173cda9fd06f
Author: Tobias Oetiker <[email protected]>
Date: Mon Feb 15 16:52:00 2016 +0100
add init files to distribution and update README.md
commit 454c67d424b64ec6d3391a8bc57ae70eb54c7d58
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 23:09:16 2016 +0100
respinn to align tag with tar
commit c18ba0e90e88bd73affaff36aa977db4b63eab13
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 22:25:50 2016 +0100
fix build script
commit a9975bfcc66c494a08df5f9643e287aa2fe4bd5d
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 18:31:32 2016 +0100
0.15.0
commit 75dc7f6b4b3e6953cb76a732afc35de6fbba8a54
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 18:12:14 2016 +0100
rebuild doc every time
commit 3a4b87c58da206e6043881c266bcecb97c9c1a25
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 18:12:05 2016 +0100
rebuild doc every time
commit 1216daf8d7cadb626f56cf554e8fca35626611b8
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 18:11:25 2016 +0100
rebuild documentation
commit 73af9cdb8c43be3529d7fb9581ba3f854f5c5f16
Author: Tobias Oetiker <[email protected]>
Date: Sun Feb 14 18:08:56 2016 +0100
switch to new automake setup. include mini cpan locally
this allows to build znapzend without internet access.
commit 89632f3191ad5e0f8c858832b3ba4e033ee5c3b6
Author: Anton Eliasson <[email protected]>
Date: Sun Feb 7 15:53:34 2016 +0100
get-thirdparty-modules: do check certificates
commit aaaf12cfb25ca18b6d0c28419cc263d2faab5ca8
Author: Anton Eliasson <[email protected]>
Date: Sun Feb 7 16:08:30 2016 +0100
Drop Alias line from systemd service unit
Specifying the same name as the service file's actual filename is
redundant, and also causes problems such as
Failed to execute operation: Invalid argument
when enabling the service.
commit 5d7941357ef804cb268614965d3d1c65712f9fc6
Author: Anton Eliasson <[email protected]>
Date: Sun Feb 7 16:05:55 2016 +0100
Adjust ExecStart line to closer match real scenarios
/usr/bin belongs to system packages, so znapzend is unlikely to be
installed there at the moment.
syslog::daemon is the default logging destination, so specifying it only
adds clutter to the command line.
commit 07cd9b0dc50c70acc2a8a018633722a9914af183
Author: Anton Eliasson <[email protected]>
Date: Sun Feb 7 16:13:07 2016 +0100
Drop full path from znapzend command line
Assuming suitable symbolic links were created as described in section
"Zetup Inztructionz", the full path is not necessary.
commit 5165c82202f9b24292ba82256aa2e8ff4e1700ce
Author: Anton Eliasson <[email protected]>
Date: Sun Feb 7 16:05:33 2016 +0100
Advise creating symbolic links after installation
commit ece7c6f533833f7f255ba9582ad893afe3463347
Author: Anton Eliasson <[email protected]>
Date: Sun Feb 7 15:55:17 2016 +0100
Advise putting systemd service file into /etc
/lib/systemd/system is for installed *packages*. /etc/systemd/system is
for local configuration.
commit ca80b0f9b6eca3537cdec5d70f6db04190713b4c
Author: Sebastian Wiedenroth <[email protected]>
Date: Sat Jan 16 12:27:28 2016 +0100
Comparing with == is a bashism
commit 94258f94a91ab1d57a460535768c4d81dfe04d10
Author: morph027 <[email protected]>
Date: Mon Nov 30 18:55:56 2015 +0100
added README for init scripts
commit 7b06c28e9a18cbae25abb5ce5f8e4134567b35cf
Author: morph027 <[email protected]>
Date: Mon Nov 30 15:44:41 2015 +0100
added systemd unit file
commit 58c87714e63448588dcc62a28e4e6de5487ce84f
Author: morph027 <[email protected]>
Date: Mon Nov 23 19:00:40 2015 +0100
moving checkinstall README into subfolder
commit cd5330c97d9b024fc8b5af32f2435d757a254c52
Author: morph027 <[email protected]>
Date: Fri Nov 20 16:33:11 2015 +0100
added subdir
commit 8cc6641d8f9e59291933ae6b475b2e69b4d15a5e
Author: morph027 <[email protected]>
Date: Fri Nov 20 15:10:23 2015 +0100
added script to create packages
commit e59b5d660153b3629c1bbfe096ab2d4586ae2cfb
Author: Sebastian Wiedenroth <[email protected]>
Date: Thu Nov 26 00:48:04 2015 +0100
Extra slash confuses OSX, makes it forget to install lib/ZnapZend.pm
commit 4b8b81a5c80f293da4583d19f82cf3b384e5d82a
Author: Tobias Oetiker <[email protected]>
Date: Fri Nov 27 08:12:15 2015 +0100
don't try to install perl stuff if there is none fix for #178
commit 734d42f757b5fbde4b7b8a337268a323a5329571
Author: James Marsh <[email protected]>
Date: Tue Nov 24 15:15:47 2015 +0000
Fix sudo/pfexec use when initialising ZnapZend::Config.
commit 35665b2d792413773e3b10db7c11308cc8a36273
Author: James Marsh <[email protected]>
Date: Tue Nov 24 13:12:21 2015 +0000
Fix sudo/pfexec use when querying config.
refreshBackupPlans calls $self->zConfig->getBackupSetEnabled($dataSet)
but zConfig was not initialised with sudo/pfexec features and hence
there were errors calling the zfs command.
commit 18003d7427773b0962590786dac39a9f98da7835
Author: Tobias Oetiker <[email protected]>
Date: Thu Nov 19 14:40:30 2015 +0100
multi line error messages are bad news
commit e1ef500dc9366408c243101776e395740ce018fd
Author: Dominik Hassler <[email protected]>
Date: Tue Oct 13 07:41:15 2015 +0200
- fix uninitialized string if executable is on localhost
commit e69cbd38564bd45ee0b8834a34a9790102a3ae18
Author: Tobias Oetiker <[email protected]>
Date: Mon Oct 12 09:01:13 2015 +0200
improve first sentence
commit bc2eaa02889e3680054d7206cda79bc33615d754
Author: Tobias Oetiker <[email protected]>
Date: Mon Oct 12 08:53:47 2015 +0200
update changes
commit 55f64968158ebd80c5541a29486174acaa2ce814
Author: Tobias Oetiker <[email protected]>
Date: Mon Oct 12 08:50:53 2015 +0200
update docs
commit 55b62e48b9899dde7d119a27cc00ec6a7bb82ecc
Author: Tobias Oetiker <[email protected]>
Date: Mon Oct 12 08:47:33 2015 +0200
prep 0.14.1
commit 3b6e05081fe9fbf184de23201599fe257bac2940
Author: JMoVS <[email protected]>
Date: Sun Aug 23 11:33:54 2015 +0200
Include note on lower-case requirement for DST fields
- Added a little sentence to clarify that DST names can only contain lower-case letters
commit 84a472a61fa5868670c9a62e2b229a32b7992b2a
Author: Dominik Hassler <[email protected]>
Date: Mon May 18 10:37:53 2015 +0200
- don't override log message event handler as this will ignore minimal log level
commit ff94c5a39debd6b53d8ce82778670c7c49dae035
Author: Dominik Hassler <[email protected]>
Date: Sat May 16 16:58:29 2015 +0200
- replace \w in regexp
commit 9bbdeb915d1c8586230139728fd73974e18433a6
Author: Dominik Hassler <[email protected]>
Date: Sat May 16 10:30:43 2015 +0200
- allow '.' and '-' for zfs user properties
commit 230fd13e7f4e776fa7082ac68ba78920e58c4d5d
Author: Tobias Oetiker <[email protected]>
Date: Thu May 14 14:27:34 2015 +0200
return is not necessary
commit b7979b1ec42f4abb2ee4ca0f75162429b821555e
Author: Tobias Oetiker <[email protected]>
Date: Thu May 14 14:26:22 2015 +0200
added a note on HUP
commit 79672d45ac3debd20c5864afe1d260940d46abb6
Author: Dominik Hassler <[email protected]>
Date: Mon Mar 16 13:25:37 2015 +0100
- use option '-t filesystem,volume' to get datasets
commit c6bc39579eb202bb4f220a50fae4f260ef426fec
Author: Dominik Hassler <[email protected]>
Date: Mon Mar 16 11:48:41 2015 +0100
- fix 'zfs list' if listsnapshots zpool property is on
commit 502209ca62b739fe6b8e238dd23a7c2f8bfad6a1
Author: Dominik Hassler <[email protected]>
Date: Fri Jan 23 16:32:58 2015 +0100
- recheck every run
commit 3db59230000ab91d3f010ec13c66957fdbbc539a
Author: Dominik Hassler <[email protected]>
Date: Fri Jan 23 15:55:48 2015 +0100
- zfs fix for testing
commit 09309d360228f6e89dcf6ba93994aa73aeac89c2
Author: Dominik Hassler <[email protected]>
Date: Fri Jan 23 14:56:49 2015 +0100
- typo
commit ba18b2fb838ec03127304821bb3efd849feb2346
Author: Dominik Hassler <[email protected]>
Date: Fri Jan 23 14:50:19 2015 +0100
- recheck if destination has been offline
commit 1830bceb63a70f716d88bcccb63eed869ee0605c
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 09:17:17 2015 +0100
install the right coveralls module
commit 3e28074e958957edb16529e2af9e8067f9c51d2e
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 09:11:35 2015 +0100
find cover script
commit 453581c640c890c63b2a0883c86d31e554f0d6fc
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 09:11:27 2015 +0100
latest perl version
commit f25a95dcafee7b41a86ef429139d0966d25b3418
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 08:58:49 2015 +0100
yet another try
commit 69189ddb4f85f9d6a746bccd0ba85228b11c815b
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 08:38:44 2015 +0100
another try at getting travis happy again
commit 9806a0a4aac32a061049cd27e029c0837f42f8c1
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 08:31:16 2015 +0100
more bits to make travis work with the new settings
commit 3f46a0eb8ca22c3585501c9907d432487cba59af
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 08:19:55 2015 +0100
update to new build system
commit 75857808ab5fc1030ac294c4e3634d4b5ef323c9
Author: Tobias Oetiker <[email protected]>
Date: Wed Jan 21 00:45:41 2015 +0100
make configure make approach more standards conform
* no thirdparty dir in install tree
* build missing perl modules automatically
* no FindBin in installed version of the program
commit 4cdbcdeea15a1ea35ad9ab218b28393d0ee60882
Author: Tobias Oetiker <[email protected]>
Date: Sun Jan 18 14:27:41 2015 +0100
sync configure
commit 890a7500693ac895d7ade73e37ed2418f16a1bfa
Author: Tobias Oetiker <[email protected]>
Date: Sun Jan 18 14:26:05 2015 +0100
we need spaces around the equal signs
commit 6f0a1c1ebebe40b4f981f708b36d041a141c00a6
Author: Dominik Hassler <[email protected]>
Date: Sat Jan 17 15:52:58 2015 +0100
- env variables for pre and post znap scripts use added
commit 5b0b32b3f40f0c64219cacb901b7b6678801e24f
Author: Dominik Hassler <[email protected]>
Date: Fri Jan 16 14:32:42 2015 +0100
- clear properties before set
commit 2e58ef0731dd98d97ce09b97c7d7fb56a66fac82
Author: Dominik Hassler <[email protected]>
Date: Sat Jan 3 18:31:03 2015 +0100
- only process features if not empty
commit d3b20b7327036bf5e826c28943eeca9e10855677
Author: Dominik Hassler <[email protected]>
Date: Thu Dec 18 13:45:51 2014 +0100
- warn instead of print
commit a3c588bc2fd0825656707816ab9d0a2a57ec23b9
Author: Dominik Hassler <[email protected]>
Date: Wed Dec 17 12:09:01 2014 +0100
- warn instead of die if mbuffer is not present
commit 3d2c470cb38a60fe21001db0b9f0b5ef246d2c98
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 23:48:06 2014 +0100
ready for 0.14.0
commit 3cdad5ed0bab8c99da972a18fbc122bb8520e6db
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 23:47:24 2014 +0100
get ready for 0.14.0 release
commit e01f921eebae630a3d97c23f4274e6ca209b0c5d
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 21:24:26 2014 +0100
integrate PERL_MODULES content into Makefiles
commit c7ca45dd1a8f920690aa4986dbb86c4f57a15522
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 20:35:43 2014 +0100
fixing travis ... argh
commit 8f5ba765dc3def681cfd003a41bdc1a79a94b819
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 20:03:34 2014 +0100
to properly build this we need it all
commit cb53c4aa0e97d8470ff384fc090e935bbac4d76d
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 17:49:52 2014 +0100
update-travis
commit b4391e87214e2a67c85c3bbf72ba0d85599bc870
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 17:36:19 2014 +0100
fix install rule for thirdparty
commit 49479950c847c7d3adacfa913dc40f0b19bc9c01
Author: Tobias Oetiker <[email protected]>
Date: Tue Dec 16 17:29:07 2014 +0100
modified install procedure to be fully integrated into makefile
commit eef0b607e90e73dfeba3f8a4d655ba2f6c33d5ca
Author: Dominik Hassler <[email protected]>
Date: Tue Dec 16 10:26:07 2014 +0100
- zetup edit bugfix
commit 0253a1c1c07af454b2595ec42ea16f0479adcbbd
Author: Dominik Hassler <[email protected]>
Date: Tue Dec 16 10:12:58 2014 +0100
- pfexec/sudo support for zetup and ztatz
commit 76be23417a80c9c0391be3d40f41aef6c722058b
Author: Dominik Hassler <[email protected]>
Date: Tue Dec 16 09:21:57 2014 +0100
- pfexec/sudo for test and zpool commands
commit ec92ab9e2d18e26b392f9c31ae55bbe2747f15f7
Author: Dominik Hassler <[email protected]>
Date: Mon Dec 15 23:29:06 2014 +0100
- pfexec and sudo features added
commit f52b69ac361945146e5c52489feb941705a4e2dd
Author: Dominik Hassler <[email protected]>
Date: Mon Dec 15 16:02:33 2014 +0100
- mbuffer timeout: 60 sec
commit b98581a9e631b8a31f97ceb168f3a25ade3ac309
Author: Dominik Hassler <[email protected]>
Date: Wed Nov 19 08:53:09 2014 +0100
- no HUP handler in child processes
commit 6ccc0a35cf6a039c24512ea062f52348e2c14dc6
Author: Dominik Hassler <[email protected]>
Date: Sat Nov 8 09:33:52 2014 +0100
- manifest refresh method
commit 8201b70a5cde188b268d5677a60f0a70af4e9862
Author: Dominik Hassler <[email protected]>
Date: Fri Nov 7 15:52:06 2014 +0100
- refresh method added
commit cd42eed9e28762a9256398ee858b100ab94f0878
Author: Tobias Oetiker <[email protected]>
Date: Thu Nov 6 15:55:52 2014 +0100
fix datarootdir replacement
commit 233ab2594c89e947be5e42620cfbd79caa7d63e5
Author: Tobias Oetiker <[email protected]>
Date: Thu Nov 6 15:55:13 2014 +0100
fix datarootdir replacement
commit 7fde52292484637cba5ea55e6e0b5e2eb9cc36e6
Author: Tobias Oetiker <[email protected]>
Date: Thu Nov 6 14:47:33 2014 +0100
make sure smf fixing works
commit e93efbf63e89d9f5dddd6ced1d317acf1414494f
Author: Lauri Tirkkonen <[email protected]>
Date: Mon Oct 6 17:20:10 2014 +0300
fix mandir and binary path in svc manifest
commit 52d46bc23ac5e28e8fb8639db85ec88d8965f470
Author: Lauri Tirkkonen <[email protected]>
Date: Mon Oct 6 16:06:10 2014 +0300
let smf manage pids instead of using a pidfile
commit cc5c3af5efa1eae1b87dd17705d05a47f4121923
Author: Tobias Oetiker <[email protected]>
Date: Thu Sep 18 15:21:25 2014 +0200
and one at the end
commit ae6494dbd933a3792615094517641e7f5a2333b3
Author: Tobias Oetiker <[email protected]>
Date: Thu Sep 18 15:20:34 2014 +0200
the string needs another space at the beginning for a match
commit b6de7b3d142fba2ccac5d5ec7764d3385ccf8324
Author: Tobias Oetiker <[email protected]>
Date: Thu Sep 18 15:11:57 2014 +0200
- if no snapshots extist yet, still output something sensible still
commit b402e7dddf1298c63c90f4bb47ceecf8963b5d96
Author: Tobias Oetiker <[email protected]>
Date: Wed Oct 1 08:11:40 2014 +0200
added note on :
commit 6a4ab4b6585b629454c4d84c4d722b787d9f0e0c
Author: Tobias Oetiker <[email protected]>
Date: Thu Sep 18 08:21:00 2014 +0200
prepare for 0.13.0
commit bf31398480f30612ca212b249b7d19ce478b2351
Author: Dominik Hassler <[email protected]>
Date: Wed Sep 17 14:33:39 2014 +0200
- typo
commit bc1aa52ef4e1f73c76fa7365fc777eafd82d0e99
Author: Dominik Hassler <[email protected]>
Date: Wed Sep 17 14:10:57 2014 +0200
- line wrap
commit ac8ff269eac6bf68ab16a842f816ee465505c82d
Author: Dominik Hassler <[email protected]>
Date: Wed Sep 17 11:50:18 2014 +0200
- connectTimeout can be set as option
commit 25e581265ccd4ea189146758fd01ae08d19f0ef1
Author: Dominik Hassler <[email protected]>
Date: Tue Sep 2 10:50:17 2014 +0200
- increase ssh timeout
commit f7338cb8d342719c4c5a370a18c810d5967a4cde
Author: Dominik Hassler <[email protected]>
Date: Mon Sep 1 08:31:30 2014 +0200
- term signal handler
commit a97b7ba59563fb75e1f69e6e65a869de433473f1
Author: Dominik Hassler <[email protected]>
Date: Wed Aug 27 11:10:39 2014 +0200
- make network mode more reliable
commit d21a07790a97ac72f2e79b7c95d2c6a81c642f20
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 26 14:32:19 2014 +0200
- SIGHUP implemented: reloads znapzend config
- signal handler improved
commit 056aacba49ab3b5891c3b35ba15b081fd992ec4f
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 21 17:51:55 2014 +0200
prepare for 0.12.3
commit f60f6c3b9c0b9ddfaddc8c6330c549e5b22a66a5
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 21 17:50:35 2014 +0200
must import 'blessed' when using it.
commit 90207541ca793d01305bde1efa02752c08838d8d
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 23:31:24 2014 +0200
tag CHANGES
commit 86aabf6a0a960bb27911b143d48a0dd23e6d81ba
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 23:28:22 2014 +0200
0.12.2
commit a7cee83bfca6ef11fe24b25db5839f1eca5fd57a
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 19 22:31:54 2014 +0200
- exception handling improved
commit d767612287672dfb446e81b276f7618ee18b1e9e
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 14:38:56 2014 +0200
actually include Sys::Syslog in setup script
commit df00808cdb69f5b9342be12dae2c634747547631
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 14:28:39 2014 +0200
improve changelog look
commit f593204e7b48035df2ba5b53cd91acd58f70e956
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 14:20:34 2014 +0200
get ready for 0.12.0
commit c13ab4d856a24b3c55d08c5b64e6bdd33760bf03
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 14:20:31 2014 +0200
get ready for 0.12.0
commit 34380ec888c8fa15bbff1948747886c69d0d17b6
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 19 14:06:09 2014 +0200
explain new oracleMode
commit 847934b62c8c0b7d99997518064fad57ccdcc26e
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 19 11:57:03 2014 +0200
- upgrading to ForkCall 0.14
commit 0bd57edeba0677503a03b6b1f128a3da869a1a3e
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 19 11:07:52 2014 +0200
- oracle zfs handling improved
commit 58cde7f28d6ac50d01849b8e15b56ad0075eaa4d
Author: Dominik Hassler <[email protected]>
Date: Wed Aug 13 13:00:39 2014 +0200
- don't clean up source if send fails
commit 7d04aa28ec53405453534ef77bedc7092aa717f9
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 12 14:16:41 2014 +0200
- exception handling: log only message
commit bc8af018b6dc746e1a202b01cefba06ca039f63c
Author: Tobias Oetiker <[email protected]>
Date: Mon Aug 11 14:32:18 2014 +0200
non released 0.11.4
commit bfff0463413b2811516eabe59ba6eecbcccc1f1e
Author: Dominik Hassler <[email protected]>
Date: Sun Aug 10 15:49:26 2014 +0200
- one to make tobi happy
commit 5c803a174b83744d53eea42377dc7ed22a2173ff
Author: Dominik Hassler <[email protected]>
Date: Sun Aug 10 10:15:55 2014 +0200
- exception handling improved for send/recv
commit 7377a687b244d41270546343e0f3733e1598eea3
Author: Dominik Hassler <[email protected]>
Date: Thu Aug 7 21:47:44 2014 +0200
- pod
commit b99292ec74e64361f70d89e185495134458aefb9
Author: Dominik Hassler <[email protected]>
Date: Thu Aug 7 14:30:39 2014 +0200
- recvu feature added
commit 5550c2c0e235f2981781136e4257c79226c5501c
Author: Tobias Oetiker <[email protected]>
Date: Sun Aug 10 15:16:49 2014 +0200
tracking changes in source files
commit 2a50ebd3b69946cf712e9ae348c630978b09dd2e
Author: Dominik Hassler <[email protected]>
Date: Fri Aug 8 10:08:29 2014 +0200
- show last snapshot time in ztatz
commit 391ce2451264743f6a676ae39a758f81d5a7c368
Author: Tobias Oetiker <[email protected]>
Date: Sun Aug 10 15:16:15 2014 +0200
use the latest syslog module
commit 8a2ca517824e61fed4667ec0c41ba7c903a4729e
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 7 13:46:20 2014 +0200
do NOT replace 5.10.1 in the README.md
commit 2ea8050f336e5181d0649892b848146a97df8458
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 7 11:50:47 2014 +0200
0.11.2
commit 5212406bd93c4de9af8e49688c7d5275976ecc6a
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 7 11:49:51 2014 +0200
remove more spaces
commit 248941c4997b141700221f8fca4de4bc73216a04
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 7 11:47:31 2014 +0200
remove extra spaces
commit 0788270141392b6d96b0bed23667a4ca228bfe21
Author: Dominik Hassler <[email protected]>
Date: Wed Aug 6 16:41:46 2014 +0200
- fixing pid file handling
- mbuffer network mode only if sending to remote host
- test case for network mode
commit 552346f8c68efe434afe78d864c95a5fccb5adbe
Author: Tobias Oetiker <[email protected]>
Date: Thu Aug 7 11:12:41 2014 +0200
0.11.1
commit 4350ad920542171355dfda1fb1ff35f7dd7220fe
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 5 18:04:58 2014 +0200
timeout connections after 3 seconds
commit 493024230517f0fc9c7df0c6c1dd6e2bee03ba7a
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 5 16:29:55 2014 +0200
- log message order corrected
commit b87d3fcbee09b5e2bc4e2b9ecb3c908752173996
Author: Dominik Hassler <[email protected]>
Date: Tue Aug 5 14:50:09 2014 +0200
- pidfile defaults to '/var/run/znapzend.pid' when using --daemonize
commit 60fb5dea0aa54c40efa31bbfc1cd5b21e1c54d12
Author: Tobias Oetiker <[email protected]>
Date: Tue Aug 5 13:55:27 2014 +0200
prebuild -> prebuilt