forked from djmitche/amanda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
4768 lines (3919 loc) · 205 KB
/
Copy pathChangeLog
File metadata and controls
4768 lines (3919 loc) · 205 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-04-09 Ray Tracer <RayTracer@irc.freenode.net>
* application-src/amgtar.c: add missing 'break'
2009-04-09 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/conffile.c: store properties in lower-case
* perl/Amanda/Config.swg: document data formats for config values
* installcheck/Amanda_Config.pl: test case-sensitivity
2009-04-09 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/rait-device.c: add rait_device_new_from_children
* device-src/device.h: prototype
* perl/Amanda/Device.swg: wrap into perl
* installcheck/Amanda_Device.pl: test
2009-04-08 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/tape-device.c: fix typo to get device_name right
2009-04-08 Nikolas Coukouma <atrus@zmanda.com>, Dustin J. Mitchell <dustin@zmanda.com>
* man/xml-source/amanda-devices.7.xml: clarify meaning of s3_bucket location
2009-04-08 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/fileheader.c: fix early return if PROGRAM not given
* perl/Amanda/Disklist.swg: do not free the C disklist
* perl/Makefile.am perl/Amanda/Holding.pm: new pure-perl package with
functionality similar to server-src/holding.[ch]
* server-src/holding.h: clarify comments
* installcheck/Amanda_Holding.pl installcheck/Installcheck/Config.pm
installcheck/Makefile.am: tests
2009-04-08 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/xfer-dest-taper.c: fix uninitialized-value warnings
2009-04-07 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Xfer_serveronly.pl: unmerged test tweaks
2009-04-07 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/xfer-dest-taper.c: new xfer element to handle splitting
dumpfiles over multiple volumes, with retry of failed split parts
* device-src/Makefile.am: new file
* device-src/xfer-device.h: new prototype
* installcheck/Amanda_Xfer_serveronly.pl: new tests
* installcheck/Installcheck/Run.pm: increase default vtape size
* perl/Amanda/Xfer.swg: POD for new element
* perl/Amanda/XferDevice.swg: wrap new element
* xfer-src/xmsg.h xfer-src/xmsg.c: add XMSG_PART_DONE
2009-04-07 Jean-Louis Martineau <martineau@zmanda.com>
* client-drc/sendbackup.c: Init result.
2009-04-07 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/taper-source.c (default_taper_source_seek_to_part_start):
returns FALSE on not splitted dump.
* server-src/driverio.c: info.last_level should not be set on error
if level >= info.last_level.
* server-src/driver.c: Rename update_failed_dump_to_tape to
update_failed_dump.
Call update_failed_dump on failed dump to holding disk.
* application-src/amgtar.c: Don't update statefile if the backup failed.
* client-drc/sendbackup.c: Don't update amandates if backup failed.
2009-04-07 Jean-Louis Martineau <martineau@zmanda.com>
* man/xml-source/amanda-changers.7.xml: Document changerfile for
chg-disk.
2009-04-03 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer/compat.pm: always configure devices while
scanning
* server-src/amcheckdump.pl: configure devices returned from the
changer
2009-04-03 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsamba.pl: Allow empty username.
* man/xml-source/amsamba.8.xml: Document empty username and password.
2009-04-03 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/security-util.c: Fix isdigit use.
2009-04-03 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c: New client_port option.
* common-src/conffile.h: New client_port option.
* man/xml-source/amanda-auth.7.xml,
man/xml-source/amanda-client.conf.5.xml,
man/xml-source/amanda.conf.5.xml: New client_port option.
* perl/Amanda/Config.swg: Add CNF_CLIENT_PORT and DUMPTYPE_CLIENT_PORT.
* common-src/bsd-security.c,
common-src/bsdtcp-security.c,
common-src/bsdudp-security.c: Use client_port option.
* common-src/security-util.c: New find_port_for_service function.
* common-src/security-util.h: Prototype for find_port_for_service.
* installcheck/Amanda_Config.pl: Check reaad_int_or_str function.
* recover-src/amrecover.c: Remove amindexd_client_get_security_conf.
* recover-src/extract_list.c: Remove amidxtaped_client_get_security_conf
* server-src/amadmin.c (disklist_one): Print client_port.
* server-src/amcheck.c: Fix remote_errors;
* server-src/diskfile.h (disk_t): Add client_port.
* server-src/diskfile.c: Set client_port.
* server-src/driverio.c: Send client_port to dumper.
* server-src/dumper.c: Parse client_port.
* server-src/server_util.c: return client_port.
2009-04-03 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3-device.c, installcheck/Amanda_Device.pl:
don't require location-compatible name for ignored value
2009-04-03 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsamba.pl: Allow empty password.
* perl/Amanda/Util.swg: Small fix in skip_quoted_string.
* installcheck/Amanda_Util.pl: Check skip_quoted_string fix.
2009-04-02 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amstatus.pl: prefix error message with "backup failed:"
if a dump to holding disk failed.
2009-04-02 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amstatus.pl: Print a taper status.
* server-src/taper.c: Quote TAPE-ERROR reply.
2009-04-02 Dustin J. Mitchell <dustin@zmanda.com>
* man/xml-source/amsamba.8.xml: clarify "CIFS host" vs. "client"
2009-04-02 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsamba.pl: Typo.
2009-04-01 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/s3-device.c: always send errors from setup_handle
2009-04-01 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3-device.c: don't clobber errors from setup_handle
2009-04-01 Nikolas Coukouma <atrus@zmanda.com>
* NEWS: Note change to Amazon S3, add ampgsql
2009-03-31 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amcheck.c: Set l on error path.
2009-03-31 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3.c: don't send empty location constraint,
allocate error messages, fix constraint check in case of wildcard
* installcheck/Amanda_Device.pl: actually test location constraints
2009-03-31 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: add newline to end of index entry
2009-03-31 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsamba.pl: Set $self->{mesgout} before calling
method that use it.
2009-03-31 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/Makefile.am: Remove amgtar_perl.
* application-src/amgtar_perl.pl: Remove file.
2009-03-30 Jean-Louis Martineau <martineau@zmanda.com>
* man/xml-source/amsamba.8.xml: Document amandapass file location.
2009-03-30 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsamba.pl: allow relative AMANDAPASS property.
* man/xml-source/amsamba.8.xml: Document amandapass file location.
* ReleaseNotes: amsamba
2009-03-30 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amcheck.c: exit(1) if match_disklist() return an error.
* server-src/planner.c: Better logging if match_disklist() return an
error.
2009-03-30 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/planner.c: Use new one_est_t,
print warning for server guessed estimate.
2009-03-29 Dan Locks <dwlocks@zmanda.com>
* packaging/rpm/amanda.spec: change a number of %if conditionals to
macros which expand if they are defined.
2009-03-29 Nikolas Coukouma <atrus@zmanda.com>
* man/xml-source/amanda-devices.7.xml: add more notes
2009-03-27 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3.c, installcheck/Amanda_Device.pl:
ignore s3_bucket_location if set to "", pass "*" as "" (wildcard),
pass others as-is
2009-03-27 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Util.pl: fix warning
* perl/Amanda/Util.swg: fix typos
2009-03-27 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl, installcheck/ampgsql.pl:
use a different dummy entry
2009-03-27 Jean-Louis Martineau <martineau@zmanda.com>
* recover-src/extract_list.c: Add --level argument to application.
2009-03-27 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsuntar.pl: Check for 'symbolic link' in index.
2009-03-27 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Device.pl: counting Amanda_Device tests is hard.
2009-03-26 Nikolas Coukouma <atrus@zmanda.com>
* installcheck/Amanda_Device.pl: fix test counts
* installcheck/Amanda_Util.pl: fix shadow variable warning
2009-03-26 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3.c: ignore empty s3_user_token
* installcheck/Amanda_Device.pl: test empty s3_user_token
2009-03-26 Dustin J. Mitchell <dustin@zmanda.com>
* man/xml-source/amanda.conf.5.xml: document new estimate changes made
2009-02-04
2009-03-26 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/planner.c: Remove logging of guessed estimate.
2009-03-26 Jean-Louis Martineau <martineau@zmanda.com>
* client-src/sendsize.c: Typo.
2009-03-25 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/ampgsql.pl: Add command_validate.
* application-src/amgtar_perl.pl, application-src/amsamba.pl,
application-src/amsuntar.pl: Sanity check for command_validate.
* perl/Amanda/Application.swg: Add a default_validate function.
* perl/Amanda/Script_App.pm: Execute defulat_validate if
command_validate is not defined.
2009-03-25 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer.pm: add a 'cmp' operator for
Amanda::Changer::Error objects, to make testing easier
2009-03-25 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer.pm: add Amanda::Changer::Error
class to give more detail in changer errors
* perl/Amanda/Changer/compat.pm perl/Amanda/Changer/disk.pm
perl/Amanda/Changer/null.pm perl/Amanda/Changer/rait.pm
perl/Amanda/Changer/single.pm: use it
* changer-src/chg-glue.pl: handle new errors
* installcheck/Makefile.am installcheck/Installcheck/Changer.pm:
(chg_err_like) utility function
* installcheck/Amanda_Changer.pl
installcheck/Amanda_Changer_compat.pl
installcheck/Amanda_Changer_disk.pl
installcheck/Amanda_Changer_null.pl
installcheck/Amanda_Changer_rait.pl
installcheck/Amanda_Changer_single.pl: change tests
2009-03-25 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer.pm: remove unused import() and export()
2009-03-25 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/s3.c: fix segfault in s3_make_bucket with location
constraint
2009-03-25 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Util.swg: add full_read and full_write
* installcheck/Amanda_Util.pl: test 'em
2009-03-25 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsuntar.pl: Generate valid index stream.
2009-03-24 Nikolas Coukouma <atrus@zmanda.com>
* man/xml-source/amanda-applications.7.xml,
man/xml-source/amanda.8.xml: add missing references to applications
2009-03-24 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: older versions of perl don't like
mixing functions and export tags
2009-03-24 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl, installcheck/ampgsql.pl:
generate more-complete index, improve debugging and error handling
2009-03-24 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c: Fix line counting, Remove check for plugin.
* server-src/diskfile.c: Add check for plugin.
2009-03-24 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/planner.c: Default server estimate not larger than half
a tape. log a warning.
2009-03-24 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amsamba.pl: Fix typo and check if smbclient is set.
2009-03-24 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c, application-src/amstar.c:
Do sanity check if required arguments are not provided.
2009-03-23 Nikolas Coukouma <atrus@zmanda.com>
* AUTHORS: remove "active" status if not committed in over 2 years
* ChangeLog: clean up some messiness
* contrib/changelog_parse.pl: simple parser for ChangeLog
2009-03-23 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c: Add NO-UNQUOTE to restore.
2009-03-23 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c, application-src/amgtar_perl.pl,
client-src/sendbackup-gnutar.c, client-src/sendsize.c,
recover-src/extract_list.c: Undo: '--no-unquote' to gtar arguments.
* application-src/amgtar.c: add NO-UNQUOTE property.
* man/xml-source/amgtar.8.xml: Document NO-UNQUOTE property.
2009-03-23 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl, installcheck/ampgsql.pl:
fix ampgsql installchecks
2009-03-23 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c, application-src/amgtar_perl.pl,
client-src/sendbackup-gnutar.c, client-src/sendsize.c,
recover-src/extract_list.c: Add '--no-unquote' to gtar arguments.
2009-03-23 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c, application-src/amstar.c,
client-src/client_util.c, client-src/client_util.h,
client-src/selfcheck.c, client-src/sendbackup-gnutar.c,
client-src/sendbackup.c, client-src/sendsize.c,
common-src/conffile.c, common-src/conffile.h,
common-src/util.c, oldrecover-src/extract_list.c,
recover-src/extract_list.c,
server-src/server_util.c: Use GPtrArray instead of my_argv[].
2009-03-23 Jean-Louis Martineau <martineau@zmanda.com>
* man/xml-source/amanda.conf.5.xml, man/xml-source/disklist.5.xml:
Document the fact that: The { must appear at the end of a line,
and the } on its own line.
2009-03-21 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/security-util.c: Fix sec_tcp_conn_get ot not always match.
2009-03-20 Jean-Louis Martineau <martineau@zmanda.com>
* recover-src/Makefile.am: Add dependencies for uscan.o and uparse.o
* recover-src/amrecover.h: Add verbose to many prototype.
* recover-src/extract_list.c: Allow to use path for many command.
* recover-src/set_commands.c: Add verbose to many function.
* recover-src/uparse.y, recover-src/uscan.l: Improve parser.
2009-03-19 Dustin J. Mitchell <dustin@zmanda.com>
(thanks to Peter Kunst <peter.kunst@swissrisk.com>)
* common-src/Makefile.am: don't include genversion.h in distribution
tarballs
2009-03-19 Jean-Louis Martineau <martineau@zmanda.com>
* man/Makefile.am: Add .SECONDARY target.
2009-03-19 Dustin J. Mitchell <dustin@zmanda.com>
* man/xslt/expand-sambadoc.xsl:
* man/entities/global.entities.in
man/xml-source/*.xml: add a handy <manref> tag and a <seealso> tag
for 'SEE ALSO' sections
* man/xml-source/amanda.conf.5.xml: remove bogus unicode "times"
symbol; tweak tapecycle description
2009-03-19 Dustin J. Mitchell <dustin@zmanda.com>
* xfer-src/Makefile.am: add -release to libamxfer
2009-03-18 Nikolas Coukouma <atrus@zmanda.com>
* server-src/amrmtape.pl, installcheck/amrmtape.pl:
re-label tapes if we --erase them and --keep-label is present
2009-03-18 Jean-Louis Martineau <martineau@zmanda.com>
* installcheck/Amanda_Process.pl: Fix for OS return perl.
2009-03-18 Jean-Louis Martineau <martineau@zmanda.com>
* perl/Amanda/Process.pm: Better match of argument.
Match 'perl' to any process name.
2009-03-18 Jean-Louis Martineau <martineau@zmanda.com>
* installcheck/Amanda_Process.pl: Check second argument if first
argument start with a dash.
* perl/Amanda/Process.pm: The process name is now returned, not perl.
2009-03-18 Jean-Louis Martineau <martineau@zmanda.com>
* man/xml-source/amrmtape.8.xml: Fix.
* perl/Amanda/Process.pm: Find the process name if it is a perl script.
* server-src/amrmtape.pl: Check and create the "log" file if --erase.
2009-03-18 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: fix numerous bugs, improve debug info
2009-03-17 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c: fix typo causing check-device to be
interpreted incorrectly
2009-03-17 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer.pm: introduce info_key and info_setup to ease
implementation of the info() method
* perl/Amanda/Changer/compat.pm perl/Amanda/Changer/disk.pm
perl/Amanda/Changer/null.pm perl/Amanda/Changer/rait.pm
perl/Amanda/Changer/single.pm: use them
* installcheck/Amanda_Changer.pl installcheck/Amanda_Changer_rait.pl:
test the results
2009-03-17 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amlabel.c: give correct exit status on failure
2009-03-13 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amstatus.pl: dump in "writing to tape" mode should also
be included in the "dumped" summary.
2009-03-13 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/find.c: Fix listing of partial dump in holding disk.
2009-03-12 Jean-Louis Martineau <martineau@zmanda.com>
* installcheck/amreport.pl: New file.
2009-03-12 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/columnar.c: New defaults, allow precision to be set.
* man/xml-source/amanda.conf.5.xml: Document new columnspec format.
* installcheck/Installcheck/Config.pm: Always set org to "DailySet1".
* installcheck/Makefile.am: add amreport.
* installcheck/amreport.pl: Check different value of columnspec.
* installcheck/Amanda_Config.pl: Check with dumporder instead of org.
2009-03-12 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/planner.c: Log quoted qname.
2009-03-11 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/amtapetype.pl: do not produce broken 'bytes' units
* installcheck/amtapetype.pl: test changes
* man/xml-source/amanda.conf.5.xml: tapetype:length is not in bytes!
* common-src/conffile.c: fix default for tapetype:length
2009-03-11 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/amfeatures.c: improve error handling in
am_string_to_feature, return NULL on error
* amandad-src/amandad_util.c recover-src/amrecover.c
server-src/amcheck.c server-src/amindexd.c server-src/chunker.c
server-src/driver.c server-src/dumper.c server-src/planner.c: always
terminate the string passed to am_string_to_feature
2009-03-10 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/taper.c: return DONE if input file is partial.
2009-03-10 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c, application-src/amstar.c: Validate YES/NO
value for boolean properties.
2009-03-10 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amstatus.pl: Print "failed: process terminated while" for
dead run. Change "wait for" for "waiting for".
2009-03-10 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amstar.c: ONE-FILE-SYSTEM is deprecated.
* man/xml-source/amstar.8.xml: Document it.
2009-03-10 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/conffile.c: Set default TAPETYPE_FILEMARK to 1.
2009-03-09 Nikolas Coukouma <atrus@zmanda.com>
* man/xslt/html.xsl.in: use UTF-8 when generating man page HTML
2009-03-09 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl:
set environment variables when running psql (from selfcheck)
2009-03-07 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: add selfcheck to ampgsql
2009-03-06 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer/rait.pm: replace die() with a proper error
return
2009-03-06 Dustin J. Mitchell <dustin@zmanda.com>
* Makefile.am config/libtool.m4 config/ltmain.sh config/ltoptions.m4
config/ltsugar.m4 config/ltversion.m4 config/lt~obsolete.m4
configure.in: upgrade to libtool-2.2.4
2009-03-06 Dustin J. Mitchell <dustin@zmanda.com>
* restore-src/restore.c: remove incorrect assertion
2009-03-06 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/amfeatures.c: fix am_string_to_feature to fail correctly
on a bad feature string
2009-03-06 Dustin J. Mitchell <dustin@zmanda.com>
* Makefile.am: always build xfer-src, on client or server
* xfer-src/Makefile.am xfer-src/xfer-element.h device-src/Makefile.am
device-src/xfer-device.h device-src/xfer-dest-device.c
device-src/xfer-source-device.c: move device-specific xfer elts to
device-src
* perl/amglue/amglue.h perl/amglue/objwrap.c perl/amglue/xferwrap.c:
generic glue
* perl/Makefile.am perl/Amanda/Xfer.swg perl/Amanda/XferDevice.swg:
only import server-specific symbols if they are available
* installcheck/Makefile.am installcheck/Amanda_Xfer.pl
installcheck/Amanda_Xfer_serveronly.pl: split into general and
server-specific checks
2009-03-05 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: use older-style (<perl 5.10) mkpath
options so we don't print "mkdir ..." lines into our backup data
2009-03-05 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Device.pl: only perform property tests when we
have a working S3 device; and get test counts right
2009-03-05 Dustin J. Mitchell <dustin@zmanda.com>, Nikolas Coukouma <atrus@zmanda.com>
* man/xml-source/amanda.conf.5.xml,
man/xml-source/amanda-devices.7.xml,
installcheck/Amanda_Config.pl,
installcheck/Amanda_Device.pl,
common-src/util.c,
common-src/glib-util.c,
common-src/conffile.c,
common-src/conffile.h:
be consistent in the various names for 'true' and 'false' we allow,
specifically in device properties
2009-03-05 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: call pg_stop_backup() if a problem occurs
while backing up data dir
2009-03-05 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl, man/xml-source/ampgsql.8.xml:
make ampgsql use runtar (so it can access PostgreSQL's files)
2009-03-04 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Changer/rait.pm: add a slot-name shorthand
* installcheck/Amanda_Changer_rait.pl: test it
* man/xml-source/amanda-changers.7.xml: document it
2009-03-04 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/rait-device.c: fix failure when parity (last) child
has failed
* installcheck/Amanda_Device.pl: test the fix
2009-03-04 Dustin J. Mitchell <dustin@zmanda.com>
* changer-src/chg-glue.pl: add debugging
* perl/Amanda/Changer/compat.pm: add debugging
2009-03-03 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl: don't hang if .backup file never appears
2009-03-02 Nikolas Coukouma <atrus@zmanda.com>
* example/amanda-client-postgresql.conf.in:
update example and make it more complete
2009-03-02 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl,
man/xml-source/ampgsql.8.xml: cleanup old WAL files
2009-03-02 Nikolas Coukouma <atrus@zmanda.com>
* installcheck/amrmtape.pl,
server-src/amrmtape.pl: zero datestamp with --keep-label
2009-03-01 Nikolas Coukouma <atrus@zmanda.com>
* server-src/amrmtape.pl: send messages to log file regardless of verbosity flag
2009-02-27 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c: Fix parsing of EXIT-HANDLING property.
2009-02-27 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Constants.pm.in: publish $MT and $MTX, too
2009-02-26 Dustin J. Mitchell <dustin@zmanda.com>
* restore-src/restore.c: if the changer does not provide a device,
use the configured tapedev
2009-02-26 Dan Locks <dwlocks@zmanda.com>
* packaging/rpm/amanda.spec: update detection for sles11, opensuse11.1
rpm builds will be broken for a bit longer in trunk
2009-02-26 Nikolas Coukouma <atrus@zmanda.com>
* application-src/amgtar_perl.pl,
application-src/amlog-script.pl,
application-src/ampgsql.pl,
application-src/amsamba.pl,
application-src/amsuntar.pl,
application-src/amzfs-sendrecv.pl,
application-src/amzfs-snapshot.pl,
application-src/script-email.pl,
perl/Amanda/Application.swg,
perl/Amanda/Script.pm,
perl/Amanda/Script_App.pm:
load config-name/amanda-client.conf as well as amanda-client.conf
2009-02-26 Nikolas Coukouma <atrus@zmanda.com>
* application-src/ampgsql.pl,
installcheck/amgtar.pl,
installcheck/ampgsql.pl: use $@ to get eval errors (not $!)
2009-02-25 Nikolas Coukouma <atrus@zmanda.com>
* application-src/amoracle.pl,
application-src/ampgsql.pl,
example/amanda-client-oracle.conf.in,
example/amanda-client-postgresql.conf.in,
installcheck/ampgsql.pl,
man/xml-source/ampgsql.8.xml: bring amoracle and ampgsql properties
in line with conventions
2009-02-24 Jean-Louis Martineau <martineau@zmanda.com>
* amandad-src/amandad.c, application-src/amgtar.c,
changer-src/scsi-changer-driver.c, client-src/client_util.c,
common-src/conffile.c, device-src/s3-device.c,
oldrecover-src/set_commands.c, recover-src/set_commands.c,
server-src/amindexd.c, server-src/planner.c,
server-src/reporter.c: Replace all occurences of index by strchr,
Replace all occurences of rindex by strrchr.
2009-02-24 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3.c: make s3_list_keys use its own buffer
2009-02-24 Nikolas Coukouma <atrus@zmanda.com>
* device-src/s3.c: fix error buffer handling of overflow data
2009-02-24 Dustin J. Mitchell <dustin@zmanda.com>
* man/xml-source/amanda-devices.7.xml: specify behavior of VERBOSE
property
2009-02-24 Nikolas Coukouma <atrus@zmanda.com>
* man/xml-source/ampgsql.8.xml,
man/xml-source/amsamba.8.xml,
man/xml-source/amstar.8.xml,
man/xml-source/amsuntar.8.xml:
document the mapping of configure options to default application
property values
2009-02-23 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/rait-device.c: actually *report* mismatched child
labels/timestamps; correctly detect the 'first' device; and free old
device label/time
2009-02-23 Dustin J. Mitchell <dustin@zmanda.com>
* server-src/driver.c: improve confusing out-of-tapes error message
2009-02-20 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/changer.c: if changer_find is used to search for a
specific tape, do not try a redundant manual scan after the
search fails
2009-02-20 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Installcheck/Run.pm: create a purpose-specific 'junk'
directory to test dumps
2009-02-20 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Archive.pl installcheck/Amanda_Changer_compat.pl
installcheck/Amanda_Changer_disk.pl
installcheck/Amanda_Changer_rait.pl installcheck/Amanda_Device.pl
installcheck/Amanda_Logfile.pl installcheck/Amanda_Process.pl
installcheck/Amanda_Xfer.pl installcheck/Installcheck.pm
installcheck/Installcheck/Config.pm
installcheck/Installcheck/Dumpcache.pm
installcheck/Installcheck/Run.pm installcheck/Makefile.am
installcheck/amarchiver.pl installcheck/amfetchdump.pl
installcheck/amgetconf.pl installcheck/amgtar.pl
installcheck/ampgsql.pl installcheck/amservice.pl
installcheck/amstatus.pl installcheck/pp-scripts.pl: use a
subdirectory of AMANDA_TMPDIR for installcheck temporary files
2009-02-20 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_MainLoop.pl: report "timeout" on a timeout
* amar-src/amar-test.c common-src/amflock-test.c
common-src/event-test.c common-src/queueing-test.c
common-src/quoting-test.c common-src/semaphore-test.c
device-src/vfs-test.c xfer-src/xfer-test.c: increase timeouts
drastically
2009-02-20 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/conffile.c: change the default changerfile to
$CONFIG_DIR/changer
2009-02-20 Dustin J. Mitchell <dustin@zmanda.com>
* device-src/property.c device-src/property.h: add PROPERTY_COMMENT
* device-src/device.c: support PROPERTY_COMMENT
* installcheck/Amanda_Device.pl: test it
* man/xml-source/amanda-devices.7.xml: document it
2009-02-20 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c: Add t, tb, tera, ... suffix.
* man/xml-source/amanda.conf.5.xml: Document it.
2009-02-19 Nikolas Coukouma <atrus@zmanda.com>
* example/amanda-client-postgresql.conf.in,
example/Makefile.am,
man/Makefile.am,
man/xml-source/ampgsql.8.xml,
configure.in,
application-src/Makefile.am,
application-src/ampgsql.pl,
installcheck/Makefile.am,
installcheck/ampgsql.pl: add PostgreSQL plugin/application (ampgsql)
* installcheck/Installcheck/Application.pm:
fix property names in case of underscores
* installcheck/Installcheck/Run.pm:
if application starts with /, don't assume it's in sbin
2009-02-19 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Util.swg: move POD to the top of the file, refomat
2009-02-19 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/util.h common-src/util.c: remove unneeded needs_quotes
2009-02-19 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Types.pl
installcheck/Amanda_Header.pl: rename Amanda::Types to
Amanda::Header, add to_string and from_string methods
* common-src/fileheader.c: fix bug in returned size
* device-src/amtapetype.pl installcheck/Amanda_Device.pl
installcheck/Amanda_Xfer.pl installcheck/Makefile.am
perl/Amanda/Device.swg perl/Amanda/Header.swg perl/Amanda/Tests.swg
perl/Amanda/Types.swg perl/Makefile.am server-src/amvault.pl: use
Amanda::Header
2009-02-19 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/Makefile.am common-src/queue.h: remove file
* amandad-src/amandad.c common-src/alloc.c
common-src/bsdtcp-security.c common-src/krb5-security.c
common-src/local-security.c common-src/rsh-security.c
common-src/security-util.c common-src/security-util.h
common-src/ssh-security.c: remove includes and replace TAILQ with
GSList
2009-02-18 Jean-Louis Martineau <martineau@zmanda.com>
* config/amanda/krb4-security.m4: Remove file
* common-src/krb4-security.c: Remove file.
* example/config.site, example/amanda.conf.in,
client-src/client_util.c, amandad-src/amandad.c,
man/xml-source/amanda-client.conf.5.xml,
man/xml-source/amanda.conf.5.xml,
man/xml-source/amgetconf.8.xml,
configure.in, server-src/dumper.c,
server-src/diskfile.c, perl/Amanda/Constants.pm.in,
installcheck/Amanda_Config.pl, common-src/amfeatures.h,
common-src/security.c, common-src/security.h,
common-src/genversion.c, common-src/amgetconf.pl,
common-src/conffile.c, common-src/Makefile.am,
common-src/amfeatures.c: Remove krb4 support.
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Debug.swg: correctly check $^S in _my_die()
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/debug.h common-src/debug.c: add ability to supporess
tracebacks
* perl/Amanda/Debug.swg: fix typo and suppress traceback on die()
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Makefile.am: actually install Amanda::Change::rait
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/util.c: add missing 'const'
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/util.c common-src/util.h device-src/rait-device.c
perl/Amanda/Util.swg installcheck/Amanda_Util.pl: move
expand_braced_alternates and collapse_braced_alternates out of
rait-device.c and into util.c, and make them available from Perl
* perl/Amanda/Changer/null.pm perl/Amanda/Changer/rait.pm
perl/Makefile.am: new changers
* installcheck/Amanda_Changer_null.pl
installcheck/Amanda_Changer_rait.pl installcheck/Makefile.am: test new
changers
* changer-src/Makefile.am changer-src/chg-null.sh
changer-src/chg-rait.sh: remove old scripts
* man/xml-source/amanda-changers.7.xml
man/xml-source/amanda-devices.7.xml: update documentation
2009-02-18 John Hein <jhein@timing.com>
* common-src/dgram.c: set the send buffer size when creating a new
socket
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/conffile.c common-src/conffile.h perl/Amanda/Config.swg:
change PP_SCRIPT to SCRIPT, to match the name of the config param
* server-src/diskfile.c installcheck/Amanda_Config.pl:
use new symbols
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Config.pl: installchecks for nested pp_scripts
and applications
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/conffile.c common-src/conffile.h: use a simple
identlist_t for pp_scripts
* server-src/amadmin.c server-src/diskfile.c server-src/diskfile.h
server-src/server_util.c: use identlist_t's
2009-02-18 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Amanda/Config.swg: perl bindings
2009-02-18 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c common-src/conffile.h: Change
DUMPTYPE_APPLICATION to give a string val_t; remove the
pointer-to-application val_t subtype; also fix many
memory leaks and simplify memory management
* server-src/amadmin.c server-src/amcheck.c server-src/amindexd.c
server-src/diskfile.c server-src/diskfile.h server-src/driverio.c
server-src/planner.c: use new val_t result correctly
2009-02-18 Jean-Louis Martineau <martineau@zmanda.com>
* client-src/selfcheck.c: Do dle check without disk.
* common-src/amxml.c: Accept a dle without a disk.
* perl/Amanda/Application/Zfs.pm, application-src/amgtar.c,
application-src/amgtar_perl.pl,
application-src/amsamba.pl, application-src/amstar.c,
application-src/amsuntar.pl, application-src/amzfs-sendrecv.pl,
application-src/amzfs-snapshot.pl: Do minimal test in selfcheck if
a disk is not provided.
2009-02-18 Jean-Louis Martineau <martineau@zmanda.com>
patch by glowkrantz
* application-src/amzfs-sendrecv.pl: Use compression ratio for
compressed filesystem.
2009-02-18 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amdump.sh: Check if planner/driver are executable and
log error.
2009-02-17 Dustin J. Mitchell <dustin@zmanda.com>
* restore-src/amfetchdump.c: remove unintended debugging messages
2009-02-17 Jean-Louis Martineau <martineau@zmanda.com>
* changer-src/chg-manual.sh: make messages clearer
* perl/Amanda/Changer/compat.pm: use _run_tpchanger directly from
_manual_scan
* server-src/amcheckdump.pl: handle errors better
2009-02-17 Dustin J. Mitchell <dustin@zmanda.com>
* changer-src/chg-manual.sh: make messages clearer
* perl/Amanda/Changer/compat.pm: use _run_tpchanger directly from
_manual_scan
* server-src/amcheckdump.pl: handle errors better
2009-02-17 Jean-Louis Martineau <martineau@zmanda.com>
* recover-src/extract_list.c: Set all_level with level_t.
2009-02-17 Dustin J. Mitchell <dustin@zmanda.com>
* config/amanda/syshacks.m4: add Mac OS X Leopard on advice from
Jose Hales-Garcia <jose@stat.ucla.edu>
2009-02-12 Jean-Louis Martineau <martineau@zmanda.com>
* config/amanda/tape.m4: Define DEFAULT_TAPE_NON_BLOCKING_OPEN.
* device-src/tape-device.c: Use DEFAULT_TAPE_NON_BLOCKING_OPEN and
NONBLOCKING_OPEN property.
* device-src/tape-device.h (TapeDevice): Add nonblocking_open.
* man/xml-source/amanda-devices.7.xml: Document tape NONBLOCKING_OPEN
property.
* server-src/amdevcheck.pl: Call $device->configure(1).
2009-02-11 Dustin J. Mitchell <dustin@zmanda.com>
* changer-src/chg-rait.sh: get directory handling right (patch from
Jim.pennino on wiki.zmanda.com)
* changer-src/chg-glue.pl: produce a debug log, add do_clean, fix
do_eject
* perl/Amanda/Changer.pm: Add a new chg->eject method, to eject a
volume that's not currently reserved
* perl/Amanda/Changer/compat.pm: fix release(), don't load 'current'
after cleaning or ejecting
* installcheck/Amanda_Changer_compat.pl: updated tests
2009-02-11 Dustin J. Mitchell <dustin@zmanda.com>
* perl/Makefile.am: add a version number to libamglue
2009-02-10 Dustin J. Mitchell <dustin@zmanda.com>
* restore-src/restore.c: fix incorrect assertion
2009-02-10 Dustin J. Mitchell <dustin@zmanda.com>
* config/amanda/debugging.m4: fix --disable-syntax-checks
2009-02-09 Dustin J. Mitchell <dustin@zmanda.com>
* config/amanda/debugging.m4: add --disable-syntax-checks
* config/automake/scripts.am: disable them
* configure.in: call AMANDA_DISABLE_SYNTAX_CHECKS
2009-02-09 Dustin J. Mitchell <dustin@zmanda.com>
* man/xml-source/amanda.conf.5.xml: remove TODO
2009-02-07 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/event.c: use built-in child watch source on FreeBSD
2009-02-06 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/dumper.c: options is already unquoted.
* common-src/util.c: argument should not be quoted when added to argv.
2009-02-06 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Changer_compat.pl: remove debugging code
2009-02-06 Jean-Louis Martineau <martineau@zmanda.com>
patch by Yoshihiro Ishikawa
* recover-src/extract_list.c: Handle application-api.
2009-02-06 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Amanda_Changer_compat.pl: support 'eject'
* perl/Amanda/Changer.pm: change release/do_relase relationship
* perl/Amanda/Changer/compat.pm: same
* perl/Amanda/Changer/disk.pm: same
* perl/Amanda/Changer/single.pm: same
2009-02-04 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.h: Add ES_ES.
* common-src/conffile.c: Handle ES_ES in switch.
* server-src/amadmin.c: Handle ES_ES in switch.
* client-src/sendsize.c: Works with many multiple estimate method.
* server-src/planner.c: Works with many multiple estimate method.
2009-02-04 Jean-Louis Martineau <martineau@zmanda.com>
* application-src/amgtar.c, application-src/amgtar_perl.pl,
application-src/amsamba.pl, application-src/amstar.c,
application-src/amsuntar.pl,
application-src/amzfs-sendrecv.pl: Output a "CLIENT-ESTIMATE" line.
* client-src/client_util.c: Parse "CLIENT-ESTIMATE" line.
* client-src/client_util.h: New field to keep its value.
2009-02-04 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/amfeatures.c,
common-src/amfeatures.h: And fe_xml_level_server amfeature.
* common-src/amxml.c: parse <server> tag in level tag.
* server-src/planner.c: Send <server> tag,
Move estimate server calculation to its own function.
2009-02-04 Jean-Louis Martineau <martineau@zmanda.com>
* client-src/client_util.c, client-src/sendbackup-gnutar.c,
client-src/sendbackup.c, client-src/sendbackup-dump.c,
client-src/sendsize.c,
client-src/selfcheck.c, recover-src/extract_list.c,
common-src/amxml.c,
common-src/amxml.h: Change Change dle->level for dle->levellist,
each element is a level_t struct.
2009-02-04 Jean-Louis Martineau <martineau@zmanda.com>
* amplot/amplot.awk: Set term to x11.
2009-02-04 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/amfeatures.h: Add fe_xml_estimatelist feature.
* common-src/amfeatures.c: Add fe_xml_estimatelist feature.
* common-src/amxml.c: Parse multiple estimate value.
* common-src/amxml.h: Change estimate for estimatelist in dle_t.
* server-src/diskfile.h (xml_estimate): Protoype.
* server-src/diskfile.c (xml_estimate): New function.
* server-src/amcheck.c: Use xml_estimate.
* server-src/planner.c: Use xml_estimate.
* client-src/sendbackup.c, client-src/sendsize.c,
client-src/selfcheck.c: Use first estimate in estimatelist.
2009-02-02 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c: Correctly copy pp_scriptlist.
2009-02-02 Jean-Louis Martineau <martineau@zmanda.com>
* server-src/amstatus.pl: Remove a bogus line.
2009-01-30 Dustin J. Mitchell <dustin@zmanda.com>
* man/xml-source/amrmtape.8.xml: clarify meaning of --erase
2009-01-30 Jean-Louis Martineau <martineau@zmanda.com>
* recover-src/amrecover.c: Always print error.
* server-src/amindexd.c: read stderr of uncompress and sort process,
put the result in a GPtrArray, send the complete array to amrecover.
2009-01-30 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c: Typo.
2009-01-30 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c, common-src/conffile.h,
server-src/diskfile.h, server-src/amcheck.c,
server-src/planner.c, server-src/amadmin.c,
server-src/diskfile.c, perl/Amanda/Config.swg,
installcheck/Amanda_Config.pl: Use a list of estimate.
2009-01-30 Jean-Louis Martineau <martineau@zmanda.com>
* common-src/conffile.c, common-src/conffile.h,
server-src/amcheck.c, server-src/holding.c,
server-src/driver.c, perl/Amanda/Config.swg,
installcheck/Amanda_Config.pl: 'define' keyword is use only to define
an holding disk, you must use 'holdisgdisk' without 'define' if you
want to use it.
2009-01-29 Dustin J. Mitchell <dustin@zmanda.com>
* config/config.guess config/config.sub: new updates from FSF
2009-01-29 Benjamin Lewis <bhlewis@purdue.edu>
* autogen: fix quoting error
* config/amanda/dumpers.m4: use a hostname we're more confident
doesn't exist
2009-01-28 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/Installcheck/Config.pm perl/Amanda/Archive.swg
perl/Amanda/DB/Catalog.pm perl/Amanda/MainLoop.swg
perl/Amanda/Tapelist.swg perl/Amanda/Xfer.swg: fix POD typos
2009-01-28 Dustin J. Mitchell <dustin@zmanda.com>
* common-src/conffile.c: support "." as a config name, indicating
"this directory"
* changer-src/chg-lib.sh.in: use that support to run amdevcheck in
old-school changer shell scripts
* man/xml-source/amanda.8.xml: docs
* perl/Amanda/Config.swg: docs
2009-01-28 Nikolas Coukouma <atrus@zmanda.com>
* installcheck/Makefile.am: do not run client software checks --without-client
2009-01-28 Jean-Louis Martineau <martineau@zmanda.com>
* config/automake/scripts.am: Fix another get line numbers right when
syntax-checking perl scripts
2009-01-27 Nikolas Coukouma <atrus@zmanda.com>
* installcheck/Installcheck/Application.pm: make sure all data is read
* installcheck/amgtar.pl: check if GNU tar is present,
avoid using atime-preserve, make sure reported and actual size match
2009-01-27 Dustin J. Mitchell <dustin@zmanda.com>
* installcheck/amgtar.pl: fix typo
2009-01-27 Nikolas Coukouma <atrus@zmanda.com>