-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
1633 lines (1000 loc) · 45.6 KB
/
ChangeLog
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
2012-09-19 Dave Love <[email protected]>
* src/libnodeupdown/nodeupdown_backend_ganglia.c (_xml_parse_start):
Update XML parsing for newer Ganglias.
2012-06-26 Albert Chu <[email protected]>
* tagged whatsup-1-14-1
2012-06-05 Albert Chu <[email protected]>
* src/libcommon/conffile.c (conffile_errmsg): Fix
-Wformat-security warnings.
2012-05-08 Albert Chu <[email protected]>
* etc/whatsup-pingd: Add default start run levels.
2011-10-21 Albert Chu <[email protected]>
* Update copyright years globally.
2011-10-21 Albert Chu <[email protected]>
* src/libcommon/conffile.c (_parseline): Check errno for correct
usage of strto functions.
2011-07-12 Albert Chu <[email protected]>
* configure.ac: Change default install to vendorarch instead of
sitearch.
* whatsup.spec.in: Update for change appropriately.
2011-06-21 Albert Chu <[email protected]>
* Update for building on RHEL6. Add Makefile.in, configure,
config/, libltdl/, etc. for building straight out of the tree.
2011-03-14 Albert Chu <[email protected]>
* tagged whatsup-1-13-1
2011-03-10 Albert Chu <[email protected]>
* Support --with-perl-site-arch and --with-perl-vendor-arch
configure options to support install in Perl site or vendor arch
directories.
2011-03-07 Albert Chu <[email protected]>
* freeipmi.spec.in: Update for path change.
2011-03-07 Ruben Kerkhof <[email protected]>
* etc/whatsup-pingd: Fix typos.
* etc/Makefile.am: Fix paths.
2011-02-22 Albert Chu <[email protected]>
* tagged whatsup-1-12-1
2011-02-14 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_ganglia.c,
src/libnodeupdown/Makefile.am, configure.ac: Link to libexpat if
the library is available.
2011-01-19 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown.h: Support C++ linking.
2010-08-19 Albert Chu <[email protected]>
* whatsup.spec.in: Update for build on RHEL6.
2010-08-16 Albert Chu <[email protected]>
* etc/Makefile.am: Fix autoconf/automake corner case.
* src/whatsup/whatsup.c: Fix invalid call to open().
2010-07-07 Albert Chu <[email protected]>
* tagged whatsup-1-11-1
2010-06-29 Albert Chu <[email protected]>
* src/pingd/pingd_loop.c: Re-architect to use just 1 fd. Multiple
fds unnecessary for ICMP pings, b/c most kernels will send
responses to all fds.
* etc/pingd.conf, etc/nodeupdown.conf: New files.
* freeipmi.spec.in: Add pingd.conf and nodeupdown.conf files.
2010-06-28 Albert Chu <[email protected]>
* src/pingd/pingd_config.c (_usage): Fix typo.
* src/pingd/pingd_config.c (_cmdline_parse): Fix error message text.
* src/pingd/pingd_loop.c: Fix comments.
2010-06-22 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_clusterlist_hostsfile.c
(hostsfile_clusterlist_setup): If hostsfile not found, exit
cleanly.
* tagged whatsup-1-10-1
2010-06-21 Albert Chu <[email protected]>
* src/pingd/pingd_loop.c (_receive_ping): Remove left over debug
statement.
* src/pingd/pingd_loop.c (_fds_setup): Set SO_REUSEADDR on server
socket to support quick server restarts.
* config/ac_hostsfile.m4: Fix substitution bug.
* man/whatsup.1.in: Note in manpage that libnodeupdown
configuration may be necessary.
2010-02-01 Albert Chu <[email protected]>
* src/libcommon/conffile.h, src/libcommon/conffile.c: Support
config options w/o a limit.
* Update copyright globally.
2009-11-04 Albert Chu <[email protected]>
* src/Nodeupdown/Nodeupdown.pm.in: Fix comments, i.e. -> e.g.
2009-10-09 Albert Chu <[email protected]>
* whatsup.spec.in: Add appropriate build requires.
* tagged whatsup-1-9-2
2009-08-12 Albert Chu <[email protected]>
* src/Nodeupdown/Makefile.am: Revert some changes.
* src/Libnodeupdown/Makefile.am, whatsup.spec.in: Fix portability
issues.
2009-08-11 Albert Chu <[email protected]>
* src/Nodeupdown/Makefile.am: Fix portability bug.
* src/Libnodeupdown/Makefile.am: Fix portability bug.
* configure.ac: Deal with manpage portability.
2009-05-15 Albert Chu <[email protected]>
* Add comments for clarification.
2000-02-26 Albert Chu <[email protected]>
* NEWS, META: updated.
* tagged whatsup-1-9-1
2000-02-25 Albert Chu <[email protected]>
* config/ac_openib.m4,
src/libnodeupdown/nodeupdown_backend_openib.c: Support 2 or 1
option osm_mad_pool_init().
2000-02-19 Albert Chu <[email protected]>
* NEWS: updated.
* tagged whatsup-1-8-2
2009-02-18 Albert Chu <[email protected]>
* config/ac_perl_extensions.m4: New file.
* configure.ac, src/Libnodeupdown/Makefile.am,
src/Nodeupdown/Makefile.am: Support capability to not build perl
extensions libs.
2009-02-18 Albert Chu <[email protected]>
* whatsup.spec.in: Revert sles10 fix from 2008-10-28, issue is
something else in Suse.
2008-10-27 Mahmoud Hanafi <[email protected]>
* whatsup.spec.in: Fix sles10 build issue.
2008-07-11 Albert Chu <[email protected]>
* src/libcommon/hostlist.c: Update to newest lib.
2008-06-28 Albert Chu <[email protected]>
* NEWS: updated.
* tagged whatsup-1-8-1
2008-05-21 Albert Chu <[email protected]>
* src/libcommon/conffile.c: Fix compile warning.
2008-05-20 Albert Chu <[email protected]>
* src/libcommon/conffile.c: Support hex for OPTION_TYPE_INT. Do
not require count_ptr to each be different.
2008-03-28 Albert Chu <[email protected]>
* man/: Fix nroff syntax errors.
* update copyrights in a lot of places
2008-01-29 Albert Chu <[email protected]>
* src/libcommon/hostlist.h, src/libcommon/hostlist.c: Update to
new libs.
2008-01-29 Albert Chu <[email protected]>
* Minor bug fixes.
2007-10-18 Albert Chu <[email protected]>
* src/libcommon/debug.c: Revert copyright change b/c this file had
no changes.
2007-10-17 Albert Chu <[email protected]>
* DISCLAIMER.UC: Fix copyright years.
* whatsup.spec.in: Add DISCLAIMER.UC.
2007-10-16 Albert Chu <[email protected]>
* DISCLAIMER.UC: New file.
* DISCALIMER: Updated with new copyright.
* Fixed copyright and FSF address globally.
* config/Make-rpm.mk: Remove localism.
* Makefile.am: Remove use of Make-rpm.mk.
2007-09-13 Albert Chu <[email protected]>
* src/libnodeupdown: Add nodeupdown_last_up_time support.
* src/whatsup: Add -r support.
* man/: Update manpages appropriately.
* man/nodeupdown_last_up_time.3: New file.
* configure.ac: Update libnodeupdown version.
* whatsup.spec.in: Fix build system.
* Fix various compiler warnings.
* README, META: Updated for release.
* tagged whatsup-1-7-1
2007-09-12 Albert Chu <[email protected]>
* whatsup/src/whatsup/whatsup_options_cerebro_monitor.c: Fix
option usage typo.
2007-09-10 Albert Chu <[email protected]>
* Makefile.am: Add whatsup.spec to dist.
2007-09-05 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (_usage): Fix usage typo found by Py
Watson (watson30 at llnl dot gov).
* Fix FSF address throughout.
2007-04-02 Albert Chu <[email protected]>
* src/libcommon/conffile.h, src/libcommon/conffile.c
(conffile_line_number): New function.
2007-03-16 Albert Chu <[email protected]>
* man/whatsup.1.in: Fix typo of -l option to -e option.
2007-02-16 Albert Chu <[email protected]>
* man/nodeupdown.conf.5.in: Fix typo.
2007-02-14 Albert Chu <[email protected]>
* man/pingd.conf.5.in: Fix typo.
2007-02-13 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_pingd.c
(pingd_backend_get_updown_data): Fix comment typo.
2007-02-09 Albert Chu <[email protected]>
* whatsup.spec.in: Fix dependency typo.
2007-02-08 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown/nodeupdown_backend_module.h,
src/libnodeupdown/nodeupdown_backend_ganglia,c
src/libnodeupdown/nodeupdown_backend_cerebro.c,
src/libnodeupdown/nodeupdown_backend_pingd.c,
src/libnodeupdown/nodeupdown_backend_openib.c,
src/libnodupdown/nodeupdown.c,
src/libnodeupdown/nodeupdown_module.h,
src/libnodeupdown/nodeupdown_module.c: Support preferred
clusterlist module defined by backend module.
* src/libnodeupdown/nodeupdown_genders_util.c
(genders_util_setup): Add filename parameter.
* src/libnodeupdown/nodeupdown_clusterlist_genders.c
(genders_clusterlist_setup): Adjust for function change
appropriately.
2007-02-07 Albert Chu <[email protected]>
* src/Libnodeupdown/Libnodeupdown.pm.in: Fix dynamic loading issue
with perl extensions. Fix provided by Mark Grondona (grondona1 at
llnl dot gov).
* src/pingd: Add forgotten copyright headers.
2007-02-06 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (_usage): Fix typo found by Mark Grondona.
2006-12-20 Albert Chu <[email protected]>
* src/whatsup/whatsup_options_cerebro_monitor.c
(cerebro_monitor_options_monitor): Tweak output format.
* tagged whatsup-1-6-2
2006-12-20 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (_cmdline_parse): Fix parsing bug.
* tagged whatsup-1-6-1
2006-12-19 Albert Chu <[email protected]>
* whatsup.spec.in: Support cerebro monitor module rpm.
* configure.ac: Up libnodeupdown revision.
* NEWS: updated.
* man/whatsup.1.in, src/whatsup/whatsup_options_cerebro_monitor.c:
Change -z option to -M option.
2006-11-09 Albert Chu <[email protected]>
* Changes from branch new_cerebro_port_branch (tag
new_cerebro_port_base and new_cerebro_port_final)
* config/ac_cerebro.m4, configure.ac: Add checks for cerebro event
monitoring.
* src/whatsup/whatsup.c: Re-adjust code so options modules need to
implement all functions.
* src/whatsup/whatsup_options.h, src/whatsup/whatsup.c (main):
Support monitor option.
* src/whatsup/whatsup_options_cerebro_monitor.c: New file.
* src/whatsup/Makefile.am: Support new files.
* man/whatsup.1.in: Update appropriately.
2006-10-26 Albert Chu <[email protected]>
* src/whatsup/whatsup_options.h, src/whatsup/whatsup.c: Various
code cleanup.
* man/whatsup.1.in: Remove forgotten localism.
2006-10-25 Albert Chu <[email protected]>
* src/whatsup/whatsup.c: Fix return value issues with module
options calls.
* src/whatsup/whatsup.c (_load_options_module): Fix corner case
check.
2006-10-16 Albert Chu <[email protected]>
* src/whatsup/whatsup.c, man/whatsup.1.in: Re-adjust --monitor to
--log and --monitor-poll to --log-poll. Add --log-file option.
2006-10-15 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (_cmdline), src/whatsup/whatsup_options.h:
Support get_nodenames optional commandline argument.
2006-10-14 Albert Chu <[email protected]>
* src/whasup/whatsup.c: Added support for monitor mode.
* man/whatsup.1.in: Updated appropriately.
2006-09-01 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_connect_util.h,
src/libnodeupdown/nodeupdown_backend_connect_util.c: New files.
* src/libnodeupdown/nodeupdown_backend_ganglia.c,
src/libnodeupdown/nodeupdown_backend_pingd.c: Use new common
function.
* src/libnodeupdown/Makefile.am: Update for new build
appropriately.
2006-08-30 Albert Chu <[email protected]>
* config/ac_openib.m4: Modify to avoid addition of libs to LIBS.
* src/libnodeupdown/nodeupdown_backend_openib.c: Check for 'root'
in setup. Adjust debug messages with errnum errors appropriately.
* src/libnodeupdown/nodeupdown_backend_cerebro.c,
src/libnodeupdown/nodeupdown_backend_ganglia.c,
src/libnodeupdown/nodeupdown_backend_pingd.c,
src/libnodeupdown/nodeupdown_clusterlist_genders.c,
src/libnodeupdown/nodeupdown_clusterlist_genders_util.c,
src/libnodeupdown/nodeupdown_clusterlist_hostsfile.c: Add
debugging.
* whatsup.spec.in: Add in openib rpm subpackage.
2006-08-29 Ira Weiny <[email protected]>
Add OpenIB up/down support.
* config/ac_openib.m4,
src/libnodeupdown/nodeupdown_backend_openib: New files.
* README, configure.ac, man/libnodeupdown.3.in,
src/libnodeupdown/Makefile.am,
src/libnodeupdown/nodeupdown_module.c: Adjust appropriately for
new backend module.
2006-08-29 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown.h, src/libnodeupdown/nodeupdown.c,
src/libnodeupdown/nodeupdown_module.c, man/libnodeupdown.3.in,
man/nodeupdown_load_data.3: Change nodeupdown_load_data() reserved
parameter to module parameter for optionally specified backend
module.
* man/whatsup.1.in, src/whatsup/whatsup.c: Support new -m option.
* src/scripts: New directory.
* src/scripts/whatsdown: New file.
* configure.ac, src/Makefile.am: Adjust for new files.
* src/libnodeupdown/Makefile.am: Fix DESTDIR issue.
2006-08-25 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_module.c: Cleanup modules looping
annoyances.
2006-07-26 Albert Chu <[email protected]>
* config/ac_pingd_module_dir.m4,
config/ac_nodeupdown_module_dir.m4,
config/ac_whatsup_module_dir.m4: Revert changes to fix distcheck.
2006-07-17 Albert Chu <[email protected]>
Changes to make perl extensions build correctly on FC5.
* config/ac_perl_install_destdir.m4: Removed file.
* config/ac_perl_destdir.m4: New file.
* configure.ac: Adjust to use new macro.
* whatsup.spec.in: Adjust to use new configure option.
* src/Libnodeupdown/Makefile.am: Adjust makemaker flags
appropriately.
2006-07-11 Albert Chu <[email protected]>
* README, META: Updated for release.
* man/libnodeupdown.3.in, man/pingd.8.in: Minor improvements made.
* tagged whatsup-1-5-1
2006-07-10 Albert Chu <[email protected]>
* whatsup.spec.in, README: Cleanup for new pingd.
* man/libnodeupdown.3.in: Add pingd info.
* config/ac_hostsfile.m4: Fix typo.
Support --with-ganglia and --with-pingd autoconf options.
* config/ac_ganglia.m4, config/ac_pingd.m4: New files.
* whatsup.spec.in, configure.ac, src/libnodeupdown/Makefile.am,
man/Makefile.am, etc/Makefile.am: Adjust for new autoconf macros.
* src/pingd/pingd_config.c (_load_nodes), src/pingd/pingd_loop.c
(_nodes_setup): Fix compiler warnings.
2006-07-07 Albert Chu <[email protected]>
* configure.ac, config/, src/libcommon/, src/pingd/, man/, etc/,
src/libnodeupdown: Added initial implementation and support for a
pingd daemon.
2006-06-19 Albert Chu <[email protected]>
* src/libcommon/hostlist.c: Update to latest library.
2006-02-14 Albert Chu <[email protected]>
* src/Nodeupdown/Nodeupdown.pm.in: Fix syntax bug.
2006-02-08 Albert Chu <[email protected]>
* src/Libnodeupdown/Libnodeupdown.xs
(nodeupdown_get_up_nodes_list): Fix bug.
* whatsup.spec.in: Fix dir creation bugs.
2006-01-18 Albert Chu <[email protected]>
* Removed localisms.
* tagged whatsup-1-4-2
2005-10-31 Albert Chu <[email protected]>
* Updated README with some more information.
2005-09-16 Albert Chu <[email protected]>
* tagged whatsup-1-4-1
2005-08-18 Albert Chu <[email protected]>
* Renamed gendersllnl config module to chaos config module
globally.
2005-08-16 Albert Chu <[email protected]>
* whatsup.spec.in, META: Prepare for new release.
* tagged whatsup-1-4-0-pre6
2005-08-05 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_cerebro.c,
src/libnodeupdown/nodeupdown.c,
src/libnodeupdown/nodeupdown/nodeupdown_backend_module.h,
src/libnodeupdown/nodeupdown_devel.c,
src/libnodeupdown/nodeupdown_module.h,
src/libnodeupdown/nodeupdown_module.c: Remove support for backend
module flags.
* src/libnodeupdown/nodeupdown.c (_is_node): Fixed corner case.
* src/libnodeupdown/nodeupdown_backend_cerebro.c
(cerebro_backend_default_timeout_len): Let libcerebro or the
cerebro server pick the default timeout.
2005-08-01 Albert Chu <[email protected]>
* config/ac_hostsfile.m4: Fix typo.
2005-07-28 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_cerebro.c: Reworked cerebro
changes.
2005-07-18 Albert Chu <[email protected]>
* config/ac_hostsfile.m4, config/ac_nodeupdown-conf_file.m4: Cleaned up.
2005-07-07 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (_usage, _cmdline_parse),
man/whatsup.1.in: Rename --hostlist option to --hostrange.
* man/whatsup.1.in: Remove gmond references.
* whatsup.spec.in: Increase install requirement for cerebro.
* tagged whatsup-1-4-0-pre4
2005-07-05 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (_create_formats): Added assert check.
* src/whatsup/whatsup.c, man/whatsup.1.in: Change -V option to -v
option.
* src/whatsup/whatsup.c (_cmdline_parse): Fix port input check
bug.
2005-07-02 Albert Chu <[email protected]>
* libnodeupdown cleanup
2005-07-01 Albert Chu <[email protected]>
* Whatsup and options modules cleanup.
2005-06-28 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_config_gendersllnl.c
(gendersllnl_config_load_default): By default use management
network instead of cluster interconnect.
* src/libnodeupdown/nodeupdown_backend_cerebro.c,
src/libnodeupdown/nodeupdown.c,
src/libnodeupdown/nodeupdown/nodeupdown_backend_module.h,
src/libnodeupdown/nodeupdown_devel.c: Support backend module flag
to optionally not open/use the clusterlist module. This is for
performance reasons.
2005-06-21 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_cerebro.c
(cerebro_backend_get_updown_data): Fix typo.
2005-06-20 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_cerebro.c: Reworked for
Cerebro API changes.
* whatsup.spec.in: Increase install requirement for cerebro.
* Removed everything related to static compilation.
* tagged whatsup-1-4-0-pre3
2005-05-31 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_backend_cerebro.c: Reworked for new
cerebro nodelist API.
* whatsup.spec.in: Increase install requirement for cerebro.
* tagged whatsup-1-4-0-pre2
2005-05-17 Albert Chu <[email protected]>
* whatsup.spec.in: Update chaos build.
* Removed unused error codes. Renamed NODEUPDOWN_ERR_TIMEOUT to
NODEUPDOWN_ERR_CONNECT_TIMEOUT globally.
* tagged whatsup-1-4-0-pre1
2005-05-16 Albert Chu <[email protected]>
* Fix libdir path calculation.
2005-05-15 Albert Chu <[email protected]>
* Various documentation updates for cerebro.
* Adjustment for cerebro API fix.
2005-05-13 Albert Chu <[email protected]>
* Removed nodeupdown_add_up_nodes and nodeupdown_add_down_nodes
development functions globally. Re-worked Cerebro backend module
appropriately.
* src/Genders/Makefile.am: Cleanup and fix build.
* src/Genders/Makefile.PL: Removed file.
* configure.ac: Add search for pod2man.
2005-05-11 Albert Chu <[email protected]>
* src/libcommon/conffile.c (_setup): Fix access permission bug.
2005-05-10 Albert Chu <[email protected]>
* Added Cerebro backend module support.
* configure.ac: Updated library versions.
* man/nodeupdown_module.3: New manpage.
* man/Makefile.am: Update for new manpage appropriately.
* Various code and manpage cleanup.
2005-04-27 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_util.c
(nodeupdown_util_low_timeout_connect): Remove unnecessary code.
* Various bug fixes and code cleanup.
2005-04-22 Albert Chu <[email protected]>
* Added support for nodeupdown configuration modules. Re-worked
various libraries to add this support.
2005-04-19 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown.c (_read_conffile): Ignore older
options.
* src/libcommon/conffile.c (conffile_parse, _setup): Fix corner cases.
2005-04-07 Albert Chu <[email protected]>
* Completely re-worked to use dynamically or statically loadable
modules for clusterlists, whatsup options, and backend
technologies.
2005-03-21 Albert Chu <[email protected]>
* src/libcommon/conffile.c (conffile_parse): Remove compiler
warning.
2005-01-10 Albert Chu <[email protected]>
* src/libcommon/hostlist.h, src/libcommon/hostlist.c:
Updated libraries.
* src/Libnodeupdown/Makefile.am, src/Nodeupdown/Makefile.am: Cleanup.
* whatsup.spec.in: Fix a Perl Extensions packaging problem for
multilib systems.
* src/libgendersllnl/Makefile.am, configure.ac: Move versioning
info into configure.ac.
* configure.ac: Added Perl versioning.
* src/Libnodeupdown/Libnodeupdown.pm: Added versioning.
* src/Nodeupdown/Nodeupdown.pm: Renamed to Nodeupdown.pm.in and
added versioning.
2004-12-29 Albert Chu <[email protected]>
* Makefile.am: distcheck fix.
2004-12-18 Albert Chu <[email protected]>
* whatsup.spec.in, configure.ac, src/Libnodeupdown/Makefile.am,
src/Nodeupdown/Makefile.am: Fix make install corner case.
2004-12-14 Albert Chu <[email protected]>
* whatsup.spec.in, src/Nodeupdown/Makefile.am,
src/Libnodeupdown/Makefile.am: Fix 64bit build issue.
2004-11-17 Albert Chu <[email protected]>
* whatsup.spec.in: Added license. Built RPM name based on
rpmbuild options.
* README, configure.ac: If genders or gendersllnl isn't found,
default to hostsfile masterlist mechanism.
2004-11-13 Albert Chu <[email protected]>
* README, README.hostsfile_install, README.genders_install,
whatsup.spec.in: Updated descriptions and documentation.
2004-11-08 Albert Chu <[email protected]>
* whatsup.spec.in: Fix up description.
2004-10-28 Albert Chu <[email protected]>
* whatsup.spec.in: Fix for portability issues:
* config/Make-rpm.mk: Updated with portability fixes.
* Makefile.am: distcheck fixes
* configure.ac: Select default masterlist mechanism based on
libraries found.
2004-10-07 Albert Chu <[email protected]>
* configure.ac: Don't check for genders_index_nodes.
* src/libnodeupdown/nodeupdown_masterlist.c (_load_genders_data):
Removed call to genders_index_nodes. Removed tiny cluster check.
2004-09-10 Albert Chu <[email protected]>
* configure.ac: Check for genders_index_nodes and
genders_index_attrvals functions.
* src/libnodeupdown/nodeupdown_masterlist.c (_load_genders_data):
Index nodes and attrvals if appropriate.
2004-06-29 Albert Chu <[email protected]>
* src/libcommon/conffile.c (_parseline): Fixed argument parsing
bugs.
2004-06-21 Albert Chu <[email protected]>
* src/Libgnodeupdown/Makefile.am, src/Nodeupdown/Makefile.am,
src/Libnodeupdown/Makefile.PL: Distcheck fixes.
2004-06-08 Albert Chu <[email protected]>
* src/libnodeupdown/Makefile.am, src/Libnodeupdown/Makefile.am,
src/Nodeupdown/Makefile.am, src/whatsup/Makefile.am: Minor fixes
for distcheck.
2004-05-19 Albert Chu <[email protected]>
* Makefile.am, man/Makefile.am, src/libcommon/Makefile.am,
src/libexpact/Makefile.am, src/libnodeupdown/Makefile.am,
src/Libnodeupdown/Makefile.am, src/Nodeupdown/Makefile.am,
src/whatsup/Makefile.am: Fix dist issues.
* src/libcommon/Makefile.am, src/libnodeupdown/Makefile.am,
src/whatsup/Makefile.am: Cleanup.
2004-04-27 Albert Chu <[email protected]>
* whatsup.spec.in: Use %configure macro.
* Localize non-libnodeupdown library functions.
2004-03-17 Albert Chu <[email protected]>
* src/libcommon/conffile.h, src/libcommon/conffile.c: Changed
"enabled" and "disabled" to "enable" and "disable".
2004-03-09 Albert Chu <[email protected]>
* config/ac_debug.m4: New file.
* configure.ac: Added --enable-debug option.
2004-02-11 Albert Chu <[email protected]>
* src/libnodeupdown/Makefile.am: Compile with _REENTRANT.
* tagged whatsup-1-3-1
2004-01-15 Albert Chu <[email protected]>
* src/libnodeupdown/nodeupdown_masterlist.c (_readline): fix
corner case.
* src/libnodeupdown/nodeupdown.c: list_create errors are no longer
INTERNAL errors, they are OUTMEM errors.
2004-01-14 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (read_stdin, push_nodestring,
create_formats): New functions.
* src/whatsup/whatsup.c (cmdline_parse): Add '-' functionality and
use read_stdin and push_nodestring functions.
* src/whatsup/whatsup.c (main): Add support of exit value
depending on up vs. down success and use new _create_formats
function.
* man/whatsup.1: Updated for '-' option.
Significantly cleaned up whatsup code
* src/whatsup/whatsup.c (_err_init, _err_exit): New functions.
* src/whatsup/whatsup.c: Use new _err_exit function globally.
Output more appropriate messages on errors. Modify code style and
error output to fit GNU coding standards more closely. Renamed
numerous functions.
Cleaned up nodeupdown code
* src/libnodeupdown/nodeupdown.h.in,
src/libnodeupdown/nodeupdown.c,
src/libnodeupdown/nodeupdown_masterlist.c: Modify code style and
error output to fit GNU coding standards more closely. Updated
with new error codes and more detailed error messages.
* src/Libnodeupdown/Libnodeupdown.pm.in,
src/Libnodeupdown/Libnodeupdown.xs: Update appropriately for
changes.
2004-01-12 Albert Chu <[email protected]>
* src/libcommon/conffile.h, src/libcommon/conffile.c: Significant
rework.
* src/libnodeupdown/nodeupdown.c (_read_conffile): Fix for
conffile changes.
* src/libnodeupdown/nodeupdown.c (_cb_intval, _cb_string):
Removed functions.
* src/libnodeupdown/nodeupdown.c (_cb_gmond_hostnames): Fixed up
for conffile changes.
* man/nodeupdown.conf.5.in: Cleaned up.
* src/libnodeupdown/nodeupdown.c (_is_node, _xml_parse_start):
Fixed function call ordering bug.
2004-01-09 Albert Chu <[email protected]>
* src/libcommon/conffile.h, src/libcommon/conffile.c: New files
* README.dotconf, src/libdotconf/dotconf.h,
src/libdotconf/dotconf.c, src/libdotconf/readdir.h,
src/libdotconf/readdir.c: Removed files.
* configure.ac, src/Makefile.am, src/Libnodeupdown/Makefile.am,
src/Libnodeupdown/Makefile.PL, src/libnodeupdown/Makefile.am,
AUTHORS: Updated for dotconf removal.
* src/libnodeupdown/nodeupdown.c (_read_conffile): Parse via
conffile library instead of dotconf library.
* src/libnodeupdown/nodeupdown.c (_cb_intval, _cb_string): New
functions.
* src/libnodeupdown/nodeupdown.c (_cb_gmond_port,
_cb_timeout_len, _cb_gendersfile, _cb_hostsfile): Removed.
* src/libnodeupdown/nodeupdown.c (_cb_gmond_hostnames): Updated
for new API.
2003-12-31 Albert Chu <[email protected]>
* src/libnodeupdown/Makefile.am,
src/Libnodeupdown/Libnodeupdown.pm.in,
src/Nodeupdown/Nodeupdown.pm: Added consistent versioning.
2003-12-30 Albert Chu <[email protected]>
* src/whatsup/whatsup.c (cmdline_parse): All command line option
errors now output a little commandline option error message.
2003-12-29 Albert Chu <[email protected]>
* DISCLAIMER: New file.
* ipmipower.spec.in: Added DISCLAIMER.
* Added Copyright header with UCRL code to all source and
documentation.
2003-12-09 Albert Chu <[email protected]>
* man/whatsup.1.in: Cleaned up wording.
* man/nodeupdown.conf.5.in: Fixed wording and typos.
* src/libdotconf/dotconf.h: Added errors count to configfile_t.
* src/libnodeupdown/nodeupdown.c (_cb_error): New function.
* src/libnodeupdown/nodeupdown.c (_read_conffile): Added support
of new errors count variable and error out if any errors occurred
during file parsing.
* src/libnodeupdown/nodeupdown.c (_cb_gmond_hostnames): Error if
too many hostnames. Return (char *)"" instead of (char *)(-1).