forked from oetiker/znapzend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
3329 lines (2213 loc) · 94.1 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 91e0a0dede87600aa554e38b6b5dff5fa3982f82
Author: Jim Klimov <[email protected]>
Date: Mon Sep 24 13:02:30 2018 +0200
Further fix for service integrations (fix evaluated vars other than PREFIX)
commit 55461fcf93294fd62ae920ad5e5cd0bd2b224922
Author: sylvain <[email protected]>
Date: Wed Sep 19 15:24:25 2018 +0200
added --setup option
commit 4209a5e4ec381b86af1350222a7fe5efaa1e2012
Author: Shaun Maher <[email protected]>
Date: Tue Aug 14 18:38:48 2018 +1000
Minor fix to supress an error message when doing 'znapzendzetup list' if a property is greater than 16 characters long (#374)
commit 24198cb439dc17aa54d4222093d4a31ea2adc621
Author: flixman <[email protected]>
Date: Mon Jul 16 14:08:06 2018 +0000
Adding note about ZFS permissions for unprivileged users (#373)
* Update znapzendzetup
* Update README.md
commit c604a86857430258c2b8479c356437c0f61a4dc6
Author: Tobias Oetiker <[email protected]>
Date: Wed Jun 27 09:09:06 2018 +0200
update list of files included in dist
commit 5ec68eede2c9e697cdfaafc9528b9b016fa4b212
Author: Tobias Oetiker <[email protected]>
Date: Tue Jun 19 17:27:34 2018 +0200
release 0.19.0
commit 972c74daed1d09b83f88b65483f86ad46a4f4592
Author: Manuel Oetiker <[email protected]>
Date: Fri Jun 15 09:27:00 2018 +0200
increasing the buffersize (#361)
there are warnings from mbuffer:
"mbuffer: warning: high value of number of blocks(10696): increase block size for better performance"
with 256k mbuffer is happy.
commit 1a4e66aa9dab4f14e0ffb5a92fdf230f82c7dee7
Author: Randy Wilkey <[email protected]>
Date: Mon May 14 22:31:00 2018 -0700
changes for macOS Startup (#358)
These changes are proposed as a solution to issue #356 and maybe issue #322.
1. Change znapzend startup behavior to die if no zfs snap or backup sets are found.
2. Update init directory to add a launchd template and modify README.md to explain use.
3. Update main README.md to mention XCode command-line tools requirement.
commit 4b11c69e8c258d11fb51427e9dd92bd2e2e705ca
Author: Jim Klimov <[email protected]>
Date: Fri May 11 11:40:50 2018 +0200
README.md : Z-spelling
commit 188541126aee242f6e573b6a52d803b68e134af9
Author: Phil! Gold <[email protected]>
Date: Thu May 10 12:51:52 2018 -0400
System V init script.
commit f274a4afe27515c07992b4f8eab790103f7d7078
Author: Phil! Gold <[email protected]>
Date: Wed May 9 15:24:16 2018 -0400
Allow use of /etc/default/znapzend for extra znapzend parameters in init files.
commit bc68fa11036373854c7ebe04eeaf2cf97f157b0d
Author: Phil! Gold <[email protected]>
Date: Wed May 9 15:00:41 2018 -0400
Link to RPM spec file.
commit 1e815a84ead0b52db26bbe59955f4319250248fc
Author: Jim Klimov <[email protected]>
Date: Wed May 9 11:09:49 2018 +0200
README.md : wrap some long lines
commit ab776dddacf8ba5a6829bec6e09a79056c96abd4
Author: Jim Klimov <[email protected]>
Date: Tue May 8 11:06:30 2018 +0200
znapzend.xml.in : do not go into maintenance if "zfs" coredumps
commit 1dc773fa61a7a31f5430e210670165234c68ded8
Author: Jim Klimov <[email protected]>
Date: Mon May 7 12:15:09 2018 +0200
README.md : Clarify about recursive (no-prune) being a feature in certain point of view
commit 38cbe9c4063451665d164a607f76262c295414b9
Author: Jim Klimov <[email protected]>
Date: Mon May 7 12:12:38 2018 +0200
README.md : Troubleshooting with "znapzendzetup list"
commit a5e56efc865f372f78e2b607af3d7e745f314951
Author: Jim Klimov <[email protected]>
Date: Sat May 5 14:34:10 2018 +0200
znapzendzetup.pod : warn about current lack of support for pruning of recursive configurations
commit aac8e8017478d351cf3530decfcd4884431d182a
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:30:11 2018 +0200
README.md : warn about current lack of support for pruning of recursive configurations
commit 67ac09d09bd14bdb56f06a44c551d2409be6a81e
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:56:52 2018 +0200
Problem: unclear sizing of mbuffer
Solution: give a ballpark number, address issues #335 and #347
Signed-off-by: Jim Klimov <[email protected]>
commit 3f00ce3d8c123460b7c529efebb20d59e7a79693
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:38:34 2018 +0200
znapzendzetup.pod : HUP can be sent via SMF refresh or systemctl/upstart reload keywords
commit d12a47b46832e66170d560c32a1f81fca8513fc2
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:33:10 2018 +0200
znapzendzetup.pod : typo fix
commit 79d5799b2207e1e91aeabccdf038e95179aac635
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:32:59 2018 +0200
znapzendzetup.pod : clarify in help text that SRC and DST are verbatim :)
commit b2dfe67f044c68661cb253d46f1d99796ba8a0c8
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:31:20 2018 +0200
README.md znapzendzetup.pod : note about 64-bit mbuffer
commit d777eb841482b0cbd0dec67433819b315e142d0d
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:32:25 2018 +0200
README.md : add a bit of troubleshooting pointers
commit b2f5ff4fbd277a58b3c4b7a9596bcc9712cff1fe
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:32:05 2018 +0200
README.md : link to init/README.md
commit bfd5eb578b4b358ffc3c4cd20e0804448e152be4
Author: Jim Klimov <[email protected]>
Date: Sat May 5 13:39:44 2018 +0200
Regenerated autotools files with bootstrap.sh
commit 7b9556c5d608aebdf32864a9ee649199a93dcc40
Author: Jim Klimov <[email protected]>
Date: Fri May 4 22:18:46 2018 +0200
Problem : @exec_prefix@ expands to ${prefix} literally
commit b5f44745a66bc10d5af49e129287bd33b2c36bbd
Author: Nick Hall <[email protected]>
Date: Tue May 1 15:49:27 2018 -0500
Increase mbuffer watchdog timeout to 600 seconds
mbuffer activates its watchdog under certain circumstances which causes znapzend to abort and get stuck. See https://github.com/oetiker/znapzend/issues/341. This commit increases the timeout to 600 seconds to allow it enough time to complete.
commit 987fdbd51f9e4d81e47d6dbd176bfa36033f2848
Author: Jim Klimov <[email protected]>
Date: Mon Apr 30 15:52:53 2018 +0200
Regenerated autotools skeleton with bootstrap
commit 515de0d3d0f493ace813d65d54f418c6bcd80430
Author: Jim Klimov <[email protected]>
Date: Mon Apr 30 15:39:47 2018 +0200
init/README.md : document the updated approach to all-generated manifests
commit 8d92903837301b912297f7b3a9a44d76e03fc53a
Author: Jim Klimov <[email protected]>
Date: Mon Apr 30 15:24:08 2018 +0200
Make upstart and systemd manifests generatable (also have embedded paths); GitIgnore generated init/znapzend.* files
commit d4e00dff42892de71594283e5fc9e1d837d65caf
Author: Jim Klimov <[email protected]>
Date: Mon Apr 30 15:13:08 2018 +0200
Make SMF service name configurable
commit b84294ce9761852be235adc254f21e399c3f0614
Author: Phil! Gold <[email protected]>
Date: Thu Apr 26 14:25:37 2018 -0400
The cpanminus installation URL has changed.
commit da88db2cbb6f666a9d60b8d0f277a374704d3c85
Author: Tobias Oetiker <[email protected]>
Date: Fri Apr 13 15:59:42 2018 +0200
test on newer perls
commit 5c78e63c4fe47b1eabedbaeacc3cb112947136f1
Author: Tobias Oetiker <[email protected]>
Date: Fri Apr 13 15:52:41 2018 +0200
updated to latest dependent modules
commit 2f32dc5aaaa18092894d3a011293fd23787e9eac
Author: Tobias Oetiker <[email protected]>
Date: Sun Apr 8 16:52:56 2018 +0200
fix indent
commit 006e9ec3b603f79e691383cdb3b19287042b66dc
Author: paradox <[email protected]>
Date: Tue Feb 20 16:55:56 2018 -0700
do not destroy snapshots on SRC if any DST is down or any pre-send-command failed
commit 83e9c24887225f841027583041f82c5b2a8308c8
Author: Adam James <[email protected]>
Date: Mon Feb 5 18:34:57 2018 +0000
Add support for %z specifier in tsformat option
commit 75f6f32765af7c39af8165a7ffa9388cc78f4560
Author: Grant Wu <[email protected]>
Date: Mon Feb 19 04:20:09 2018 -0500
Some light edits
commit 1095ea8213b340a36b6a1f6abf8dbd7667c381cc
Author: Grant Wu <[email protected]>
Date: Mon Feb 19 03:31:33 2018 -0500
Fix typo
commit 8c9d33a2992f570afb69c170a6fe9e72ab37686a
Author: albundy83 <[email protected]>
Date: Wed Feb 7 22:17:24 2018 +0100
Added zfsonlinux support
Choose or official zfs ubuntu packages or zfsonlinux.
Add also `--default` to not have to answer yes to checkinstall command
commit a5f8132348e255eca9021a002e0fadfb55c93f91
Author: Adam James <[email protected]>
Date: Mon Feb 5 19:06:02 2018 +0000
Add --version command line option
commit 65c1ae30e8f83b9bd8f4551bcf82c41f1518dd69
Author: Adam James <[email protected]>
Date: Tue Feb 6 14:14:03 2018 +0000
Allow skipping of snap create/send on pre-command failure
This commit implements two new boolean command line options:
* --skipOnPreSnapCmdFail
* --skipOnPreSendCmdFail
These options cause znapzend to skip snapshot creation or replication if
the respective pre-command returns a non-zero exit code or is killed by
a signal.
commit 94105035cf9a9d635b4f2a9d55a367311f9510f1
Author: Tobias Oetiker <[email protected]>
Date: Fri Dec 29 21:52:37 2017 +0100
Update README.md
commit 41deffd297aaf50ac853e4dd11fa15ea0a996bbc
Author: testbird <[email protected]>
Date: Thu Dec 28 17:03:15 2017 +0100
Update README.md
https://github.com/oetiker/znapzend/issues/312
commit a15ab81197bb018cf1e7f8e894ecf74c808d8b30
Author: Dylan Powers <[email protected]>
Date: Mon Oct 16 16:15:23 2017 -0700
Missed properly validating if runonce option was passed
commit 04e2131d40dec644465c6e23fd02cc105c2a754c
Author: Dylan Powers <[email protected]>
Date: Mon Oct 9 16:42:55 2017 -0700
Allow runonce to run across all datasets
The motivation behind this was to run znapzend as a cron job.
commit 357bc3e0a9b28cb8f81008f56e81319167c80f87
Author: Dylan Powers <[email protected]>
Date: Wed Oct 4 02:30:43 2017 -0700
--sudo/pfexec znapzend options for consistency (#292)
* --sudo/pfexec znapzend options for consistency
I noticed that there is a bit of an inconsistency between the options to znapzend and its utilities which made me briefly confused why znapzend doesn't accept sudo as an option. I then found https://github.com/oetiker/znapzend/issues/166 and realized others have been confused. I've moved these out from the "features" option to their own standalone options. It's still possible to use the old features flag, for backwards compatibility, but there will now be a warning issued to make the switch.
* Introduction --rootExec
commit 21d63948943a07edc8b379379384bc24fe4ce0c7
Author: Steve Hess <[email protected]>
Date: Thu Jul 20 01:11:04 2017 -0500
Added compression feature to add -Lce options to zfs send. (#280)
* Added compression feature to add -Lce options to zfs send.
* Added brief description of -L and -e options. Changed the option name to compressed match zfs send option. Also some minor text changes to match zfs documentation.
* Added conditional for send options. (bugfix)
* Changed sendOpt to array to fix case where there are no send options.
* Changed sendOpt to array to fix case where there are no send options.
commit eef167b3c077edc9eba0e8bffe395fc5e3778a62
Author: Jason Lewis <[email protected]>
Date: Mon Jul 3 18:45:12 2017 +1000
add unzip as a requirement to build (#279)
fails to build if you don't have unzip installed
commit 172d4759fe43101ae71f260565c69597d006c98a
Author: Tobias Oetiker <[email protected]>
Date: Sat Jun 3 16:05:49 2017 +0200
teach znapzend about going into the future with the new timeWarp option (#272)
* teach znapzend about going into the future with the new timeWarp option
* add timewarp to znapzendztatz
commit 8102a00239bb9c22b0bcaf91efe24f7f37cf81d8
Author: Tobias Oetiker <[email protected]>
Date: Fri Jun 2 18:16:36 2017 +0200
document ZNAP_* environement variables (#277)
commit 830eb9df80a3c372b8a6faa54015532c19045350
Author: Tobias Oetiker <[email protected]>
Date: Fri Mar 17 09:10:10 2017 +0100
allow crfl input (fix for #267) (#268)
commit ff9efe9003da54b3911071489d41f93bd8aa6735
Author: morph027 <[email protected]>
Date: Fri Mar 17 08:54:23 2017 +0100
started basic bash completion (#242)
* started basic bash completion
* extend bash completion for list
commit 1c72924f8c960ca37958a20cf93260cd92a071d0
Author: Dominik Hassler <[email protected]>
Date: Fri Feb 10 17:01:33 2017 +0100
- escape '.' for snapshot filter
commit f740ff033f0f5e51198f9e997469ca1b388ea263
Author: Tobias Oetiker <[email protected]>
Date: Wed Feb 8 08:38:40 2017 +0100
release 0.17.0
commit 8188a79cbaec2dea4dfb0d52e6bea755e8e9a520
Author: Ron van den Dungen <[email protected]>
Date: Tue Jan 17 08:35:20 2017 +0100
pre/post send/receive command fixes (#254)
* Added destination pre and post send/receive commands.
* corrected "sign" in history
* update for new pre and post send/receive commands
* correct sign in history
* Added WORKER environment variable for use by pre/post-send-scripts
* Renamed feature to be consistent with pre/post-snap-command, added documentation and example.
* some typo's in man page
* corrected value of WORKER
* minor omission in example
* inserted suggested line breaks
commit ad0c1dfb6f097d29f044b38f299254c5fc8352bb
Author: Petr Gregor <[email protected]>
Date: Mon Jan 16 10:01:04 2017 +0100
Makes daemon continue even if there are no enabled backup sets
commit 84ec22a863711095519a4bab3005c7cef6e236a8
Author: Justin Scholz <[email protected]>
Date: Fri Jan 6 20:41:02 2017 +0100
cleanup gitter link from referral url source param
The URL previosuly contained referrer parameters. I cleaned it up so it doesn’t contain that anymore.
Signed-off-by: Justin Scholz <[email protected]>
commit 341d087063147302b1af42eab055efbade6d9fa7
Author: Ron van den Dungen <[email protected]>
Date: Fri Jan 6 15:02:28 2017 +0100
per destination pre/post-send-command improvements (#251)
* Added destination pre and post send/receive commands.
* corrected "sign" in history
* update for new pre and post send/receive commands
* correct sign in history
* Added WORKER environment variable for use by pre/post-send-scripts
* Renamed feature to be consistent with pre/post-snap-command, added documentation and example.
* some typo's in man page
commit 1cb71ddf61c402ed12cd3b4ab40043b805ce1491
Author: Chris Ridd <[email protected]>
Date: Mon Dec 19 15:55:34 2016 +0000
Fix trivial typos
commit 3d41cdd8871053ce183209ee7f8f0fbd1e3e4db7
Author: Дмитрий Глушенок <[email protected]>
Date: Thu Dec 1 15:15:18 2016 +0300
Changed SMF dependency to multi-user
znapzend starts too early in case of ZFS over iSCSI with delayed zpool import.
commit 3b9d56702dd63310d765e8b12dad0f3a7354ddf6
Author: Tobias Oetiker <[email protected]>
Date: Tue Nov 8 08:10:07 2016 +0100
prep for 0.16.0
commit 979bcf07a51caa2ea04847faf1a51256e9d4aa47
Author: Dominik Hassler <[email protected]>
Date: Tue Nov 8 06:25:00 2016 +0100
- autocreation fixed
commit 1ff27b83565e01dc6d7bc211d193676fbbb17c2b
Author: Phil Kauffman <[email protected]>
Date: Thu Nov 3 18:17:14 2016 -0500
Addition of upstart init script.
commit 0280c2c2f5a1e6b1c58b38ad647761449d09c3e0
Author: Petr Gregor <[email protected]>
Date: Thu Oct 13 11:34:25 2016 +0200
adds link to debian packaging files to readme (#235)
Debian packaging files are in separate repository to ease the work of potential official maintainer.
commit d5be8eb868858092fbc48b718fa64f04b4ecce4d
Author: Ron van den Dungen <[email protected]>
Date: Tue Sep 27 10:54:28 2016 +0200
Added destination pre and post send/receive commands. (#233)
* Added destination pre and post send/receive commands.
commit e1e8fa3c16eb9cdd887f32c29c21e6ec33cdf51f
Author: Dominik Hassler <[email protected]>
Date: Tue Sep 13 12:31:26 2016 +0200
- prevent the same retention time more than once in a backup plan
commit 476630b2bea773111c39b4bb6e568027cc7fda3e
Author: Edouard Renard <[email protected]>
Date: Tue Jul 26 15:58:23 2016 +0200
add possibility to specify delay before sending snaps
precise backupSet src name in log when waiting before sending
commit 9fe397a226ab9719719d8172626a9338e30cc1b5
Author: Joel Kuzmarski <[email protected]>
Date: Sat Jun 11 16:31:25 2016 -0500
windoz
fix typo
commit 16c31a8d31c8822ea992954ab6aac9fd2a9a5fb1
Author: L.C. Karssen <[email protected]>
Date: Sun Jun 12 16:17:33 2016 +0200
Fix issue #220, detection of zfsutils package in Ubuntu
This fixes issue #220. Previously, the script automatically added
`zfsutils` as dependecy. In Ubuntu 16.04 the package is called
zfsutils-linux. This commit runs `lsb_release -r` to get the release
number and then checks if it is running on 16.04 or greater to set the
correct zfsutils dependency.
Note, this commit was only tested on an Ubuntu machine. It may need
editing for Debian or other distros.
commit fdb0880a40a827dfa04448652bf7559c44198c27
Author: Lennart C. Karssen <[email protected]>
Date: Sun Jun 12 15:49:03 2016 +0200
Add missing step to checkinstall README
After cloning the Git repo, the clone is located in the `znapzend` directory, so the user should first `cd` into it before running the checkinstall script.
commit 98481c98ede965d1fca1da694d52b8b223b72f73
Author: Tobias Oetiker <[email protected]>
Date: Mon Jun 6 08:36:08 2016 +0200
locking again
commit a2f950d526e84436b7ddf5158f73ec96579b896c
Author: Tobias Oetiker <[email protected]>
Date: Thu Jun 2 08:38:19 2016 +0200
better locking
commit afd360795a47de00e5b8150e7268c7bb9bf44535
Author: Tobias Oetiker <[email protected]>
Date: Wed Jun 1 15:32:41 2016 +0200
table lock gets lost when the connection ends
commit 1c7c6488127bc505dbbb92727e3348c35d5947cd
Author: morph027 <[email protected]>
Date: Fri May 20 10:41:37 2016 +0200
update checkinstall README
commit 1915c307060f27e977b3d1ab5fc1d08ea3252ab2
Author: morph027 <[email protected]>
Date: Fri May 20 10:40:15 2016 +0200
added install hooks
commit 024de29243298095463606ad759ed11363bac4f5
Author: Tobias Oetiker <[email protected]>
Date: Wed Jun 1 15:05:56 2016 +0200
added mysql example
commit 18a64b6041f163403c9ea01ba02bd78517735f77
Author: Elmar Pruesse <[email protected]>
Date: Thu May 5 13:18:42 2016 -0600
fix spelling typo
commit 019819439faecf5e414987b317bec16fb77144ec
Author: Tobias Oetiker <[email protected]>
Date: Mon May 9 11:35:54 2016 +0200
add gitter
commit 30664d638081199a256b8a6db06007ff5d51321a
Author: Tobias Oetiker <[email protected]>
Date: Mon May 9 11:31:00 2016 +0200
prep for 0.15.7
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.