ChangeLog 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202
  1. 2004-12-15 21:27 tonvoon
  2. * doc/developer-guidelines.sgml: Updated requirements for GNU tools
  3. 2004-12-15 21:01 tonvoon
  4. * m4/Makefile.am: Makefile for m4 files
  5. 2004-12-15 20:54 tonvoon
  6. * Makefile.am, configure.in, plugins/Makefile.am, tools/setup:
  7. Support for coreutils lib. Configure tests via m4 scripts from
  8. coreutils
  9. 2004-12-15 20:51 tonvoon
  10. * m4/: Makefile.am.in, afs.m4, codeset.m4, error.m4, exitfail.m4,
  11. extensions.m4, fstypename.m4, fsusage.m4, getopt.m4, gettext.m4,
  12. glibc21.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, inttypes.m4,
  13. inttypes_h.m4, isc-posix.m4, lcmessage.m4, lib-ld.m4,
  14. lib-link.m4, lib-prefix.m4, ls-mntd-fs.m4, malloc.m4,
  15. mountlist.m4, np_coreutils.m4, onceonly.m4, progtest.m4,
  16. realloc.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4,
  17. unlocked-io.m4, xalloc.m4: Moving m4 files from lib/
  18. 2004-12-15 20:47 tonvoon
  19. * lib/: Makefile.am, afs.m4, error.m4, exitfail.m4, fstypename.m4,
  20. fsusage.m4, full-read.c, full-write.c, full-write.h, getopt.m4,
  21. ls-mntd-fs.m4, onceonly.m4, safe-read.c, safe-read.h,
  22. safe-write.c, safe-write.h, unlocked-io.m4, xalloc.m4: Moving m4
  23. files into m4/. Added extra coreutils files required from
  24. autoconf tests. Updated Makefile.am to have nagiosplug lib and a
  25. separate coreutils lib
  26. 2004-12-15 00:10 opensides
  27. * po/: de.po, fr.po:
  28. fr.po work in progress still 88 to translate ;-)
  29. 2004-12-11 06:25 mattkent
  30. * plugins/check_tcp.c: Patch from Ollie Cook to define return code
  31. when expected value not received (#1082275). Also included
  32. another change from Ollie Cook to do stricter matching of
  33. expected values from the beginning of the line. When a user
  34. defines an expected string this is changed to the old style
  35. strstr matching.
  36. 2004-12-10 21:18 tonvoon
  37. * plugins/check_ldap.c: Fixed compile warning
  38. 2004-12-10 06:10 mattkent
  39. * plugins/Makefile.am: Compile broken - fixing link flags.
  40. 2004-12-10 05:57 mattkent
  41. * plugins/check_dns.c: Error catching improvements from Ollie Cook
  42. 2004-12-10 05:54 mattkent
  43. * plugins/check_pgsql.c: Fixing broken compile
  44. 2004-12-10 05:39 mattkent
  45. * AUTHORS: More contributers
  46. 2004-12-10 00:54 stanleyhopcroft
  47. * plugins/Makefile.am: Changes to link flags for check_dhcp.c
  48. 2004-12-10 00:52 stanleyhopcroft
  49. * plugins/check_dhcp.c: Extensive changes to get MAC address from
  50. Solaris via DLPI
  51. 2004-12-10 00:20 tonvoon
  52. * plugins/: check_dns.c, check_procs.c: Reverting back ngettext
  53. calls
  54. 2004-12-10 00:13 tonvoon
  55. * plugins/common.h: Fix includes for gettext
  56. 2004-12-09 22:33 tonvoon
  57. * configure.in: Include $libsuff for systems that define this
  58. (based on advice from Daniel Stenberg)
  59. 2004-12-08 23:14 tonvoon
  60. * configure.in: Removed redundant check and make export
  61. LD_LIBRARY_PATH more sh friendly
  62. 2004-12-08 00:36 opensides
  63. * configure.in, plugins/Makefile.am, plugins/check_by_ssh.c,
  64. plugins/check_game.c, plugins/check_http.c,
  65. plugins/check_ide_smart.c, plugins/check_ldap.c,
  66. plugins/check_snmp.c, plugins/check_tcp.c:
  67. patch 1028033
  68. minor internationalization fixes
  69. 2004-12-08 00:22 tonvoon
  70. * configure.in: Fixed output info for openssl and LD_LIBRARY_PATH
  71. for subsequent compiles (otherwise get ld.so.1: ./conftest:
  72. fatal: libssl.so.0.9.7: open failed)
  73. 2004-12-07 06:51 tonvoon
  74. * configure.in, plugins/Makefile.am: Better SSL checking (inspired
  75. by curl 7.12.2's configure.ac)
  76. 2004-12-07 03:13 mattkent
  77. * plugins-scripts/check_ifoperstatus.pl: Option to check for admin
  78. down (#1012191) from Raúl Pedroche.
  79. 2004-12-07 02:45 stanleyhopcroft
  80. * plugins/Makefile.am: Correct dependencies for check_dhcp.c.
  81. 2004-12-07 02:31 stanleyhopcroft
  82. * plugins/: Makefile.am, check_dhcp.c: New plugin: check_dhcp.c.
  83. Attempt to port to non Linux platform.
  84. 2004-12-06 18:49 opensides
  85. * po/fr.po:
  86. new version of fr.po
  87. 2004-12-05 22:07 mattkent
  88. * plugins/check_snmp.c: Fix for -s string matching (#756567, Tony
  89. Missana)
  90. 2004-12-05 12:59 opensides
  91. * plugins/check_nt.c, po/fr.po, po/nagios-plugins.pot:
  92. cleaned fr.po nagios-plugins.pot
  93. 2004-12-05 00:54 opensides
  94. * plugins/: check_http.c, check_icmp.c, check_nwstat.c,
  95. check_ping.c, check_smtp.c, check_swap.c, utils.h:
  96. fix patch 998291 fix patch 1078934 expect check_ssh fix and
  97. check_nt perfdata should stay on one word like in nagios
  98. 2004-12-04 12:34 opensides
  99. * po/nagios-plugins.pot:
  100. new version of pot file
  101. 2004-12-04 12:31 opensides
  102. * plugins/check_by_ssh.c, plugins/check_dns.c, po/POTFILES.in:
  103. various internationalization fixes
  104. 2004-12-04 12:12 opensides
  105. * plugins/Makefile.am, plugins/check_by_ssh.c, plugins/check_dig.c,
  106. plugins/check_http.c, plugins/check_ide-smart.c,
  107. plugins/check_ide_smart.c, plugins/check_mrtg.c,
  108. plugins/check_nt.c, plugins/check_nwstat.c,
  109. plugins/check_overcr.c, plugins/check_real.c,
  110. plugins/check_smtp.c, plugins/check_swap.c, plugins/check_tcp.c,
  111. plugins/check_time.c, plugins/check_udp.c, po/POTFILES.in:
  112. internationalization fixes bugfixes
  113. 2004-12-04 10:57 opensides
  114. * plugins/: check_dns.c, check_hpjd.c:
  115. check_dns needs a space between 'time' and the hostname
  116. check_hpjd needs a parenthesis removed in print_usage()
  117. 2004-12-04 00:23 opensides
  118. * plugins/check_swap.c:
  119. Bug Fix [ 1024735 ] check_swap providing inaccurate swap
  120. information on Sol6
  121. 2004-12-03 23:55 opensides
  122. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  123. check_fping.c, check_game.c, check_hpjd.c, check_http.c,
  124. check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
  125. check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
  126. check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
  127. check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
  128. check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
  129. check_udp.c, check_ups.c, check_users.c, negate.c:
  130. reverting my changes from !=TRUE to == ERROR, that's not good ;-(
  131. sorry
  132. 2004-12-03 23:23 opensides
  133. * plugins/check_tcp.c, po/de.po, po/fr.po, po/nagios-plugins.pot:
  134. check_tcp parenthesis bug, header fix for po files
  135. 2004-12-03 23:01 opensides
  136. * plugins/: check_dig.c, check_disk.c, check_dns.c, check_dummy.c,
  137. check_fping.c, check_game.c, check_hpjd.c, check_http.c,
  138. check_ide-smart.c, check_ldap.c, check_mrtg.c, check_mrtgtraf.c,
  139. check_nagios.c, check_nt.c, check_nwstat.c, check_overcr.c,
  140. check_pgsql.c, check_procs.c, check_radius.c, check_real.c,
  141. check_smtp.c, check_snmp.c, check_swap.c, check_tcp.c,
  142. check_time.c, check_udp.c, check_ups.c:
  143. print_help and print_usage() cleanup
  144. other misc cleanups
  145. 2004-12-03 21:56 stanleyhopcroft
  146. * plugins/check_tcp.c: 1041571: -D option processing corrected
  147. (Eric Chen). Changed process_arguments() to return TRUE. Dont
  148. know why this was necessary.
  149. 2004-12-03 20:28 opensides
  150. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  151. check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
  152. check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
  153. check_mrtg.c, check_mrtgtraf.c, check_mysql.c, check_nagios.c,
  154. check_nt.c, check_nwstat.c, check_overcr.c, check_pgsql.c,
  155. check_ping.c, check_procs.c, check_radius.c, check_real.c,
  156. check_smtp.c, check_snmp.c, check_ssh.c, check_swap.c,
  157. check_tcp.c, check_time.c, check_udp.c, check_ups.c,
  158. check_users.c, negate.c, urlize.c: remove UT_HLP_VRS from
  159. print_usage this was not a good idea ;-)
  160. 2004-12-03 19:20 opensides
  161. * plugins/utils.c:
  162. removing support fonction removing warranty from print_revision
  163. 2004-12-03 17:48 opensides
  164. * ROADMAP, package.def, plugins/negate.c, plugins/utils.h:
  165. some minor fixes
  166. 2004-12-03 17:15 opensides
  167. * plugins/: check_load.c, check_ssh.c:
  168. correcting parenthesis error
  169. 2004-12-03 16:56 opensides
  170. * AUTHORS, plugins/check_load.c, plugins/check_pgsql.c,
  171. plugins/check_ping.c, plugins/check_procs.c,
  172. plugins/check_radius.c, plugins/check_real.c,
  173. plugins/check_smtp.c, plugins/check_snmp.c, plugins/check_ssh.c,
  174. plugins/check_swap.c, plugins/check_tcp.c, plugins/check_time.c,
  175. plugins/check_udp.c, plugins/check_ups.c, plugins/check_users.c,
  176. plugins/urlize.c:
  177. fixes for internationalization
  178. 2004-12-03 11:45 opensides
  179. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  180. check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
  181. check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
  182. check_mrtg.c, check_mrtgtraf.c, check_mysql.c, check_nagios.c,
  183. check_nt.c, check_nwstat.c:
  184. internationalization fixes and help fixes
  185. 2004-12-03 09:19 opensides
  186. * plugins/check_by_ssh.c, plugins/check_dig.c,
  187. plugins/check_http.c, plugins/check_nwstat.c,
  188. plugins/check_pgsql.c, plugins/check_ping.c, plugins/check_udp.c,
  189. po/.cvsignore:
  190. Localization fixes
  191. 2004-12-03 08:45 opensides
  192. * plugins/: check_ide-smart.c, check_pgsql.c:
  193. correcting copyright and remaning int result = STATE_UNKNOWN;
  194. 2004-12-03 04:37 mattkent
  195. * plugins/check_nagios.c: Affected by elapsed time patch.
  196. 2004-12-03 04:16 mattkent
  197. * AUTHORS: Another contributer.
  198. 2004-12-03 04:10 mattkent
  199. * configure.in, plugins/check_procs.c: Patch from Russell Miller
  200. which adds elapsed time as a metric. Only for linux so far.
  201. (991359)
  202. 2004-12-03 02:21 mattkent
  203. * plugins/check_ldap.c: Fix typo breaking compile.
  204. 2004-12-03 00:55 opensides
  205. * plugins/: check_by_ssh.c, check_dig.c, check_dns.c,
  206. check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
  207. check_ide-smart.c, check_ldap.c, check_load.c, check_mrtg.c,
  208. check_mrtgtraf.c, check_mysql.c, check_nagios.c, check_nt.c,
  209. check_nwstat.c, check_overcr.c, check_pgsql.c, check_ping.c,
  210. check_procs.c, check_radius.c, check_real.c, check_smtp.c,
  211. check_snmp.c, check_ssh.c, check_swap.c, check_tcp.c,
  212. check_time.c, check_udp.c, check_ups.c, check_users.c, negate.c,
  213. urlize.c:
  214. bump copyright year initialize result to STATE_UNKNOW in place of
  215. STATE_OK
  216. 2004-12-02 21:23 opensides
  217. * plugins/: check_dns.c, check_ldap.c, check_procs.c:
  218. --disable-nls throws an error on check_dns, check_procs and
  219. check_ldap without this patch.
  220. 2004-12-02 21:03 stanleyhopcroft
  221. * plugins/check_tcp.c: Tracker 1041571: appended :D to
  222. getopt_long() args (for cert expiry check). Eric Chen.
  223. 2004-12-02 16:51 opensides
  224. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  225. check_fping.c, check_game.c, check_hpjd.c, check_http.c,
  226. check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
  227. check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
  228. check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
  229. check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
  230. check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
  231. check_udp.c, check_ups.c, check_users.c, negate.c, popen.c,
  232. utils.c:
  233. More internationalization work new usage4 function to permit
  234. localisation of think like check_ssh: xxxxx
  235. 2004-12-02 14:54 opensides
  236. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  237. check_fping.c, check_game.c, check_hpjd.c, check_ldap.c,
  238. check_load.c, check_mrtg.c, check_mrtgtraf.c, check_mysql.c,
  239. check_nagios.c, check_nt.c, check_nwstat.c, check_overcr.c,
  240. check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
  241. check_real.c, check_smtp.c, check_snmp.c, check_ssh.c,
  242. check_swap.c, check_tcp.c, check_time.c, check_udp.c,
  243. check_ups.c, check_users.c, negate.c:
  244. return of process_arguments() is TRUE not OK !
  245. 2004-12-02 14:35 opensides
  246. * plugins/check_http.c: return of process_arguments() is TRUE not
  247. OK !
  248. 2004-12-02 08:45 stanleyhopcroft
  249. * plugins/Makefile.am: Add check_icmp plugin
  250. 2004-12-02 08:44 stanleyhopcroft
  251. * plugins/check_icmp.c: check_icmp plugin from A Ericsson
  252. 2004-12-02 08:44 stanleyhopcroft
  253. * plugins/linux.h: For check_icmp plugin from A Ericsson
  254. 2004-12-02 04:48 mattkent
  255. * command.cfg.in: Fix typo.
  256. 2004-12-02 04:36 mattkent
  257. * AUTHORS, REQUIREMENTS, command.cfg.in, plugins/check_ups.c: Patch
  258. from Arnaud Quette to bring support to NUT 2.0 plus couple
  259. improvements and fixes (1038413 which includes 1032009, 815785).
  260. 2004-12-02 01:11 opensides
  261. * plugins/: check_dns.c, check_game.c, check_http.c,
  262. check_ide-smart.c, check_load.c, check_mrtgtraf.c, check_mysql.c,
  263. check_nagios.c, check_nt.c, check_nwstat.c, check_overcr.c,
  264. check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
  265. check_real.c, check_snmp.c, check_ssh.c, check_tcp.c,
  266. check_time.c, check_udp.c, check_ups.c, negate.c, popen.c:
  267. changed Error: by CRITICAL - more localization fixes
  268. 2004-12-02 00:30 opensides
  269. * contrib/check_rbl.c:
  270. adapted for localization
  271. 2004-12-01 23:54 opensides
  272. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  273. check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
  274. check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
  275. check_mrtg.c, check_mrtgtraf.c, check_mysql.c, check_nagios.c,
  276. check_nt.c, check_nwstat.c, check_overcr.c, check_pgsql.c,
  277. check_ping.c, check_procs.c, check_radius.c, check_real.c,
  278. check_smtp.c, check_snmp.c, check_ssh.c, check_swap.c,
  279. check_tcp.c, check_time.c, check_udp.c, check_ups.c,
  280. check_users.c, common.h, getaddrinfo.c, getaddrinfo.h,
  281. gethostbyname.c, gethostbyname.h, negate.c, netutils.c,
  282. netutils.h, popen.c, urlize.c, utils.c, utils.h:
  283. standardize localization string standardize unknow arguments
  284. 2004-12-01 22:02 tonvoon
  285. * doc/RELEASING: Notes on releasing
  286. 2004-12-01 21:55 tonvoon
  287. * configure.in: Next version number
  288. 2004-12-01 21:01 tonvoon
  289. * ChangeLog: Updated for r1_4_0-alpha2
  290. 2004-12-01 20:43 tonvoon
  291. * tools/devmode: eval not working - instructions now in comments
  292. 2004-12-01 20:09 tonvoon
  293. * plugins-scripts/check_oracle.sh: Fixed pmon process checking from
  294. a change I made earlier
  295. 2004-12-01 19:33 opensides
  296. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  297. check_fping.c, check_ssh.c:
  298. first pass at standardization of messages for the localization
  299. 2004-12-01 08:41 stanleyhopcroft
  300. * configure.in: Bryan Loniewski contributed check_jabber plugin
  301. (SSL/check_tcp); Eric Chen check_nntps plugin + SSL certficate
  302. expiry check [added -D option to check_tcp]
  303. 2004-12-01 08:28 stanleyhopcroft
  304. * plugins/netutils.c: 1075725: patch to my_connect() to deal with
  305. SEGV if connect fails
  306. 2004-12-01 08:26 stanleyhopcroft
  307. * plugins/check_tcp.c: 1041571 & 664615: check_tcp with cert check
  308. + nntps, simap, jabber
  309. 2004-12-01 03:50 mattkent
  310. * contrib/check_nmap.py: Small fix from David Rippel (996800) for
  311. newer versions of nmap
  312. 2004-12-01 03:26 mattkent
  313. * plugins-scripts/check_oracle.sh: Perf data and other improvements
  314. by Florian Gleixner (1027787)
  315. 2004-11-30 07:40 opensides
  316. * po/fr.po:
  317. more french translations
  318. 2004-11-30 00:25 tonvoon
  319. * plugins/check_ide-smart.c: Capitalized some error messages
  320. 2004-11-30 00:24 tonvoon
  321. * plugins/urlize.c: Updated output to UNKNOWN
  322. 2004-11-30 00:21 opensides
  323. * po/fr.po:
  324. translating fr.po new part
  325. 2004-11-29 23:52 tonvoon
  326. * lib/: Makefile.am, exitfail.m4, getopt.m4: Extra files required
  327. from coreutils
  328. 2004-11-29 23:46 tonvoon
  329. * SUPPORT: Cleanup and statement re: contrib plugins
  330. 2004-11-29 22:42 tonvoon
  331. * configure.in: Patches for configure on *BSD (Julien Touche)
  332. 2004-11-29 05:07 stanleyhopcroft
  333. * contrib/: README.TXT, rblcheck-dns, rblcheck-web,
  334. tarballs/check_icmp-0.8.tar.gz: [no log message]
  335. 2004-11-29 04:49 mattkent
  336. * contrib/check_linux_raid.pl: Better error checking (820806)
  337. 2004-11-29 00:56 opensides
  338. * po/fr.po:
  339. second version of french .po still 300 ;-) to translate
  340. 2004-11-28 22:57 opensides
  341. * po/fr.po:
  342. first new translation of fr.po
  343. 2004-11-27 21:00 mattkent
  344. * plugins/check_ssh.c: Add remote version check (1030269, Daniel
  345. Gullin)
  346. 2004-11-26 08:54 stanleyhopcroft
  347. * AUTHORS: New plugin/bugfix: tracker 1070929. check_hpjdres
  348. 2004-11-25 05:09 mattkent
  349. * plugins/check_disk.c: From old test harness code, make
  350. ./check_disk -w 0 -c 0 / valid parameters again
  351. 2004-11-25 05:06 mattkent
  352. * test.pl.in, plugins/t/check_dns.t, plugins/t/check_http.t,
  353. plugins/t/check_load.t, plugins/t/check_mysql.t: Updating test
  354. harness
  355. 2004-11-25 04:49 stanleyhopcroft
  356. * contrib/README.TXT: Removed reference to non existent tar balls
  357. (Hopcroft plugins)
  358. 2004-11-25 04:46 stanleyhopcroft
  359. * contrib/check_wins.pl: Non functional tidy ups to check_wins
  360. 2004-11-25 04:30 stanleyhopcroft
  361. * contrib/check_hw.sh: Added /contrib/check_hw.sh by Rok Debevc
  362. 2004-11-25 04:28 stanleyhopcroft
  363. * contrib/check_sybase: Added /contrib/check_sybase by Simon
  364. Bellwood
  365. 2004-11-25 03:01 stanleyhopcroft
  366. * contrib/check_hprsc.pl: update check_hprsc.pl for Net-SNMP
  367. versions >=4
  368. 2004-11-24 21:34 tonvoon
  369. * tools/sfsnapshot: Removing build directory after creating
  370. distribution
  371. 2004-11-24 21:19 tonvoon
  372. * doc/makefile: Added clean
  373. 2004-11-24 21:01 tonvoon
  374. * configure.in: Fix snapshot build on SF
  375. 2004-11-24 06:36 stanleyhopcroft
  376. * plugins/check_hpjd.c: add -OQa to command_line in check_hpjd.c.
  377. Correct nagiosplug-Bugs-889948, 846329
  378. 2004-11-24 04:35 mattkent
  379. * plugins/check_nwstat.c: Attempting to fix a reported segfault
  380. (1055054)
  381. 2004-11-24 04:25 mattkent
  382. * plugins/check_http.c: Added support for sending port in host
  383. header (913633)
  384. 2004-11-24 00:46 tonvoon
  385. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  386. check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
  387. check_http.c, check_ldap.c, check_load.c, check_mrtg.c,
  388. check_mrtgtraf.c, check_mysql.c, check_nwstat.c, check_overcr.c,
  389. check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
  390. check_real.c, check_smtp.c, check_snmp.c, check_ssh.c,
  391. check_tcp.c, check_time.c, check_udp.c, check_ups.c,
  392. check_users.c, negate.c, urlize.c: Making messages more
  393. consistent
  394. 2004-11-23 23:53 tonvoon
  395. * plugins/: check_hpjd.c, check_mrtg.c, check_mrtgtraf.c,
  396. check_mysql.c, check_real.c, check_smtp.c, check_swap.c,
  397. check_by_ssh.c, check_dns.c, check_time.c: Standardising
  398. translation texts
  399. 2004-11-23 23:35 tonvoon
  400. * doc/developer-guidelines.sgml: Guidelines on translated text
  401. (Yves Mettier, Simon Bellwood, Andreas Ericsson)
  402. 2004-11-23 22:49 tonvoon
  403. * doc/developer-guidelines.sgml: Adding notes on developer and
  404. translator access in SF
  405. 2004-11-23 06:06 mattkent
  406. * AUTHORS: More contributers.
  407. 2004-11-23 05:49 mattkent
  408. * plugins/check_disk.c: Fix integer warning and critical options.
  409. Take values from current unit instead of always KB.
  410. 2004-11-23 00:06 stanleyhopcroft
  411. * doc/developer-guidelines.sgml: trivial changes to Perl plugin
  412. section.
  413. 2004-11-22 22:44 tonvoon
  414. * AUTHORS: More contributors
  415. 2004-11-22 22:30 tonvoon
  416. * plugins/check_nt.c: Fixed some messages that should not be
  417. translated (Benoit Mortier)
  418. 2004-11-22 20:35 tonvoon
  419. * lib/getloadavg.m4: Not required - autoconf has own macros
  420. 2004-11-21 05:24 mattkent
  421. * plugins/check_mysql.c: Patch from Nathan Shafer to add
  422. replication slave check (1006777)
  423. 2004-11-20 22:56 mattkent
  424. * AUTHORS: Oops, forgot one.
  425. 2004-11-20 22:46 mattkent
  426. * AUTHORS: More contributers.
  427. 2004-11-20 22:43 mattkent
  428. * contrib/check_linux_raid.pl: Fix always reading status from the
  429. last line (1045506)
  430. 2004-11-20 22:28 mattkent
  431. * plugins/check_ping.c: New output format reported by pumuckel1980
  432. (946857)
  433. 2004-11-20 21:36 mattkent
  434. * plugins/check_http.c: Bit of cleanup, fix verbose output.
  435. 2004-11-20 07:04 tonvoon
  436. * configure.in: Fixed va_copy problem on AIX by copying samba's
  437. configure.in
  438. 2004-11-19 15:58 tonvoon
  439. * CODING: Added perl coding guidelines, from Programming Perl book
  440. (Andreas Ericsson)
  441. 2004-11-19 14:28 tonvoon
  442. * lib/getloadavg.m4: I think getloadavg.m4 is no longer required
  443. (as autoconf has built-in function)
  444. 2004-11-19 14:24 tonvoon
  445. * lib/Makefile.am: Removed getloadavg.m4 (built-in function in
  446. autoconf) and added cloexec.[hc] for getloadavg.c
  447. 2004-11-19 14:22 tonvoon
  448. * lib/: cloexec.h, cloexec.c: Files required for getloadavg.c
  449. 2004-11-19 03:59 mattkent
  450. * plugins-scripts/check_ntp.pl: Fix incorrectly labelled units in
  451. output (1025905, Jason Martin)
  452. 2004-11-19 03:44 mattkent
  453. * plugins/check_procs.c: Enabling timeout flag (1010097, Jason
  454. Martin)
  455. 2004-11-19 02:53 mattkent
  456. * plugins/check_http.c: Make -L notice ssl use to output a proper
  457. href (1035234, Abid Rasheed)
  458. 2004-11-19 02:39 mattkent
  459. * plugins/check_smtp.c: Change unit from 'us' to 's' to match other
  460. core plugins for simplicity.
  461. 2004-11-19 00:21 tonvoon
  462. * AUTHORS: - More great contributors...
  463. 2004-11-19 00:12 tonvoon
  464. * plugins/check_http.c: Options for User Agent string and extra
  465. headers (Ibere Tizio)
  466. 2004-11-18 22:48 tonvoon
  467. * configure.in: Remove unnecessary CPPFLAGS for openssl (Lutz
  468. Behnke - 686476)
  469. 2004-11-18 22:42 tonvoon
  470. * plugins/check_tcp.c: Enhance SSL initialization problems (Phil
  471. Dibowitz - 1055120)
  472. 2004-11-18 05:36 mattkent
  473. * plugins/check_smtp.c: Go critical on no route to host instead of
  474. warning (934025)
  475. 2004-11-18 00:27 tonvoon
  476. * tools/setup: Use copy of tools for consistency if building on
  477. different platforms from shared source
  478. 2004-11-17 23:35 tonvoon
  479. * plugins/check_tcp.c: Ignore output from tcp port (949070 -
  480. Jan-Piet Mens)
  481. 2004-11-17 23:22 tonvoon
  482. * plugins/check_http.c: --no-body and --max-age options (949521 -
  483. Jamie Zawinski)
  484. 2004-11-17 22:19 tonvoon
  485. * doc/developer-guidelines.sgml: Added section on using
  486. Sourceforge, mainly for administrators
  487. 2004-11-12 00:51 tonvoon
  488. * tools/update_coreutils: Tool to pull newer coreutil libs into
  489. nagiosplug's lib directory
  490. 2004-11-12 00:49 tonvoon
  491. * lib/Makefile.am, lib/error.c, lib/error.h, lib/error.m4,
  492. lib/exit.h, lib/exitfail.c, lib/exitfail.h, lib/fsusage.c,
  493. lib/fsusage.h, lib/fsusage.m4, lib/full-read.h, lib/getloadavg.c,
  494. lib/getopt.c, lib/getopt.h, lib/getopt1.c, lib/gettext.h,
  495. lib/ls-mntd-fs.m4, lib/malloc.c, lib/mountlist.c,
  496. lib/mountlist.h, lib/onceonly.m4, lib/realloc.c, lib/snprintf.c,
  497. lib/strtod.c, lib/unlocked-io.h, lib/unlocked-io.m4,
  498. lib/xalloc.h, lib/xalloc.m4, lib/xmalloc.c, lib/xstrdup.c,
  499. plugins/check_disk.c, po/de.po, po/fr.po: Update to using
  500. coreutils 5.2.1 libraries and snprintf.c from samba 3.0.8
  501. 2004-09-07 21:27 tonvoon
  502. * doc/developer-guidelines.sgml: Clarity based on comments by Ben
  503. Clewett
  504. 2004-08-23 22:59 tonvoon
  505. * AUTHORS: For patch to check_nt
  506. 2004-08-23 22:58 tonvoon
  507. * plugins/check_nt.c: Restore divisor for memory size reported by
  508. Windows. Also, implements warning and critical levels for
  509. performance counters. (Paulo Afonso Graner Fessel)
  510. 2004-08-23 22:18 tonvoon
  511. * configure.in, plugins/check_swap.c, plugins/common.h: Using
  512. swapctl for Solaris, Tru64 and *BSD (Sean Finney)
  513. 2004-08-19 20:05 tonvoon
  514. * configure.in, plugins/check_swap.c, plugins/common.h: Patch for
  515. tru64 using swapctl calls (Sean Finney)
  516. 2004-08-18 22:32 tonvoon
  517. * AUTHORS: Another day's work...
  518. 2004-08-18 22:25 tonvoon
  519. * plugins/check_dig.c: Checks different record types and checks
  520. against an expected address (Bill Kunkel)
  521. 2004-08-18 21:36 tonvoon
  522. * configure.in: Support for check_swap on NetBSD/OpenBSD (Sean
  523. Finney)
  524. 2004-08-18 21:25 tonvoon
  525. * plugins-scripts/check_oracle.sh: More specific test for sid (Paul
  526. Allen)
  527. 2004-08-18 21:21 tonvoon
  528. * plugins/check_disk.c: Fixed perfdata so that shows amount used
  529. (Garry Cook)
  530. 2004-08-18 20:51 tonvoon
  531. * plugins-scripts/check_ifstatus.pl: Perfdata corrected (Garry
  532. Cook)
  533. 2004-08-18 20:46 tonvoon
  534. * plugins-scripts/check_oracle.sh: Fix for similar dataabase sids
  535. (Carole Verdon)
  536. 2004-08-18 20:41 tonvoon
  537. * AUTHORS: Gary Cook for perfdata for check_nt
  538. 2004-08-18 20:40 tonvoon
  539. * plugins/check_nt.c: Perfdata added (Gary Cook)
  540. 2004-06-26 17:39 tonvoon
  541. * tools/sfsnapshot: Change of compile server and cleanups
  542. 2004-06-26 06:13 tonvoon
  543. * tools/sfsnapshot: Remove need to alter configure.in. Using
  544. different compile farms for SF to do the compiling
  545. 2004-05-24 15:22 tonvoon
  546. * AUTHORS: Ben Clewett
  547. 2004-05-24 15:21 tonvoon
  548. * lib/Makefile.am: Missed getloadavg.c (Ben Clewett)
  549. 2004-05-20 07:09 egalstad
  550. * contrib/check_dhcp.c: DHCP bug fix
  551. 2004-05-10 11:25 tonvoon
  552. * configure.in: Set EXTRAS with check_swap if ac_cv_have_swap is
  553. set
  554. 2004-04-30 12:12 tonvoon
  555. * configure.in: ps -el for HP-UX
  556. 2004-04-29 16:08 tonvoon
  557. * configure.in: Bug in ps -el for AIX 4.1
  558. 2004-04-29 12:13 tonvoon
  559. * AUTHORS: Sven for HP-UX requirements
  560. 2004-04-29 12:12 tonvoon
  561. * REQUIREMENTS: HP-UX requirements (Sven Schaffranneck)
  562. 2004-04-19 14:13 sghosh
  563. * contrib/check_nagios_db_pg.pl, AUTHORS: Postgres backend monitor
  564. 2004-04-19 14:10 sghosh
  565. * AUTHORS, plugins-scripts/check_mssql.pl: check_mssql.pl
  566. 2004-04-19 14:08 sghosh
  567. * README: Win32 plugin repository
  568. 2004-04-08 12:05 tonvoon
  569. * AUTHORS: Torsten Werner for check_racle patches
  570. 2004-04-08 12:05 tonvoon
  571. * plugins-scripts/check_oracle.sh: Cleaner calls to awk and support
  572. if Oracle has different national language settings (Torsten
  573. Werner)
  574. 2004-04-08 11:50 tonvoon
  575. * plugins-scripts/check_oracle.sh: Cleaner calls to awk and support
  576. if Oracle has different national language settings (Torsten
  577. Werner)
  578. 2004-04-06 17:02 tonvoon
  579. * configure.in, plugins/check_procs.c: Fixed weird scanf bug on
  580. Solaris
  581. 2004-04-02 20:37 kdebisschop
  582. * plugins/check_by_ssh.c: add example invocation to help
  583. 2004-04-01 00:01 tonvoon
  584. * AUTHORS: Howard Wilkinson
  585. 2004-03-31 23:53 tonvoon
  586. * plugins/check_nt.c: Command line argument bug (Howard Wilkinson)
  587. 2004-03-31 23:48 tonvoon
  588. * plugins/netutils.c: Set default state (Howard Wilkinson)
  589. 2004-03-31 20:20 tonvoon
  590. * doc/developer-guidelines.sgml: Update author list
  591. 2004-03-23 06:35 kdebisschop
  592. * plugins/check_fping.c: check was supposed to be agains ms - got
  593. munged wfixeg the perfdata output to be in seconds
  594. 2004-03-22 07:25 tonvoon
  595. * plugins/check_http.c: Getopt bug (Joe Rhett)
  596. 2004-03-22 07:22 tonvoon
  597. * AUTHORS: Joe Rhett for getopt bug
  598. 2004-03-22 07:19 tonvoon
  599. * plugins/check_http.c: Option --url not mapped (Joe Rhett)
  600. 2004-03-18 20:58 tonvoon
  601. * AUTHORS: More help for patches
  602. 2004-03-18 20:50 tonvoon
  603. * plugins/check_disk.c: Typo in check_disk units (Matthew Kent -
  604. 909281)
  605. 2004-03-18 20:40 tonvoon
  606. * configure.in: Mysql include path not added correctly (Arnold
  607. Cavazos - 912974)
  608. 2004-03-18 20:37 tonvoon
  609. * configure.in: Mysql include path not added correctly (Arnold
  610. Cavazos - 912974)
  611. 2004-03-18 20:31 tonvoon
  612. * plugins/check_radius.c: Option to fill in NAS-identifier to
  613. Emulate pam_radius behaviour (Alexander Kulak)
  614. 2004-03-17 20:38 tonvoon
  615. * doc/developer-guidelines.sgml: Copyright information for patches
  616. 2004-03-14 04:09 kdebisschop
  617. * plugins/: check_ldap.c, check_load.c, check_mrtgtraf.c,
  618. check_pgsql.c, check_smtp.c, check_tcp.c, check_ups.c: use
  619. fperfdata
  620. 2004-03-14 03:37 kdebisschop
  621. * plugins/check_fping.c: use fperfdata
  622. 2004-03-12 03:40 egalstad
  623. * contrib/check_cluster2.c: New cluster plugin for Nagios 2.x
  624. 2004-03-11 15:33 tonvoon
  625. * CHANGES: check_procs difference
  626. 2004-03-11 15:17 tonvoon
  627. * plugins/check_nagios.c: Incorporate check_proc changes into
  628. check_nagios. ps handling probably should be moved into utils.c
  629. in future
  630. 2004-03-08 21:03 tonvoon
  631. * configure.in: Require ngettext
  632. 2004-03-08 21:01 tonvoon
  633. * doc/developer-guidelines.sgml: Information on plugin output
  634. format
  635. 2004-03-04 05:08 kdebisschop
  636. * plugins/: check_dig.c, check_dns.c, check_game.c: use float for
  637. time in perf data
  638. 2004-03-03 12:33 kdebisschop
  639. * plugins/: check_http.c, utils.c: begin writing some perfdata as
  640. float
  641. 2004-03-03 04:24 kdebisschop
  642. * contrib/check_pop3.pl: fix loop and \r\n (Jason Burnett -
  643. http://sourceforge.net/tracker/index.php?func=detail&aid=895677&group_id=29880&atid=397599)
  644. 2004-03-03 03:48 kdebisschop
  645. * plugins/check_disk.c: check_disk was getting blocks instead of
  646. bytes (Michael Musikhin -
  647. http://sourceforge.net/tracker/index.php?func=detail&aid=900215&group_id=29880&atid=397599)
  648. 2004-03-02 06:17 kdebisschop
  649. * Makefile.am, nagios-plugins.spec.in: make specfile into a
  650. template which can generate a generic spec plus specs suitable
  651. for various repositories
  652. 2004-03-02 06:13 kdebisschop
  653. * configure.in: prpare for alpha2
  654. 2004-03-02 05:25 kdebisschop
  655. * plugins/check_http.c: relax check for -w/-c to accept floats (bug
  656. report from Warrick FitzGerald)
  657. 2004-03-02 05:01 kdebisschop
  658. * AUTHORS, plugins/check_swap.c: fix div by zero error when
  659. swaptotal is zero (Flo Gleixner)
  660. 2004-03-01 12:27 kdebisschop
  661. * plugins/: check_tcp.c, netutils.c: check_tcp was returning
  662. uninitialized string with user-defined refused outcome
  663. 2004-03-01 06:15 kdebisschop
  664. * plugins/check_smtp.c: allow regex for ecpect checks
  665. 2004-02-29 04:09 kdebisschop
  666. * plugins/: check_nwstat.c, netutils.c, netutils.h: was making up
  667. to 34 separate tcp connections - now we open one and reuse
  668. 2004-02-28 07:27 kdebisschop
  669. * plugins/check_snmp.c: checks for warn in check_num() mistakenly
  670. referred to crit limits
  671. 2004-02-28 06:51 kdebisschop
  672. * plugins/check_smtp.c: minor doco update to reflect handling of
  673. repeated caoomand strings
  674. 2004-02-28 06:48 kdebisschop
  675. * plugins/check_smtp.c: work in progress to accept multiple
  676. command/expect pairs
  677. 2004-02-28 04:54 kdebisschop
  678. * plugins/check_swap.c: update to work with Linux 2.6 /proc/meminfo
  679. format
  680. 2004-02-25 08:50 kdebisschop
  681. * AUTHORS, plugins/check_dns.c: check server for authoritative
  682. status (from Jon Hallet)
  683. 2004-02-25 08:12 kdebisschop
  684. * plugins/check_swap.c: change some datatypes to llu for very large
  685. swaps
  686. 2004-02-25 07:49 kdebisschop
  687. * configure.in, plugins/check_ping.c: pass timeout to ping if
  688. supported with -w parameter (linux)
  689. 2004-02-21 05:37 kdebisschop
  690. * plugins/check_by_ssh.c: add option to ignore a specified number
  691. of lines on stderr (to suppress a login banner)
  692. 2004-02-21 03:50 kdebisschop
  693. * plugins-scripts/check_breeze.pl: add $opt_C to 'use vars' (report
  694. 882381 and patch form Jason Martin)
  695. 2004-02-21 03:44 kdebisschop
  696. * AUTHORS: Add Jason Martin for report of missing $opt_C for 'use
  697. vars' in check_breeze
  698. 2004-02-21 03:42 kdebisschop
  699. * plugins-scripts/check_breeze.pl: add opt_C to 'usr vars'
  700. 2004-02-20 19:35 tonvoon
  701. * plugins/check_http.c: - Missed out getopt for -T
  702. 2004-02-20 05:25 kdebisschop
  703. * contrib/check_dhcp.c, contrib/check_procl.sh,
  704. plugins/check_snmp.c, plugins/negate.c, plugins/netutils.c,
  705. plugins/urlize.c: spell fix "received"
  706. 2004-02-20 05:22 kdebisschop
  707. * plugins/check_snmp.c, plugins/negate.c, plugins/netutils.c,
  708. plugins/urlize.c, contrib/check_dhcp.c: spell fix "received"
  709. 2004-02-20 05:21 kdebisschop
  710. * plugins/: utils.c, utils.h: add perfdata function for floats to
  711. complement ints, also spell fix "received"
  712. 2004-02-20 05:19 kdebisschop
  713. * AUTHORS: add Ralph Rye for report of check_procs segfault on
  714. AIX/WebSphere and proof-of-concept patch
  715. 2004-02-20 05:04 kdebisschop
  716. * plugins/check_procs.c: handle case where line from ps output
  717. exceed MAX_INPUT_BUFFER
  718. 2004-02-20 03:37 tonvoon
  719. * AUTHORS: Shaun Wills for patch to check_http
  720. 2004-02-20 03:21 tonvoon
  721. * plugins/check_http.c: Added Content-type when POSTing (Shawn
  722. Wills)
  723. 2004-02-20 03:00 tonvoon
  724. * plugins/check_procs.c: - compiler warning removed (but usage2
  725. messages badly broken)
  726. 2004-02-20 02:58 tonvoon
  727. * AUTHORS: Matt Pounsett for bug report
  728. 2004-02-20 02:09 tonvoon
  729. * plugins/check_dns.c: Different text to scan for if multiple
  730. addresses
  731. 2004-02-20 01:05 tonvoon
  732. * plugins/check_swap.c: Corrected usage message (Matt Pounsett)
  733. 2004-02-19 13:24 tonvoon
  734. * AUTHORS: Michael Musikhin for check_disk patch
  735. 2004-02-19 13:23 tonvoon
  736. * plugins/check_disk.c: Uninitialised variables for -X (Bug 900091
  737. - Michael Musikhin)
  738. 2004-02-18 14:57 kdebisschop
  739. * configure.in: version bump (old)
  740. 2004-02-18 14:56 kdebisschop
  741. * acinclude.m4, lib/afs.m4, lib/fstypename.m4, lib/fsusage.m4:
  742. underquoted defines cause warning on FC2
  743. 2004-02-18 02:11 tonvoon
  744. * AUTHORS: Johannes Herlitz for patch to check_dns
  745. 2004-02-18 02:09 tonvoon
  746. * plugins/check_dns.c: Output message includes the query_address,
  747. as inspired by Johannes Herlitz. Also cleanup of comments and
  748. handles multi-line nslookup output (MacOSX 10.3)
  749. 2004-02-17 13:24 tonvoon
  750. * AUTHORS: David Alden for check_snmp_procs.pl
  751. 2004-02-17 13:23 tonvoon
  752. * contrib/check_snmp_procs.pl: Checks remote processes via SNMP
  753. (David Alden)
  754. 2004-02-09 08:32 tonvoon
  755. * AUTHORS: Patrick McCormick
  756. 2004-02-09 08:27 tonvoon
  757. * plugins/check_ping.c: Fix for check_ping old-style argument
  758. handling (Patrick McCormick - 892211)
  759. 2004-01-28 11:42 tonvoon
  760. * plugins/check_dummy.c: Print optional text
  761. 2004-01-21 12:50 kdebisschop
  762. * AUTHORS: credit David Croft (patch check_tcp formultibyte malloc
  763. bug in server_expect)
  764. 2004-01-21 12:49 kdebisschop
  765. * plugins/check_tcp.c: =fix segfault on malloc of server_expect for
  766. multibyte chars (David Croft)
  767. 2004-01-21 12:46 kdebisschop
  768. * AUTHORS: credit David Croft (patch check_tcp formultibyte malloc
  769. bug in server_expect)
  770. 2004-01-21 12:45 kdebisschop
  771. * plugins/check_tcp.c: =fix segfault on malloc of server_expect for
  772. multibyte chars (David Croft)
  773. 2004-01-18 20:07 sghosh
  774. * contrib/check_snmp_printer.pl: plugin to check printer status via
  775. snmp, includes page count as perfdata; perl plugin
  776. 2003-12-24 08:51 tonvoon
  777. * AUTHORS: Bug reporter
  778. 2003-12-24 08:51 tonvoon
  779. * plugins/check_swap.c: Fixed help doc on use of % (854817 - Gunnar
  780. Hellekson)
  781. 2003-12-18 09:24 tonvoon
  782. * README: Reference to CHANGES file
  783. 2003-12-18 09:19 tonvoon
  784. * Makefile.am: Add CHANGES file to distribution
  785. 2003-12-18 09:15 tonvoon
  786. * CHANGES: List major changes between releases
  787. 2003-12-11 10:00 tonvoon
  788. * AUTHORS: For patch to check_http
  789. 2003-12-11 10:00 tonvoon
  790. * plugins/check_http.c: Relative redirects not followed correctly
  791. (854131 - John Sivak)
  792. 2003-12-05 18:12 tonvoon
  793. * AUTHORS: Ben Whaley for reported Solaris 8 /usr/ucb/ps problem in
  794. configure.in
  795. 2003-12-05 18:08 tonvoon
  796. * configure.in: Not correctly working out ps command if /usr/ucb
  797. before /usr/bin in PATH for Solaris (reported by Ben Whaley)
  798. 2003-12-05 16:45 tonvoon
  799. * AUTHORS: Patch to my_connect
  800. 2003-12-05 16:42 tonvoon
  801. * plugins/: netutils.c, netutils.h: Fix clash of namespace for
  802. my_connect with mysql (854339 - Ian Holsman)
  803. 2003-12-02 15:27 tonvoon
  804. * plugins/check_disk.c: Default thresholds not defined for lists in
  805. -x parameter (raised by Matt Garrett)
  806. 2003-12-01 02:47 kdebisschop
  807. * po/: de.po, fr.po: commit changes caused by upstream code mods
  808. 2003-12-01 02:46 kdebisschop
  809. * plugins/check_procs.c: use usage2 function
  810. 2003-12-01 02:38 kdebisschop
  811. * nagios-plugins.spec.in: add THANKS to %doc
  812. 2003-11-28 14:18 tonvoon
  813. * plugins/check_procs.c: Fixed listing of failed processes
  814. 2003-11-24 14:56 tonvoon
  815. * AUTHORS: For patches
  816. 2003-11-24 14:53 tonvoon
  817. * plugins/check_hpjd.c: Bug from code-clean (Antony Simmonds -
  818. 846311)
  819. 2003-11-21 07:53 kdebisschop
  820. * README: update auotmake/autoconf versions
  821. 2003-11-21 07:52 kdebisschop
  822. * doc/developer-guidelines.sgml: update developer names
  823. 2003-11-21 07:34 kdebisschop
  824. * INSTALLING: our policy now is to use most recent versions of GNU
  825. tool chain
  826. 2003-11-19 06:24 kdebisschop
  827. * plugins/check_time.c: add perfdata
  828. 2003-11-19 06:00 kdebisschop
  829. * plugins/check_smtp.c: use perfdata() to return perfoamnace data
  830. in stanadrd format
  831. 2003-11-17 11:45 kdebisschop
  832. * plugins/check_ups.c: bugfix - each supported option was
  833. overwriting the previous perfdata
  834. 2003-11-17 07:19 kdebisschop
  835. * plugins/check_ups.c: add perfdata
  836. 2003-11-17 06:37 kdebisschop
  837. * plugins/check_pgsql.c: add perfdata
  838. 2003-11-12 06:05 kdebisschop
  839. * plugins/check_snmp.c: clean up compiler warnings
  840. 2003-11-12 05:53 kdebisschop
  841. * plugins/check_nt.c: clean up compiler warnings
  842. 2003-11-12 05:48 kdebisschop
  843. * plugins/check_mrtg.c: clean up compiler warnings
  844. 2003-11-12 05:41 kdebisschop
  845. * plugins/check_mrtgtraf.c: clean up compiler warnings
  846. 2003-11-12 05:37 kdebisschop
  847. * plugins/check_swap.c: clean up compiler warnings
  848. 2003-11-12 05:29 kdebisschop
  849. * plugins/check_mrtgtraf.c: add perfdata
  850. 2003-11-12 05:28 kdebisschop
  851. * plugins/check_dig.c: remove overflow checks of strtod - HUGE_VALF
  852. requires C99; also remove equality checks on warn/crit interval
  853. which are no doubles
  854. 2003-11-11 10:43 tonvoon
  855. * plugins/check_tcp.c: Added perfdata
  856. 2003-11-11 10:34 tonvoon
  857. * plugins/check_users.c: Added perfdata
  858. 2003-11-11 10:27 tonvoon
  859. * plugins/check_swap.c: Added perfdata
  860. 2003-11-11 10:19 tonvoon
  861. * plugins/check_swap.c: Fixed if only absolute warn/crit set
  862. 2003-11-10 11:15 tonvoon
  863. * plugins/utils.h: - typo fixes
  864. 2003-11-05 22:59 sghosh
  865. * plugins-scripts/: check_ifoperstatus.pl, check_ifstatus.pl:
  866. added plugin timeout options
  867. 2003-10-31 04:22 kdebisschop
  868. * plugins/check_nt.c: provide an error message
  869. 2003-10-31 04:21 kdebisschop
  870. * plugins/check_hpjd.c: line indentation
  871. 2003-10-31 04:20 kdebisschop
  872. * plugins/check_load.c: add perfdata
  873. 2003-10-31 04:19 kdebisschop
  874. * plugins/check_mrtg.c: add perf data fix bug where stale data
  875. message would get overwritten
  876. 2003-10-24 14:28 tonvoon
  877. * plugins/common.h: Ignore __attribute__ for non-GNU compilers
  878. 2003-10-24 10:37 tonvoon
  879. * plugins/Makefile.am: Moved config.h to toplevel
  880. 2003-10-23 11:24 tonvoon
  881. * lib/Makefile.am: Need to include intl/ for systems without
  882. libintl.h
  883. 2003-10-21 17:16 tonvoon
  884. * AUTHORS: Matt Garrett for bug reports
  885. 2003-10-21 16:56 tonvoon
  886. * plugins-scripts/check_file_age.pl: - Fixed file name (Matt
  887. Garrett)
  888. 2003-10-20 15:03 tonvoon
  889. * configure.in, lib/fsusage.c, lib/mountlist.c: Fix for config.h at
  890. top level. Required for intl/
  891. 2003-10-15 20:27 tonvoon
  892. * tools/mail_error: Need to export PATH for sfsnapshot to get
  893. correct GNU toolchain
  894. 2003-10-14 04:15 sghosh
  895. * plugins-scripts/check_ifoperstatus.pl: snmpv3 patches
  896. 2003-10-14 04:14 sghosh
  897. * plugins-scripts/check_ifstatus.pl: more snmpv3 patches
  898. 2003-10-14 03:40 sghosh
  899. * plugins-scripts/check_ntp.pl: Bug 773588: added check to warn on
  900. matching # candidates only
  901. 2003-10-14 03:15 sghosh
  902. * plugins-scripts/check_ifstatus.pl: Added -M for maxmsgsize
  903. (v1/v2c) Added v3 support
  904. 2003-09-30 14:54 tonvoon
  905. * plugins/check_swap.c: Fixed logic problem if HAVE_SWAP, but not
  906. on AIX or Solaris. Removed unnecessary ifdefs for help page.
  907. Better indentation for ifdefs
  908. 2003-09-29 11:02 tonvoon
  909. * lib/Makefile.am: Missed GNU files for AIX 5.1
  910. 2003-09-17 20:16 tonvoon
  911. * AUTHORS: Added authors of obsolete contrib plugins
  912. 2003-09-17 20:07 tonvoon
  913. * contrib/maser-oracle.pl: Obsolete from main check_oracle
  914. 2003-09-17 20:05 tonvoon
  915. * contrib/aix/: check_crit_dsk, check_dsk, check_ping: Plugins
  916. obsolete from main check_disk and check_ping
  917. 2003-09-17 17:33 tonvoon
  918. * lib/strtod.c: Required if strtod not GNU compilant
  919. 2003-09-17 17:31 tonvoon
  920. * configure.in, lib/Makefile.am, lib/error.c, lib/error.h,
  921. lib/error.m4, lib/malloc.c, lib/realloc.c, lib/unlocked-io.h,
  922. lib/xalloc.h, lib/xmalloc.c: Support to compile on AIX
  923. 2003-09-17 17:15 tonvoon
  924. * plugins/check_load.c: - typo
  925. 2003-09-17 10:31 tonvoon
  926. * configure.in, plugins/check_swap.c: Support for check_swap in AIX
  927. (tested on 5.1)
  928. 2003-09-17 10:25 tonvoon
  929. * tools/setup: Hide error message if docbook not available
  930. 2003-09-16 22:58 tonvoon
  931. * doc/developer-guidelines.sgml: Added in threshold range format
  932. and updated autoconf to 2.54 for a problem on Darwin)
  933. 2003-09-16 15:14 tonvoon
  934. * configure.in, plugins/Makefile.am, plugins/check_procs.c: Support
  935. for AIX ps command and cleanup of configure's ps checks
  936. 2003-09-16 13:32 tonvoon
  937. * AUTHORS, plugins/common.h: AIX problem with enum TRUE and FALSE
  938. (Ludse Verhoeven)
  939. 2003-09-16 12:36 kdebisschop
  940. * tools/sfsnapshot: here-doc format was not correct
  941. 2003-09-16 06:45 kdebisschop
  942. * plugins/check_ldap.c: milisecond timing and perfdata, fix NULL
  943. pointer error in validate_arguments
  944. 2003-09-15 16:49 tonvoon
  945. * AUTHORS: Contributors to the perfdata discussion
  946. 2003-09-15 16:28 tonvoon
  947. * AUTHORS, plugins-scripts/check_mailq.pl: Added Exim support
  948. (768445 - Eric Bollengier)
  949. 2003-09-15 15:57 tonvoon
  950. * AUTHORS, plugins/check_nt.c: Option to verify check_nt version
  951. (799098 - Steve Hanselman)
  952. 2003-09-15 15:30 tonvoon
  953. * AUTHORS: Jason Burnett for check_disk_smb patch
  954. 2003-09-15 15:26 tonvoon
  955. * plugins-scripts/check_disk_smb.pl: Optionally specify port for
  956. smbclient to use (781227 - Jason Burnett)
  957. 2003-09-15 06:03 kdebisschop
  958. * plugins/check_http.c: make status code extensible (thanks to
  959. Chris Wilson <chris@netservers.co.uk>)
  960. 2003-09-12 12:53 kdebisschop
  961. * AUTHORS: two new additions
  962. 2003-09-12 12:51 kdebisschop
  963. * plugins/check_ping.c: *new output format reported by Patrick
  964. Allen <p.allen@brandblue.co.uk>, also move atrribution for
  965. Richard Brodie to thanks file
  966. 2003-09-12 12:38 kdebisschop
  967. * plugins/check_ping.c: new output format reported by Patrick Allen
  968. <p.allen@brandblue.co.uk>
  969. 2003-09-11 12:50 kdebisschop
  970. * plugins/check_http.c: use prefdata function for size too
  971. 2003-09-11 09:02 kdebisschop
  972. * plugins/check_http.c: use prefdata function
  973. 2003-09-11 09:02 kdebisschop
  974. * configure.in, plugins/check_swap.c: last changes to configure
  975. broke check_swap on RHLinux. Restore /proc/meminfo check and make
  976. check_swap ifdefs safer
  977. 2003-09-04 07:43 kdebisschop
  978. * Makefile.am: change so make-dist works in subdirs
  979. 2003-09-03 20:37 tonvoon
  980. * configure.in: Remove df checks and ignore swap checks if no swap
  981. commands found
  982. 2003-09-03 20:32 tonvoon
  983. * doc/developer-guidelines.sgml: No named credits in source code
  984. 2003-09-03 11:32 tonvoon
  985. * configure.in: Fixed substitution for Tru64's ps format
  986. 2003-09-03 07:01 kdebisschop
  987. * plugins/check_dig.c: allow warn/crit times to be floating point
  988. 2003-09-03 07:00 kdebisschop
  989. * configure.in, plugins/common.h: include math.h if needed for
  990. HUGE_VAL
  991. 2003-09-02 16:04 tonvoon
  992. * plugins/check_procs.c: Solaris requires asprintf checks for null
  993. variables
  994. 2003-09-01 21:07 tonvoon
  995. * Makefile.am: Report duplicates in AUTHORS file
  996. 2003-09-01 20:43 tonvoon
  997. * doc/developer-guidelines.sgml: Add contributor's name into CVS
  998. comments
  999. 2003-08-31 06:24 tonvoon
  1000. * .cvsignore, AUTHORS, Makefile.am, THANKS.in: Updated AUTHORS to
  1001. include all contributors listed in comments in code and CVS for
  1002. plugins and plugins-scripts. Still need to do SF
  1003. 2003-08-31 06:13 tonvoon
  1004. * doc/developer-guidelines.sgml: Updated perf data standard for
  1005. warn before crit
  1006. 2003-08-28 12:56 kdebisschop
  1007. * plugins/check_game.c: add perf data
  1008. 2003-08-28 04:53 kdebisschop
  1009. * plugins/check_dns.c: add perf data
  1010. 2003-08-28 04:53 kdebisschop
  1011. * plugins/utils.c: use single quotes per guideline, also quote when
  1012. SPC or = are found
  1013. 2003-08-28 04:22 kdebisschop
  1014. * plugins/check_disk.c: add perf data
  1015. 2003-08-28 04:21 kdebisschop
  1016. * plugins/utils.c: suppress quotes in perf data when not needed
  1017. (some plugins need the space to keep below line length limit
  1018. 2003-08-28 04:20 kdebisschop
  1019. * plugins/utils.h: add min() macro to complement max()
  1020. 2003-08-26 12:08 kdebisschop
  1021. * plugins/check_dig.c: print perfdata
  1022. 2003-08-26 11:51 kdebisschop
  1023. * plugins/check_fping.c: print perfdata
  1024. 2003-08-26 11:44 kdebisschop
  1025. * plugins/: utils.c, utils.h: function to make perfdata output
  1026. 2003-08-23 16:07 kdebisschop
  1027. * plugins/check_http.c: - found and fixed memory allocation error
  1028. in rewritten redir() function
  1029. 2003-08-23 14:59 kdebisschop
  1030. * plugins/check_http.c: - hacked interim fix to segfault on
  1031. redirect - for tesing only
  1032. 2003-08-23 14:58 kdebisschop
  1033. * plugins/check_dig.c: - fix various format errors with newly added
  1034. perf data
  1035. 2003-08-23 00:49 kdebisschop
  1036. * plugins/check_dig.c: - forgot to declare struct timeval tv for
  1037. hires timing
  1038. 2003-08-22 07:55 kdebisschop
  1039. * plugins/check_dig.c: - add perf data for time
  1040. 2003-08-22 07:22 kdebisschop
  1041. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  1042. check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
  1043. check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
  1044. check_mrtg.c, check_mysql.c, check_nagios.c, check_nt.c,
  1045. check_nwstat.c, check_overcr.c, check_pgsql.c, check_ping.c,
  1046. check_procs.c, check_radius.c, check_real.c, check_smtp.c,
  1047. check_snmp.c, check_ssh.c, check_swap.c, check_tcp.c,
  1048. check_time.c, check_udp.c, check_ups.c, check_users.c, negate.c,
  1049. urlize.c: - bindtextdomain for gettext, a few other smale
  1050. cleanups here and there
  1051. 2003-08-22 05:42 kdebisschop
  1052. * plugins/: check_http.c: * bugfix: snprintf of timestamp truncated
  1053. '\0'
  1054. 2003-08-21 19:00 kdebisschop
  1055. * plugins/check_http.c: * Check redirections for infinte loops and
  1056. limit depth of recursion
  1057. 2003-08-20 10:54 tonvoon
  1058. * plugins/check_time.c: Optionally use udp instead of tcp (Bradley
  1059. Baetz - 751646)
  1060. 2003-08-20 09:31 tonvoon
  1061. * contrib/check_wins.pl: Changed netsaint to nagios in use lib
  1062. 2003-08-19 12:41 kdebisschop
  1063. * plugins/check_http.c: *BUGFIX: LWS is not required betwwen
  1064. "Location:" header field name and field value
  1065. 2003-08-19 12:19 kdebisschop
  1066. * plugins/check_http.c: *add missing status numbers from RFC 2616
  1067. (HTTP1.1)
  1068. 2003-08-18 12:05 kdebisschop
  1069. * plugins/check_ping.c: move error scans to a new separate routine
  1070. and scan both stderr and stdio
  1071. 2003-08-11 20:50 tonvoon
  1072. * doc/developer-guidelines.sgml: Performance data guidelines added
  1073. 2003-08-11 20:43 tonvoon
  1074. * tools/sfsnapshot: Fixed building snapshots - cvs update ignores
  1075. new directories. Also do not need to run make
  1076. 2003-08-10 13:56 kdebisschop
  1077. * plugins/utils.c: config.h is redundant (common.h includes it)
  1078. 2003-08-10 13:48 kdebisschop
  1079. * plugins/: check_dns.c, check_smtp.c: perf data in integer
  1080. microseconds
  1081. 2003-08-10 13:12 kdebisschop
  1082. * po/: POTFILES.in, de.po, fr.po: first pass at NLS markup done
  1083. 2003-08-10 13:11 kdebisschop
  1084. * plugins-scripts/check_rpc.pl: proposed fix for LANG issue
  1085. 2003-08-10 07:53 kdebisschop
  1086. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  1087. check_fping.c, check_game.c, check_hpjd.c, check_http.c,
  1088. check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
  1089. check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
  1090. check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
  1091. check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
  1092. check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
  1093. check_udp.c, check_ups.c, check_users.c, negate.c, popen.c,
  1094. urlize.c: the last round of pedantic compiler warnings
  1095. 2003-08-09 14:37 kdebisschop
  1096. * tools/devmode: a little shell script to make it a little easier
  1097. to produce pedantic compiler warnings
  1098. 2003-08-09 14:36 kdebisschop
  1099. * plugins/: check_smtp.c, check_ssh.c, check_tcp.c, check_time.c,
  1100. check_udp.c, check_ups.c, check_users.c: more pedantic compiler
  1101. warnings
  1102. 2003-08-09 07:51 undrgrid
  1103. * plugins/common.h, po/de.po, po/fr.po: Code clean-up
  1104. 2003-08-09 07:01 kdebisschop
  1105. * plugins/: check_dig.c, check_http.c, check_load.c, check_mrtg.c,
  1106. check_mrtgtraf.c, check_nwstat.c, check_overcr.c, check_ping.c,
  1107. check_procs.c, check_real.c, utils.c, utils.h: more pedantic
  1108. compiler warns
  1109. 2003-08-09 05:19 kdebisschop
  1110. * plugins/check_http.c: more pedantic compiler warns, change to
  1111. microsecond output for perf data, add size to perf data
  1112. 2003-08-09 05:12 kdebisschop
  1113. * plugins/: utils.c, utils.h: add function for elapsed tim ein
  1114. microseconds
  1115. 2003-08-09 01:56 kdebisschop
  1116. * plugins/check_http.c: more pedantic compiler warnings
  1117. 2003-08-09 01:41 kdebisschop
  1118. * plugins/: check_disk.c, check_dummy.c, popen.c, utils.c, utils.h:
  1119. more pedantic compiler warnings
  1120. 2003-08-08 21:31 kdebisschop
  1121. * lib/Makefile.am: include getloadvag.m4 in distrib
  1122. 2003-08-08 17:49 kdebisschop
  1123. * plugins/: check_disk.c, netutils.c, netutils.h: cleanups from
  1124. pedantic complier warnings
  1125. 2003-08-08 17:48 kdebisschop
  1126. * plugins/check_nt.c: change if/elseif block to case, general
  1127. streamline
  1128. 2003-08-08 13:14 kdebisschop
  1129. * plugins/check_disk.c: fix a variety of compiler warnings about
  1130. qualifier discards and other pedantic stuff
  1131. 2003-08-08 06:09 kdebisschop
  1132. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c,
  1133. check_snmp.c, utils.c, utils.h: fix a variety of compiler
  1134. warnings about qualifier discards and other pedantic stuff
  1135. 2003-08-08 05:33 kdebisschop
  1136. * plugins/: check_by_ssh.c, check_disk.c, check_nt.c, netutils.c,
  1137. netutils.h, popen.h, utils.h: fix a variety of compiler warnings
  1138. about qualifier discards and other pedantic stuff
  1139. 2003-08-08 04:51 kdebisschop
  1140. * plugins/: check_nt.c, check_smtp.c: markup for translation
  1141. 2003-08-08 00:17 kdebisschop
  1142. * plugins/check_real.c: markup for translation
  1143. 2003-08-07 13:36 kdebisschop
  1144. * plugins/check_procs.c: markup for translation
  1145. 2003-08-07 13:09 kdebisschop
  1146. * plugins/check_load.c: reorder for consistency, restore prototypes
  1147. for print_foo, nest #ifdef to avoid pedantic traditional c warn
  1148. 2003-08-07 13:00 kdebisschop
  1149. * plugins/check_snmp.c: reorder for consistency (no code changes)
  1150. 2003-08-07 12:51 kdebisschop
  1151. * plugins/: check_by_ssh.c, check_disk.c, check_dns.c,
  1152. check_fping.c, check_game.c, check_http.c, check_mrtg.c,
  1153. check_mrtgtraf.c, check_nagios.c, check_nt.c, check_nwstat.c,
  1154. check_overcr.c, check_radius.c, check_real.c, check_snmp.c,
  1155. check_swap.c, check_tcp.c, check_time.c, negate.c, netutils.c,
  1156. popen.c, utils.c, utils.h: replace "terminate" with "die" for
  1157. shorter name and better readability
  1158. 2003-08-07 12:49 kdebisschop
  1159. * plugins/check_ping.c: cleanup for better readability
  1160. 2003-08-07 10:51 kdebisschop
  1161. * plugins/check_ping.c: markup for translation
  1162. 2003-08-07 02:23 kdebisschop
  1163. * tools/sfsnapshot: make must be run before make dist to creat
  1164. language files
  1165. 2003-08-06 21:53 tonvoon
  1166. * doc/developer-guidelines.sgml: Added in that Nagios plugins are
  1167. written to GNU standards
  1168. 2003-08-06 15:26 kdebisschop
  1169. * lib/.cvsignore: ignore ulonglong.m4
  1170. 2003-08-06 13:13 kdebisschop
  1171. * plugins/check_overcr.c: markup for translation, move send_buffer
  1172. assignment to process_args so process_tcp_request can be moved
  1173. outside the conditional, replace if/esleif with switch, replace
  1174. #defines with enum
  1175. 2003-08-06 13:11 kdebisschop
  1176. * plugins/check_nwstat.c: markup for translation
  1177. 2003-08-05 20:20 tonvoon
  1178. * doc/developer-guidelines.sgml: Added dev platform requirements
  1179. 2003-08-05 12:53 kdebisschop
  1180. * plugins/check_ssh.c: markup for translation
  1181. 2003-08-05 10:56 stanleyhopcroft
  1182. * contrib/check_mssql.sh: Version 2.0 of MS SQL server plugin
  1183. (contrib/check_mssql.sh) from T De Blende.
  1184. 2003-08-04 12:38 kdebisschop
  1185. * plugins/: check_users.c, urlize.c: markup for translation
  1186. 2003-08-04 09:13 kdebisschop
  1187. * plugins/: check_time.c, check_udp.c: markup for translation
  1188. 2003-08-04 08:42 kdebisschop
  1189. * plugins/: check_ldap.c, check_nagios.c, check_radius.c,
  1190. check_udp.c, check_ups.c, negate.c: markup for translation
  1191. 2003-08-03 15:24 kdebisschop
  1192. * plugins/: check_ldap.c, check_mrtg.c, check_mrtgtraf.c: markup
  1193. for translation
  1194. 2003-08-03 07:19 kdebisschop
  1195. * plugins/check_load.c: markup for translation
  1196. 2003-08-03 07:05 kdebisschop
  1197. * plugins/: check_http.c, check_ldap.c, check_tcp.c: markup for
  1198. translation
  1199. 2003-08-03 07:03 kdebisschop
  1200. * plugins/: Makefile.am, check_ide-smart.c: markup for translation,
  1201. use common.h, fix problems compiling
  1202. 2003-08-03 07:02 kdebisschop
  1203. * plugins/check_ldap.c: markup for translation
  1204. 2003-08-03 01:01 kdebisschop
  1205. * plugins/check_http.c: markup for translation
  1206. 2003-08-02 23:19 kdebisschop
  1207. * plugins/check_hpjd.c: markup for translation
  1208. 2003-08-02 23:08 kdebisschop
  1209. * plugins/check_mysql.c: markup for translation
  1210. 2003-08-02 23:06 kdebisschop
  1211. * plugins/: check_fping.c, check_game.c, check_mysql.c,
  1212. check_snmp.c, utils.h: markupf for translation
  1213. 2003-08-02 19:22 kdebisschop
  1214. * plugins/: utils.c, utils.h: ifdef so utils.h can be header for
  1215. utils.c
  1216. 2003-08-02 19:22 kdebisschop
  1217. * plugins/: check_fping.c, check_snmp.c: markup for translation
  1218. 2003-08-02 17:42 kdebisschop
  1219. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  1220. check_dummy.c, check_pgsql.c, check_swap.c, check_tcp.c, utils.h:
  1221. establish "UT_" namespace for usage text in #defines
  1222. 2003-08-02 17:42 kdebisschop
  1223. * plugins/check_snmp.c: markup for translation
  1224. 2003-08-02 06:30 kdebisschop
  1225. * plugins/check_dns.c: restore informative output that was lost in
  1226. previous bug fix
  1227. 2003-08-02 00:56 kdebisschop
  1228. * plugins/check_dns.c: terminate in error_scan() so meaningfull
  1229. errors can be sent
  1230. 2003-08-01 07:04 kdebisschop
  1231. * plugins/check_dummy.c: mark for transaltion
  1232. 2003-08-01 07:03 kdebisschop
  1233. * plugins/check_dns.c: do not translate the strings that will be
  1234. compared to utility output - LC_ALL is set to C so those strings
  1235. should be untranslated regardless of the system settings
  1236. 2003-08-01 07:01 kdebisschop
  1237. * plugins/popen.c: set LC_ALL to C in execve environemnt
  1238. 2003-08-01 03:11 kdebisschop
  1239. * plugins/: Makefile.am: 'ln -f -s ...' is not reliable/portable.
  1240. Use 'rm -f ...; ln -s ...'
  1241. 2003-07-31 13:06 kdebisschop
  1242. * plugins/check_dns.c: mark for translation (note problem here - it
  1243. relies on tranalation in underlying utility, which has a high
  1244. chance of failing)
  1245. 2003-07-31 12:02 kdebisschop
  1246. * plugins/: utils.h, check_disk.c: mark for translation
  1247. 2003-07-30 12:39 kdebisschop
  1248. * plugins/check_by_ssh.c: mark up for translation
  1249. 2003-07-30 05:07 kdebisschop
  1250. * plugins/: check_dig.c, check_pgsql.c, check_swap.c, check_tcp.c,
  1251. utils.h: markup for translation
  1252. 2003-07-29 12:58 kdebisschop
  1253. * plugins/: check_pgsql.c, check_swap.c, check_tcp.c: mark for
  1254. translation
  1255. 2003-07-29 12:57 kdebisschop
  1256. * plugins/utils.h: some shared text for internationalized help text
  1257. 2003-07-29 06:49 kdebisschop
  1258. * plugins/utils.c: clean up warnings about ill-formed comment and
  1259. string concatenation
  1260. 2003-07-29 06:43 kdebisschop
  1261. * .cvsignore, ChangeLog, README, configure.in, lib/Makefile.am:
  1262. bump to gettext 0.11.5 and cleanup GNU toolchain
  1263. 2003-07-29 06:38 kdebisschop
  1264. * ABOUT-NLS, INSTALL: get from GNU files instead of storing in CVS
  1265. 2003-07-29 06:03 kdebisschop
  1266. * tools/setup: move autopoint to start of gnu toolchain setup use
  1267. --force-missing instead on manually copying files (manual
  1268. process was broken on RedHat, and we should expect automake to do
  1269. its job right anyway)
  1270. 2003-07-29 04:06 kdebisschop
  1271. * configure.in: look for getloadavg.c in $topdir/lib, not
  1272. $srcdir/lib
  1273. 2003-07-29 04:04 kdebisschop
  1274. * plugins/: check_http.c: patch attempt to reference undefined
  1275. optarg (credit Paul Farrall)
  1276. 2003-07-29 04:03 kdebisschop
  1277. * configure.in: look for getloadavg.c in $topdir/lib, not
  1278. $srcdir/lib
  1279. 2003-07-28 12:36 tonvoon
  1280. * configure.in: - Specify srcdir so no confusion
  1281. 2003-07-28 12:34 tonvoon
  1282. * configure.in, lib/getloadavg.m4: Fixes Redhat 6.2 compiles for
  1283. getloadavg.o
  1284. 2003-07-28 12:30 tonvoon
  1285. * configure.in, lib/getloadavg.m4: Readded getloadavg.m4 as using
  1286. autoconf 2.50+. This fixes redhat 6.2 compiles
  1287. 2003-07-26 13:15 kdebisschop
  1288. * plugins/check_pgsql.c: mark for translation
  1289. 2003-07-26 13:13 kdebisschop
  1290. * plugins/common.h: add S_ macor to mark message for both
  1291. translation and inclusion into docbook SGML
  1292. 2003-07-26 06:29 kdebisschop
  1293. * po/: de.po, fr.po: updated check_tcp
  1294. 2003-07-26 06:25 kdebisschop
  1295. * plugins/check_tcp.c, po/ChangeLog: internationalization
  1296. 2003-07-26 06:17 kdebisschop
  1297. * po/.cvsignore, intl/.cvsignore, lib/.cvsignore: skip gettext
  1298. files
  1299. 2003-07-26 05:33 kdebisschop
  1300. * lib/: Makefile.am: checkins for internationalization
  1301. 2003-07-26 05:25 kdebisschop
  1302. * po/Makevars: checkins for internationalization
  1303. 2003-07-26 05:17 kdebisschop
  1304. * lib/gettext.h: checkins for internationalization
  1305. 2003-07-26 05:14 kdebisschop
  1306. * tools/setup: checkins for internationalization
  1307. 2003-07-26 05:09 kdebisschop
  1308. * configure.in, ABOUT-NLS, po/de.po, po/fr.po: checkins for
  1309. internationalization
  1310. 2003-07-26 05:06 kdebisschop
  1311. * .cvsignore, ChangeLog, Makefile.am, configure.in,
  1312. nagios-plugins.spec.in, lib/Makefile.am, plugins/Makefile.am,
  1313. plugins/check_tcp.c, plugins/common.h, plugins/utils.c,
  1314. po/LINGUAS, po/POTFILES.in, tools/setup: checkins for
  1315. internationalization
  1316. 2003-07-21 13:06 kdebisschop
  1317. * plugins/common.h: add stubs to allow markup for translation
  1318. 2003-07-21 12:53 kdebisschop
  1319. * configure.in, plugins/common.h: test GNU_SOURCE and include
  1320. features.h if present to clear warning about asprintf definition
  1321. 2003-07-20 15:40 kdebisschop
  1322. * doc/developer-guidelines.sgml: must use '&amp;' in attribute
  1323. values instead of '&' id tokens (attibute values) must not have
  1324. embedded spaces
  1325. 2003-07-20 15:01 kdebisschop
  1326. * nagios-plugins.spec.in: was needed for build on RH9
  1327. 2003-07-17 13:14 tonvoon
  1328. * plugins-scripts/check_oracle.sh: - Cleanup comments
  1329. 2003-07-17 10:35 tonvoon
  1330. * doc/developer-guidelines.sgml: Guidelines updated to use
  1331. Sourceforge tracker system
  1332. 2003-07-11 23:20 tonvoon
  1333. * doc/developer-guidelines.sgml: - Fixed CVS commit comments
  1334. 2003-07-11 14:06 tonvoon
  1335. * doc/developer-guidelines.sgml: Added in practice of prefixing
  1336. comments in CVS commits
  1337. 2003-07-11 07:30 kdebisschop
  1338. * ChangeLog: Auto Update from CVS (includes both stabel and devel -
  1339. ugh)
  1340. 2003-07-11 07:12 kdebisschop
  1341. * configure.in, plugins/Makefile.am: link check_spop and
  1342. check_simap if ssl libs are compiled into check_tcp
  1343. 2003-07-04 11:42 kdebisschop
  1344. * configure.in, plugins/Makefile.am: only make links for check_spop
  1345. and check_simap when SSL is built into check_tcp
  1346. 2003-07-03 17:49 tonvoon
  1347. * plugins/check_procs.c: Fixed seg fault on some Sol 7/8 servers
  1348. (Patch 764745 - Alexander Matey)
  1349. 2003-07-03 16:00 tonvoon
  1350. * tools/setup: Changing $() to `` to be compatible with Solaris' sh
  1351. 2003-07-03 04:23 kdebisschop
  1352. * autogen.sh, tools/setup: mv GNU toolchain check into tools/setup
  1353. 2003-07-03 04:19 kdebisschop
  1354. * plugins/utils.c: remove LABELLEN
  1355. 2003-07-02 17:20 tonvoon
  1356. * plugins-scripts/: check_oracle.sh: Check for ORA- errors for
  1357. tablespace and cache (patch 755456 - Sven Meyer)
  1358. 2003-07-02 16:57 tonvoon
  1359. * plugins-scripts/check_disk_smb.pl: Update error message from
  1360. smbclient v2.2.7 (Patch 740132 - Cove Schneider)
  1361. 2003-07-02 16:52 tonvoon
  1362. * plugins-scripts/check_disk_smb.pl: Update error message from
  1363. smbclient v2.2.7 (Patch 740132 - Cove Schneider)
  1364. 2003-07-02 16:01 tonvoon
  1365. * contrib/check_file_age.pl, plugins-scripts/.cvsignore,
  1366. plugins-scripts/Makefile.am, plugins-scripts/check_file_age.pl,
  1367. plugins-scripts/subst.in: Moving check_file_age into core
  1368. 2003-07-02 15:39 tonvoon
  1369. * configure.in: Fixed SUPPORT message
  1370. 2003-07-01 10:27 tonvoon
  1371. * plugins/check_disk.c: Fix for large filesystems > 3TB (Stuart
  1372. Webster)
  1373. 2003-06-30 20:47 undrgrid
  1374. * plugins/: check_http.c, check_ldap.c, check_smtp.c: Added -4 and
  1375. -6 command line options into check_http, check_ldap and
  1376. check_smtp
  1377. 2003-06-30 19:52 undrgrid
  1378. * plugins/: check_ping.c, check_ssh.c, check_tcp.c, netutils.c:
  1379. Corrections to get code to compile on systems without IPv6
  1380. support
  1381. 2003-06-30 19:52 undrgrid
  1382. * plugins/Makefile.am: Added check_simap & check_spop to
  1383. check_tcp_programs If someone knows how to make this conditional
  1384. in the Makefile only if being compiled with SSL I think this is
  1385. the only way to make it better
  1386. 2003-06-30 18:02 tonvoon
  1387. * plugins/check_disk.c: Fixed support for "check_disk warn crit
  1388. [path]" with thresholds at used levels
  1389. 2003-06-29 20:54 undrgrid
  1390. * configure.in, plugins/check_ldap.c: Included patch for check_ldap
  1391. from Patch #753621 by Ziya Suzen
  1392. 2003-06-29 20:22 undrgrid
  1393. * plugins/: check_ping.c, check_tcp.c: Changed usage output to show
  1394. -4 and -6 are mutually exclusive. You can only use one or
  1395. the other but not both. The last one used will win out.
  1396. 2003-06-29 20:17 undrgrid
  1397. * plugins/: check_ping.c, netutils.c: check_ping is now coded with
  1398. -4 & -6 options to call PING or PING6 command netutils modified
  1399. to verify hosts based on address_family setting when used with
  1400. -4 or -6 options. is_inet_addr() will not be tested if -6 is
  1401. used and is_inet6_addr() will not be tested if -4 is used. Also
  1402. the is_hostname() will use the address_family value to
  1403. resolve hostnames only if IPv6 support is available otherwise
  1404. defaults to AF_INET.
  1405. 2003-06-29 07:36 undrgrid
  1406. * plugins/: check_ssh.c, check_tcp.c, netutils.c, netutils.h: Added
  1407. address_family extern int variable to netutils to allow for -4 &
  1408. -6 options for explicit connection protocol Added support
  1409. for -4 & -6 options to check_ssh and check_tcp for testing
  1410. 2003-06-29 03:18 tonvoon
  1411. * plugins/check_nwstat.c: Added NLM test (Phil Randal)
  1412. 2003-06-29 02:52 tonvoon
  1413. * plugins/check_swap.c: Corrected reported size for PROC_MEMINFO
  1414. systems
  1415. 2003-06-29 02:36 tonvoon
  1416. * tools/sfwebcron: Fixed so goes to correct web area
  1417. 2003-06-29 02:07 tonvoon
  1418. * tools/sfwebcron: New tool to run on shell.sf.net to update the
  1419. dev guidelines
  1420. 2003-06-29 01:58 tonvoon
  1421. * doc/makefile: Fixed makefile
  1422. 2003-06-27 19:47 undrgrid
  1423. * plugins/netutils.c: Modified my_connect to include ai_socktype in
  1424. the hints to be compliant with RFC3493 as pointed out by Janos
  1425. Mohacsi.
  1426. 2003-06-27 15:43 tonvoon
  1427. * configure.in, plugins/check_swap.c: Support for swap -s for
  1428. solaris. Also changes size of swap to MBs through a conversion
  1429. amount in configure. Possible breakage on other OSes
  1430. 2003-06-27 13:04 tonvoon
  1431. * doc/makefile: Remove if which check - done in tools/setup instead
  1432. 2003-06-27 11:30 tonvoon
  1433. * tools/setup: Fiddling as Solaris' which command is broken
  1434. 2003-06-27 00:33 tonvoon
  1435. * plugins/check_disk.c: Fixed different thresholds if using exclude
  1436. lists
  1437. 2003-06-25 16:43 tonvoon
  1438. * plugins/check_disk.c: Support for different thresholds for
  1439. different filesystems
  1440. 2003-06-25 14:38 tonvoon
  1441. * plugins/check_disk.c: Removed -d option and just check against -p
  1442. parameter
  1443. 2003-06-25 14:28 tonvoon
  1444. * plugins/check_disk.c: Report errors if path specified not found
  1445. 2003-06-25 14:16 tonvoon
  1446. * plugins/check_disk.c: Problems compiling on SunOS 5.6 with gcc
  1447. 2.8.1. Fixed by specifying floating variables, rather than
  1448. letting asprintf work it out
  1449. 2003-06-25 13:38 tonvoon
  1450. * plugins/check_disk.c: Returns critical if fs missing. Only works
  1451. for single fs specified in -p, otherwise will return warning as
  1452. before (reported by Jim Carroll)
  1453. 2003-06-21 06:49 kdebisschop
  1454. * plugins/Makefile.am: soalris 8 needs 'ln -s -f' instead of 'ln
  1455. -sf'
  1456. 2003-06-21 06:48 kdebisschop
  1457. * plugins/Makefile.am: solaris 8 needs 'ln -s -f' instead of 'ln
  1458. -sf'
  1459. 2003-06-21 06:31 kdebisschop
  1460. * plugins/check_http.c: fix character class for URI_PATH and
  1461. URI_PORT
  1462. 2003-06-21 06:23 kdebisschop
  1463. * plugins/check_http.c: add remaining URI_PATH chars per RFC 2396
  1464. remove '-' from URI_PORT
  1465. 2003-06-12 05:44 undrgrid
  1466. * command.cfg.in: Renamed duplicate check_snmp command definitions
  1467. to be unique
  1468. 2003-06-12 05:14 undrgrid
  1469. * command.cfg.in, configure.in: Made the two check_ifoperstatus
  1470. commands unique to remove conflicts
  1471. 2003-06-11 11:41 kdebisschop
  1472. * plugins/check_http.c: fix URI_PATH to allow ?&#: (more still
  1473. should be allowed) fix class to be POSIX compliant
  1474. 2003-06-11 11:39 kdebisschop
  1475. * plugins/check_http.c: character classes were wrong for URI_PATH
  1476. etc: 1) must include ?&#; for PATH 2) POSIX states "If a '-' is
  1477. in the scanlist and is not the first character, nor the second
  1478. where the first character is a '^' , nor the last character, the
  1479. behavior is implementation-defined"
  1480. 2003-06-10 06:04 kdebisschop
  1481. * contrib/urlize.pl: add comment about shell quote removal to
  1482. address
  1483. https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
  1484. 2003-06-10 06:02 kdebisschop
  1485. * plugins/urlize.c: add note about shell quote removal to address
  1486. https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
  1487. 2003-06-10 05:55 kdebisschop
  1488. * contrib/urlize.pl: add comment relating to
  1489. https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
  1490. 2003-06-10 05:53 kdebisschop
  1491. * plugins/urlize.c: add note about effect of shell quote handling
  1492. to address
  1493. https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
  1494. 2003-06-08 23:39 tonvoon
  1495. * configure.in: Fixed quoting on SWAP_FORMAT
  1496. 2003-06-08 23:22 tonvoon
  1497. * configure.in: Support for OpenBSD 3.2 & 3.3 ps (Julien Touche)
  1498. 2003-06-07 01:46 sghosh
  1499. * plugins/check_real.c: \r\n patch from Mathias
  1500. 2003-06-07 01:36 sghosh
  1501. * plugins/check_real.c: \r\n patch from Mathias
  1502. 2003-06-05 00:09 tonvoon
  1503. * configure.in: Display ps command used
  1504. 2003-06-04 23:56 tonvoon
  1505. * configure.in: Stupid bug - what happens when you don't bother
  1506. testing
  1507. 2003-06-04 23:37 tonvoon
  1508. * configure.in: Support for OpenBSD 3.2 & 3.3 ps (Julien Touche)
  1509. 2003-06-04 23:17 tonvoon
  1510. * plugins/check_disk.c: Argument to asprintf in wrong order
  1511. 2003-06-04 22:17 tonvoon
  1512. * pkg/solaris/solpkg: Remove /usr as well. Maybe this is best done
  1513. by changing BASEDIR to configure's prefix?
  1514. 2003-06-02 15:46 kdebisschop
  1515. * plugins/check_tcp.c: finish recv() loop when stream GT or EQ
  1516. maxbytes (was GT)
  1517. 2003-06-02 15:43 kdebisschop
  1518. * plugins/check_tcp.c: finish recv() loop when stream GT or EQ
  1519. maxbytes (was GT)
  1520. 2003-06-01 06:38 kdebisschop
  1521. * plugins/check_tcp.c: typos in doco
  1522. 2003-06-01 06:38 kdebisschop
  1523. * plugins/check_tcp.c: allow user to limit number of bytes fetched
  1524. fix some doco (wait is now delay, server_quit was not shown)
  1525. 2003-06-01 06:19 kdebisschop
  1526. * plugins/check_tcp.c: allow user to limit the number of bytes to
  1527. be fetched
  1528. 2003-05-31 15:39 kdebisschop
  1529. * plugins/check_dns.c: first revised patch failed to trap the
  1530. "break" in while()
  1531. 2003-05-31 15:39 kdebisschop
  1532. * plugins/check_dns.c: first revised patch failed to trap the
  1533. "break" in while()
  1534. 2003-05-31 15:22 kdebisschop
  1535. * plugins/check_dns.c: typo in args to terminate
  1536. 2003-05-31 15:04 kdebisschop
  1537. * plugins/check_dns.c: trap null or empty returns from nslookup
  1538. 2003-05-27 14:10 stanleyhopcroft
  1539. * contrib/check_sap.sh: check_sap.sh plugin to check SAP /R3
  1540. servers from Karel Salavec and Tom De Blende.
  1541. 2003-05-26 11:09 stanleyhopcroft
  1542. * contrib/: check_axis.sh, check_mssql.sh: Revisions to Tom De
  1543. Blende contributed plugins: check_axis.sh and check_mssql.sh
  1544. 2003-05-18 00:07 tonvoon
  1545. * plugins/t/: check_ftp.t: Fixed test (Mathew Ericson - 738609)
  1546. 2003-05-17 18:58 tonvoon
  1547. * plugins/t/: check_load.t: Fixed tests (Mathew Ericson - 738607)
  1548. 2003-05-17 18:50 tonvoon
  1549. * plugins/t/check_procs.t: Fixed test commands (Mathew Ericson -
  1550. 738605)
  1551. 2003-05-17 18:46 tonvoon
  1552. * plugins/t/check_procs.t: Fixed test commands (Mathew Ericson -
  1553. 738605)
  1554. 2003-05-17 18:38 tonvoon
  1555. * plugins/t/: check_http.t: Fixed tests (Mathew Ericson - 738608)
  1556. 2003-05-17 18:36 tonvoon
  1557. * plugins/t/check_tcp.t: Fixed tests (Mathew Ericson - 738604) CV:
  1558. ----------------------------------------------------------------------
  1559. 2003-05-17 18:33 tonvoon
  1560. * plugins/t/check_tcp.t: Fixed tests (Mathew Ericson - 738604)
  1561. 2003-05-16 18:32 sghosh
  1562. * plugins-scripts/: check_ntp.pl: bug fix
  1563. 2003-05-15 00:17 tonvoon
  1564. * plugins/negate.c: Added examples
  1565. 2003-05-14 22:59 tonvoon
  1566. * plugins-scripts/check_mailq.pl: Added postfix support (Thomas
  1567. Nilsen - 735218)
  1568. 2003-05-14 22:51 tonvoon
  1569. * plugins/check_nwstat.c: Added DSVER and UPTIME checks (Phil
  1570. Randal - 737617)
  1571. 2003-05-14 22:49 tonvoon
  1572. * pkg/solaris/solpkg: Typo
  1573. 2003-05-14 22:44 tonvoon
  1574. * doc/.cvsignore: Ignore developer-guidelines.html as generated
  1575. from docbook
  1576. 2003-05-14 22:39 tonvoon
  1577. * Makefile.am, pkg/solaris/pkginfo.in, pkg/solaris/solpkg: Remove
  1578. dependency on gnu make
  1579. 2003-05-14 00:20 tonvoon
  1580. * doc/developer-guidelines.sgml: Updated docs to include comments,
  1581. contrib->main, getopts_long and verbose output levels
  1582. 2003-05-13 23:23 tonvoon
  1583. * tools/sfsnapshot: Calls tools/setup and creates a README for the
  1584. snapshot directory
  1585. 2003-05-13 23:03 tonvoon
  1586. * doc/developer-guidelines.html, doc/makefile, tools/setup: The
  1587. developer-guidelines.html file is now generated from the sgml
  1588. file by docbook2html at tools/setup time
  1589. 2003-05-13 13:14 stanleyhopcroft
  1590. * contrib/tarballs/hopcroft-plugins.tar.gz: Removed
  1591. contrib/tarballs/hopcroft-plugins.tar.gz. This is archaic,
  1592. anachronistic, unmaintained and humblingly embarrassing.
  1593. 2003-05-13 13:13 stanleyhopcroft
  1594. * contrib/check_mssql.sh: check_mssql.sh. A new plugin from Mr T DE
  1595. BLENDE to check MS SQLServer databases.
  1596. 2003-05-09 04:22 kdebisschop
  1597. * plugins/check_http.c: fix error when server closes connection
  1598. immediately
  1599. 2003-05-09 04:22 kdebisschop
  1600. * plugins/check_http.c: fix error when server closes connection
  1601. immediately
  1602. 2003-05-09 03:59 kdebisschop
  1603. * plugins/: check_snmp.c: cause snmpget try try for 1 second less
  1604. than the timeout (allowing plugin to force close if needed)
  1605. 2003-05-07 19:01 undrgrid
  1606. * plugins/check_ping.c: Modified check_ping to handle IPv6 as well
  1607. as IPv4 ICMP checks using the PING6_COMMAND determined during the
  1608. configure script execution. As USE_IPV6 may be defined and
  1609. PING6_COMMAND is not defined if there is not IPv6 TCP stack
  1610. available when configure is run I condition it off PING6_COMMAND
  1611. existing to remove build errors for being undefined.
  1612. 2003-04-25 10:05 sghosh
  1613. * plugins-scripts/: check_ntp.pl: corrected output units
  1614. 2003-04-23 05:57 kdebisschop
  1615. * plugins/: check_http.c, utils.c: update to RFC1123 hostname specs
  1616. 2003-04-17 06:56 kdebisschop
  1617. * nagios-plugins.spec.in: add check_nt, drop check_vsz
  1618. 2003-04-17 06:55 kdebisschop
  1619. * plugins/: check_dig.c, check_tcp.c, check_users.c: code cleanup
  1620. to clear strict compiler warnings
  1621. 2003-04-17 06:36 kdebisschop
  1622. * plugins/: check_dig.c, check_tcp.c, netutils.c: code cleanup to
  1623. clear strict compiler warnings
  1624. 2003-04-16 16:31 sghosh
  1625. * plugins/check_real.c: old behavior - no stream check unless -u
  1626. 2003-04-16 16:06 sghosh
  1627. * plugins/check_real.c: reset to old behavior of not checking
  1628. stream by default
  1629. 2003-04-13 05:49 sghosh
  1630. * plugins/check_hpjd.c: reduce compiler warning between gcc3 and
  1631. gcc2.96
  1632. 2003-04-13 05:28 sghosh
  1633. * configure.in: update for check_mailq - qmail support
  1634. 2003-04-13 05:25 sghosh
  1635. * plugins-scripts/utils.pm.in: update for check_mailq - qmail
  1636. support
  1637. 2003-04-13 05:23 sghosh
  1638. * plugins-scripts/check_mailq.pl: Added sendmail multi-queue
  1639. support (Canau), merged qmail support (Schmid)
  1640. 2003-04-12 01:02 tonvoon
  1641. * plugins/check_procs.c: Match -a STRING anywhere in ps args
  1642. (Laurent Vaslin - 719783)
  1643. 2003-04-12 00:47 tonvoon
  1644. * plugins/check_procs.c: Match -a STRING anywhere in ps args
  1645. (Laurent Vaslin - 719783)
  1646. 2003-04-11 23:36 sghosh
  1647. * plugins-scripts/check_ifstatus.pl: added feature -u (list of
  1648. unused ifIndex)
  1649. 2003-04-11 23:09 sghosh
  1650. * plugins-scripts/check_ifstatus.pl: bug 691412, added feature -x
  1651. (list of excluded ifTypes)
  1652. 2003-04-11 19:44 sghosh
  1653. * plugins/check_hpjd.c: patch 698384 - order of args to snmpget +
  1654. print a bit of stderr
  1655. 2003-04-11 17:27 sghosh
  1656. * plugins/check_hpjd.c: patch 698384 - order of args to snmpget
  1657. 2003-04-09 04:46 kdebisschop
  1658. * plugins/: check_http.c, check_hpjd.c, check_nt.c: cleanup to
  1659. suppress various strict compiler warnings
  1660. 2003-04-09 04:44 kdebisschop
  1661. * plugins/common.h: rewrite #elif to be compatible with traditional
  1662. C
  1663. 2003-04-09 03:09 kdebisschop
  1664. * plugins/Makefile.am: check_game needs popen.c now
  1665. 2003-04-08 21:49 tonvoon
  1666. * plugins/: check_nt.c, check_hpjd.c: Changed // to /* */ comments
  1667. as some compilers do not like them
  1668. 2003-04-08 21:38 tonvoon
  1669. * command.cfg.in: Updated command for new check_procs
  1670. 2003-04-08 21:37 tonvoon
  1671. * plugins/: check_hpjd.c, check_nt.c: Changed // to /* */ comments
  1672. as some compilers do not like them
  1673. 2003-04-08 01:00 stanleyhopcroft
  1674. * contrib/check_axis.sh: check_axis.sh (Axis 5xx print servers)
  1675. from Tom De Blende
  1676. 2003-04-08 00:40 tonvoon
  1677. * plugins/check_procs.c: Fixed zombie processes
  1678. 2003-04-08 00:16 tonvoon
  1679. * configure.in: Missed some PS_FORMAT strings
  1680. 2003-04-07 23:53 tonvoon
  1681. * configure.in, plugins/Makefile.am, plugins/check_nagios.c,
  1682. plugins/check_procs.c, plugins/check_vsz.c: Souped up check_procs
  1683. with different metrics
  1684. 2003-04-07 22:23 tonvoon
  1685. * plugins/check_snmp.c: Removed unnecessary array for AIX compile
  1686. (reported by Alwyn Cherrington)
  1687. 2003-04-07 22:21 tonvoon
  1688. * plugins/check_snmp.c: Removed unnecessary regex array
  1689. 2003-04-07 12:39 kdebisschop
  1690. * plugins/check_http.c: ste timeout one second greater than
  1691. critical time
  1692. 2003-04-07 12:38 kdebisschop
  1693. * plugins/check_game.c: had been grandfathered ibto core, finally
  1694. use normal getopts, add options for player, max-player array
  1695. positions
  1696. 2003-04-03 22:21 tonvoon
  1697. * plugins-scripts/check_oracle.sh: Cleaned up cache output
  1698. 2003-04-01 23:24 tonvoon
  1699. * plugins-scripts/check_oracle.sh: Fixed sqlplus calls and
  1700. rearranged parameters for --tablespace & --cache
  1701. 2003-04-01 05:00 kdebisschop
  1702. * configure.in: remove PATH_PROG call for autoconf/automake
  1703. components
  1704. 2003-03-31 13:49 kdebisschop
  1705. * plugins/check_disk.c: checkpoint supresses iso9660 adds option
  1706. for checking only local adds choice of scale factor
  1707. 2003-03-27 22:53 tonvoon
  1708. * plugins/check_nwstat.c: Extra Netware checks (Patch 710247 -
  1709. Dietmar Ruzicka)
  1710. 2003-03-26 05:37 tonvoon
  1711. * configure.in: ipv6 check requires unistd.h for Darwin
  1712. 2003-03-26 03:57 tonvoon
  1713. * configure.in, plugins/check_procs.c: Removal of ps_raw and
  1714. ps_vars
  1715. 2003-03-26 03:39 tonvoon
  1716. * plugins/check_nagios.c: Uses same ps command as check_procs
  1717. 2003-03-25 06:33 kdebisschop
  1718. * .cvsignore: subst is no longer used
  1719. 2003-03-24 19:05 undrgrid
  1720. * .cvsignore, Makefile.am: Better stripping of prefix for Solaris
  1721. package install needs to remove /usr/local as package
  1722. installs there by default
  1723. 2003-03-24 17:44 undrgrid
  1724. * Makefile.am, pkg/solaris/.cvsignore, pkg/solaris/pkginfo.in,
  1725. plugins/check_disk.c: Minor changes to build for Solaris packages
  1726. 2003-03-24 16:23 tonvoon
  1727. * plugins/check_procs.c: Use max_state
  1728. 2003-03-24 02:57 tonvoon
  1729. * tools/: mail_error, sfsnapshot: PATH set in correct place and
  1730. extra comments
  1731. 2003-03-24 02:44 tonvoon
  1732. * tools/: mail_error, sfsnapshot: Bug fixes
  1733. 2003-03-24 02:21 tonvoon
  1734. * tools/mail_error: Sends email if non-zero return code from
  1735. command
  1736. 2003-03-24 02:19 tonvoon
  1737. * tools/sfsnapshot: Error code depending on number of files
  1738. generated
  1739. 2003-03-24 01:18 tonvoon
  1740. * lib/ls-mntd-fs.m4: Using coreutils 4.5.11 version to fix Darwin
  1741. problem
  1742. 2003-03-24 00:40 tonvoon
  1743. * REQUIREMENTS: Add NSClient requirement for check_nt
  1744. 2003-03-24 00:39 tonvoon
  1745. * plugins/check_nt.c: Reference to web site to get NSClient
  1746. 2003-03-24 00:26 tonvoon
  1747. * plugins/check_nt.c: Reference to web site to get NSClient
  1748. 2003-03-23 07:01 undrgrid
  1749. * Makefile.am, autogen.sh, configure.in, lib/Makefile.am,
  1750. pkg/solaris/pkginfo.in, pkg/solaris/solpkg: Solaris package build
  1751. system
  1752. 2003-03-23 06:20 kdebisschop
  1753. * plugins/check_disk.c: can once again exclude indiviual
  1754. path/partitions
  1755. 2003-03-23 06:11 kdebisschop
  1756. * plugins/check_disk.c: add -X to exclude FS type, now works with
  1757. more than one path/dev specified
  1758. 2003-03-22 13:23 kdebisschop
  1759. * plugins/utils.c: declaration must precede printf
  1760. 2003-03-21 20:21 tonvoon
  1761. * configure.in: Stupid bug!
  1762. 2003-03-21 14:08 kdebisschop
  1763. * plugins/check_disk.c: checkpoint, allows selecting devices and
  1764. paths now
  1765. 2003-03-21 14:04 kdebisschop
  1766. * configure.in: instructions for posting plugin version number
  1767. 2003-03-19 23:44 kdebisschop
  1768. * plugins/check_by_ssh.c: allow to specify -1 and -2 for protocol
  1769. version
  1770. 2003-03-19 22:42 tonvoon
  1771. * configure.in: Tru64 df support (Paul Clayton)
  1772. 2003-03-19 13:01 kdebisschop
  1773. * plugins/: utils.c, utils.h: make state_text a function
  1774. 2003-03-19 12:59 kdebisschop
  1775. * lib/mountlist.c, plugins/check_disk.c: check_disk working with
  1776. mountlist.c
  1777. 2003-03-19 02:28 kdebisschop
  1778. * Makefile.am, configure.in: subst.* was replaced by dist-hook
  1779. 2003-03-19 02:27 kdebisschop
  1780. * subst.in, subst.sh: these were replaced by dist-hook
  1781. 2003-03-18 15:18 kdebisschop
  1782. * configure.in: running the AFS macro causes newer AC/AM to barf
  1783. 2003-03-18 09:02 kdebisschop
  1784. * configure.in: afs checking
  1785. 2003-03-18 08:50 kdebisschop
  1786. * lib/: ls-mntd-fs.m4, afs.m4: use AC_DEFINE_UNQOUTED
  1787. 2003-03-18 08:47 kdebisschop
  1788. * lib/ls-mntd-fs.m4: stop warning on autoheader 2.13
  1789. 2003-03-18 07:57 kdebisschop
  1790. * plugins/: netutils.c, netutils.h: common.h was doubly included
  1791. 2003-03-18 07:57 kdebisschop
  1792. * plugins/common.h: use enum instead of define, remove some cruft
  1793. from old snprintf implementation
  1794. 2003-03-18 07:48 kdebisschop
  1795. * configure.in, lib/Makefile.am, plugins/check_disk.c: use GNU
  1796. fileutils for check_disk
  1797. 2003-03-18 07:47 kdebisschop
  1798. * lib/: afs.m4, fstypename.m4, fsusage.c, fsusage.h, fsusage.m4,
  1799. ls-mntd-fs.m4, mountlist.c, mountlist.h: from GNU fileutils for
  1800. check_disk
  1801. 2003-03-17 22:22 tonvoon
  1802. * plugins-scripts/: check_oracle.sh: Allow default Oracle home from
  1803. oratab (reported by Walbert Oberngruber)
  1804. 2003-03-16 23:54 undrgrid
  1805. * configure.in: Modified to automatically enable getaddrinfo
  1806. emulation if lwres is not used and getaddrinfo is not found in
  1807. the system.
  1808. 2003-03-16 23:28 undrgrid
  1809. * plugins/: check_tcp.c, netutils.c, netutils.h: Applied patch
  1810. #660973 for tcp refusals
  1811. 2003-03-15 01:28 undrgrid
  1812. * configure.in: Left over debug define
  1813. 2003-03-15 01:25 undrgrid
  1814. * configure.in, lib/Makefile.am, lib/getaddrinfo.c,
  1815. lib/getaddrinfo.h, lib/gethostbyname.c, lib/gethostbyname.h,
  1816. plugins/Makefile.am, plugins/getaddrinfo.c,
  1817. plugins/getaddrinfo.h, plugins/gethostbyname.c,
  1818. plugins/gethostbyname.h, plugins/netutils.c, plugins/netutils.h,
  1819. plugins/utils.c, plugins/utils.h: Spent the day working on
  1820. backwards compatability using getaddrinfo() Moved getaddrinfo.?
  1821. and gethostbyname.? from lib/ to plugins/ due to problems with
  1822. compiling into the libnagiosplug.a as it required linking against
  1823. socket libraries which are unneeded except for network based
  1824. plugins. This code should hopefully happily work for all systems
  1825. and has been tested prior to commit on Debian GNU/Linux, SPARC
  1826. Solaris 7 and SPARC Solaris 9.
  1827. 2003-03-14 13:28 kdebisschop
  1828. * plugins-scripts/check_ntp.pl: add timeout, fix taint chacking
  1829. diom
  1830. 2003-03-13 22:20 undrgrid
  1831. * .cvsignore, configure.in, lib/Makefile.am: Working out issues
  1832. with getaddrinfo emulation build environment
  1833. 2003-03-13 21:14 tonvoon
  1834. * plugins/: check_dns.c, check_http.c, check_tcp.c: Strip leading
  1835. spaces in perf data
  1836. 2003-03-13 21:10 tonvoon
  1837. * plugins/check_smtp.c: Perf data without leading spaces and fix
  1838. ANSI C complaint about \n
  1839. 2003-03-13 20:33 tonvoon
  1840. * plugins/check_tcp.c: Fix compiler warnings re progname
  1841. 2003-03-13 06:52 undrgrid
  1842. * depcomp: Removed auto-tools script that automake adds
  1843. 2003-03-13 06:51 undrgrid
  1844. * .cvsignore, configure.in, install-sh, missing, mkinstalldirs,
  1845. plugins/.cvsignore, plugins/Makefile.am, plugins/common.h,
  1846. plugins/common.h.in, plugins/netutils.h, plugins/netutils.h.in,
  1847. plugins/popen.h, plugins/popen.h.in, plugins/utils.c,
  1848. plugins/utils.h, plugins/utils.h.in, plugins/version.h.in:
  1849. Updated cvs ignore files to reflect changes Moved header files
  1850. from being ran through configure to standard Removed auto-tools
  1851. scripts that get added by automake
  1852. 2003-03-13 06:00 kdebisschop
  1853. * plugins/negate.c: negate must be POSIXly correct in handling
  1854. options, else wrapped options get passed to it
  1855. 2003-03-13 05:59 undrgrid
  1856. * configure.in: Removed --with-ipv6 configure option so it
  1857. determines IPv6 availablity completely on it's own per suggestion
  1858. by Karl
  1859. 2003-03-13 05:29 kdebisschop
  1860. * plugins/negate.c: negate must be POSIXly correct in handling
  1861. options, else wrapped options get passed to it
  1862. 2003-03-12 22:13 undrgrid
  1863. * plugins/check_tcp.c: doco standarization
  1864. 2003-03-12 19:50 undrgrid
  1865. * configure.in, plugins-scripts/subst.in: Just a lil namespace
  1866. clean-up
  1867. 2003-03-12 17:42 undrgrid
  1868. * configure.in: Minor fix to --with-ipv6 behavior
  1869. 2003-03-12 17:11 undrgrid
  1870. * autogen.sh, configure.in, plugins/utils.c, plugins/utils.h.in:
  1871. Added autogen.sh script that rebuilds using autotools and runs
  1872. configure Modified configure.in to include some debug build
  1873. option info at the end of the scripts execution. Can be removed
  1874. by release time. Modified configure.in to include a --with-ipv6
  1875. option Default build is without IPv6 support now to enable you
  1876. need to use the --with-ipv6 command line option to configure.
  1877. Modified plugins/utils.* to use USE_IPV6
  1878. 2003-03-12 07:05 kdebisschop
  1879. * plugins/check_disk.c: doco standarization
  1880. 2003-03-12 06:44 kdebisschop
  1881. * plugins/check_disk.c: errors for statfs
  1882. 2003-03-12 06:41 kdebisschop
  1883. * plugins/check_smtp.c: comment/doco cleanup for embeeded doc work,
  1884. control STMP command via options instead of defines
  1885. 2003-03-12 06:38 kdebisschop
  1886. * configure.in: version increase, statfs work
  1887. 2003-03-12 02:47 undrgrid
  1888. * plugins/.cvsignore: Add some more extra plugins
  1889. 2003-03-12 02:29 undrgrid
  1890. * plugins/check_dig.c: Code clean-up
  1891. 2003-03-12 02:29 undrgrid
  1892. * plugins/check_http.c: Clean up of output from plugin
  1893. 2003-03-12 02:24 undrgrid
  1894. * plugins/: check_udp.c, check_ldap.c, check_http.c: Code clean-up
  1895. 2003-03-12 02:23 undrgrid
  1896. * plugins/check_tcp.c: Code cleanup
  1897. 2003-03-12 00:45 tonvoon
  1898. * plugins/check_dns.c: Removed is_host checks to speed up code.
  1899. Fixed timings so no spaces
  1900. 2003-03-12 00:08 tonvoon
  1901. * plugins/check_dns.c: Timings in milliseconds and nicer output
  1902. 2003-03-11 22:51 tonvoon
  1903. * plugins-scripts/.cvsignore: Add script ignores
  1904. 2003-03-11 22:36 tonvoon
  1905. * plugins/negate.c: Remove getopt_long checks
  1906. 2003-03-11 22:34 tonvoon
  1907. * plugins/negate.c: Fixed reading too many argv parameters and
  1908. changed to asprintf
  1909. 2003-03-11 22:29 tonvoon
  1910. * plugins/negate.c: Fixed reading too many argv parameters and
  1911. changed to asprintf
  1912. 2003-03-11 22:22 tonvoon
  1913. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  1914. check_fping.c, check_hpjd.c, check_http.c, check_ide-smart.c,
  1915. check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
  1916. check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
  1917. check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
  1918. check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
  1919. check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
  1920. check_udp.c, check_ups.c, check_users.c, check_vsz.c: Remove
  1921. getopt_long checks
  1922. 2003-03-11 22:09 undrgrid
  1923. * configure.in: Fixed some ping6 variables
  1924. 2003-03-11 18:32 undrgrid
  1925. * configure.in: Minor change to Karl's statfs check Inclusion of
  1926. ICMPv6 ping tests to define PING6_COMMAND Minor fix to ps syntax
  1927. checking to fix bug I introduced last nite
  1928. 2003-03-11 07:04 undrgrid
  1929. * Makefile.am, configure.in: Removed acconfig.h from EXTRA_DIST
  1930. Fixed problem with test in SWAP_FORMAT and SWAP_COMMAND
  1931. 2003-03-11 06:44 kdebisschop
  1932. * configure.in, plugins/check_disk.c: use statfs for check_disk
  1933. (still needs fs scan)
  1934. 2003-03-11 06:03 undrgrid
  1935. * acconfig.h, configure.in: Finishing clean-up of configure.in
  1936. Removing acconfig.h as it's no longer needed
  1937. 2003-03-10 23:58 undrgrid
  1938. * acconfig.h, configure.in: Cleaned up configure for PS and PING to
  1939. produce cleaner config.h
  1940. 2003-03-09 18:13 undrgrid
  1941. * plugins/common.h.in: Make sure sys/socket.h is explicitly
  1942. included if HAVE_SYS_SOCKET_H is defined
  1943. 2003-03-09 10:39 tonvoon
  1944. * plugins/check_disk.c: Implement error-only option for check_disk
  1945. (Ian Duggan)
  1946. 2003-03-09 10:36 tonvoon
  1947. * plugins/check_disk.c: Implement error-only option for check_disk
  1948. (Ian Duggan)
  1949. 2003-03-08 12:08 tonvoon
  1950. * plugins/check_disk.c: Fix AIX /proc filesystem (Ian Duggan)
  1951. 2003-03-08 12:05 tonvoon
  1952. * plugins/check_disk.c: Fix AIX /proc filesystem (Ian Duggan)
  1953. 2003-03-08 11:44 tonvoon
  1954. * configure.in: snprintf checks in configure.in like samba
  1955. 2003-03-08 02:27 undrgrid
  1956. * plugins/check_dns.c: Modified code to call is_addr() rather than
  1957. is_dotted_quad() with the new AF indepdent function routines
  1958. 2003-03-08 02:26 undrgrid
  1959. * plugins/: netutils.c, netutils.h.in, utils.c, utils.h.in: AF
  1960. indepedent routines introduced. Modifed process_request() &
  1961. my_connect() parameters to make 'proto' type 'int' rather
  1962. than 'char *' and use IPPROTO_* POSIX values. Removed
  1963. is_dotted_quad() & my_inet_aton() functions Added is_addr(),
  1964. is_inet_addr(), is_inet6_addr() and resolve_host_or_addr()
  1965. functions to check whether it is a valid IP address Modified
  1966. is_host() to call is_addr() and is_hostname()
  1967. 2003-03-08 02:02 tonvoon
  1968. * tools/sfsnapshot: Need to remove configure.in
  1969. 2003-03-08 01:59 tonvoon
  1970. * lib/Makefile.am, lib/snprintf.c, plugins/Makefile.am,
  1971. plugins/snprintf.c: Move snprintf into lib
  1972. 2003-03-08 01:48 tonvoon
  1973. * tools/sfsnapshot: Have to run through whole automake procedure as
  1974. datestamp in RELEASE variable
  1975. 2003-03-08 01:13 tonvoon
  1976. * tools/sfsnapshot: Added automake parameters for config.sub and
  1977. config.guess
  1978. 2003-03-08 00:57 tonvoon
  1979. * tools/sfsnapshot: Fixed production OUT variable
  1980. 2003-03-08 00:55 tonvoon
  1981. * tools/sfsnapshot: Adds MD5SUM file, creates multiple branch
  1982. snapshots and doesn't rerun configure/automake/autoconf
  1983. unnecessarily
  1984. 2003-03-08 00:21 tonvoon
  1985. * Makefile.am: Use Makefile's variables (to support a shortcut in
  1986. sfsnapshot)
  1987. 2003-03-07 22:11 undrgrid
  1988. * configure.in, lib/Makefile.am, lib/getaddrinfo.c,
  1989. lib/getaddrinfo.h, lib/gethostbyname.c, lib/gethostbyname.h,
  1990. plugins/check_pgsql.c, plugins/common.h.in, plugins/netutils.c,
  1991. plugins/netutils.h.in, tools/setup: Added getaddrinfo.[ch] &
  1992. gethostbyname.[ch] to provide RFC2553 functions if missing in
  1993. system libs and lwres not present Moved all references to netdb.h
  1994. and sys/socket.h into common.h.in Modified automake call in
  1995. tools/setup to include adding missing files so config.sub
  1996. and config.guess will be available
  1997. 2003-03-07 20:16 tonvoon
  1998. * plugins/check_nt.c: Make output for CPU load nicer
  1999. 2003-03-07 07:45 kdebisschop
  2000. * plugins/check_smtp.c: millisecond timing and perf data
  2001. 2003-03-07 07:15 kdebisschop
  2002. * plugins/: check_smtp.c: whole timer loop was on the wrong side of
  2003. connection close code
  2004. 2003-03-07 06:43 kdebisschop
  2005. * plugins/check_udp.c: fix for -H invocation of hostname
  2006. 2003-03-07 06:40 kdebisschop
  2007. * plugins/check_udp.c: fix for -H invocation of hostname
  2008. 2003-03-06 06:40 undrgrid
  2009. * acinclude.m4, configure.in: Adds --with-lwres and
  2010. --enable-emulate-getaddrinfo but are not used in any of the code
  2011. at this time. Has a check for IPv6 support but only runs if using
  2012. the emulate-getaddrinfo routines, this needs to be modified. !!!
  2013. I need input from results of this run on various platforms to see
  2014. what results are seen in plugins/config.h so please help test !!!
  2015. 2003-03-05 07:27 kdebisschop
  2016. * plugins-scripts/check_ntp.pl: add "m" to regex for minutes
  2017. 2003-03-05 05:59 sghosh
  2018. * plugins/check_smtp.c: remove race condition for a long HELO
  2019. 2003-03-05 04:38 sghosh
  2020. * command.cfg.in: corrected snmp commands
  2021. 2003-03-05 04:37 sghosh
  2022. * plugins-scripts/check_ntp.pl: regex fix per Marc Poulin
  2023. 2003-03-05 00:17 tonvoon
  2024. * plugins/check_http.c: check_http min size option (680467 - Dave
  2025. Viner)
  2026. 2003-03-04 23:56 tonvoon
  2027. * plugins/check_nt.c: Make output message for CPU Load a bit nicer
  2028. 2003-03-04 23:35 tonvoon
  2029. * tools/sfsnapshot: To create nagiosplug daily snapshots on SF
  2030. 2003-03-03 03:49 kdebisschop
  2031. * plugins/check_ping.c: accept comma-delimted list of hosts for
  2032. checking if a multihomed host is alive
  2033. 2003-03-02 06:01 kdebisschop
  2034. * plugins/check_ping.c: add logic to check multiple servers
  2035. 2003-03-02 04:59 kdebisschop
  2036. * ChangeLog: update from CVS
  2037. 2003-03-02 04:58 kdebisschop
  2038. * configure.in, nagios-plugins.spec.in: adjustments to remove beta
  2039. tagging
  2040. 2003-03-02 04:32 kdebisschop
  2041. * ChangeLog: update from CVS
  2042. 2003-03-01 05:09 kdebisschop
  2043. * nagios-plugins.spec.in: we were missing some docs in the RPM
  2044. 2003-02-23 17:11 sghosh
  2045. * REQUIREMENTS: Novell requirements
  2046. 2003-02-23 17:10 sghosh
  2047. * contrib/check_bgpstate.pl: removed community string in CRIT
  2048. message
  2049. 2003-02-22 19:06 tonvoon
  2050. * configure.in: Solaris and Unixware labels round the wrong way for
  2051. swap command
  2052. 2003-02-22 13:01 kdebisschop
  2053. * Makefile.am: provide target for nagios-plugins.spec
  2054. 2003-02-22 07:27 kdebisschop
  2055. * Makefile.am: add CODING FAQ LEGAL to distribution tarball
  2056. 2003-02-21 21:59 tonvoon
  2057. * plugins/check_http.c: Fixed coredump with unallocated string
  2058. 2003-02-21 21:46 tonvoon
  2059. * plugins/check_dns.c: Strip leading spaces on dns return value
  2060. (689563 - Simon L Nielsen)
  2061. 2003-02-20 03:16 kdebisschop
  2062. * plugins-scripts/check_disk_smb.pl: option regexs need to include
  2063. ^ and $
  2064. 2003-02-19 22:56 tonvoon
  2065. * lib/Makefile.am: Removing getloadavg.m4 from dist
  2066. 2003-02-19 08:36 kdebisschop
  2067. * INSTALL, configure.in, lib/getloadavg.m4, tools/setup: remove
  2068. getloadavg.m4
  2069. 2003-02-19 00:45 tonvoon
  2070. * Makefile.am, configure.in, getloadavg.m4, lib/Makefile.am,
  2071. lib/getloadavg.c, lib/getloadavg.m4, plugins/Makefile.am,
  2072. plugins/getloadavg.c: Move getloadavg to lib directory. Must run
  2073. "aclocal -I lib"
  2074. 2003-02-18 23:00 kdebisschop
  2075. * plugins/check_pgsql.c: spurious backslash escape
  2076. 2003-02-18 22:56 kdebisschop
  2077. * configure.in: set tag for beta3, fix pgsql detection
  2078. 2003-02-18 22:24 kdebisschop
  2079. * plugins/check_udp.c: never exited getopt loop
  2080. 2003-02-18 22:20 kdebisschop
  2081. * plugins/check_tcp.c: failed if header was more than 1023 bytes
  2082. 2003-02-18 22:10 tonvoon
  2083. * plugins/check_load.c: Fixed the output messages (Bug 688729 -
  2084. Jayjay)
  2085. 2003-02-18 21:58 tonvoon
  2086. * Makefile.am: Add SUPPORT file to distribution
  2087. 2003-02-18 21:56 tonvoon
  2088. * plugins/check_http.c: Fixed compiler warning and increased the
  2089. SSL random key for a Solaris PRNG problem
  2090. 2003-02-18 05:38 kdebisschop
  2091. * configure.in: remainder of ps fix for UnixWare, and move [] in
  2092. if/elif to indicate m4 quoting instead of test invocation
  2093. 2003-02-18 04:05 sghosh
  2094. * contrib/check_appletalk.pl: Appletalk ping plugin
  2095. 2003-02-18 04:04 sghosh
  2096. * plugins/check_snmp.c: OID type prefix patch [Patches-679403]
  2097. 2003-02-18 03:46 sghosh
  2098. * plugins/check_swap.c: support for Large swap sizes
  2099. 2003-02-18 03:17 sghosh
  2100. * configure.in: regex fix to catch *BSD swapinfo and not HP-UX
  2101. error and memory/file swap in addition to device for HP-UX
  2102. 2003-02-17 22:01 kdebisschop
  2103. * configure.in: typo in testing uname output
  2104. 2003-02-17 21:57 kdebisschop
  2105. * configure.in: ping and swap for unixware
  2106. 2003-02-17 21:04 kdebisschop
  2107. * configure.in: library search dirs are part of LDFLAGS
  2108. 2003-02-17 19:11 sghosh
  2109. * REQUIREMENTS: location updates
  2110. 2003-02-16 08:41 tonvoon
  2111. * plugins/Makefile.am: Fixed dependencies for check_nt
  2112. 2003-02-16 08:25 tonvoon
  2113. * plugins/check_nt.c: Coredump if no variable set (reported by Marc
  2114. C. Poulin)
  2115. 2003-02-16 02:46 egalstad
  2116. * contrib/check_dhcp.c: Interface patch byor Clemens Resen
  2117. 2003-02-16 02:18 sghosh
  2118. * plugins-scripts/check_ntp.pl: all alphanumeric accepted for refid
  2119. on ntpq
  2120. 2003-02-12 22:32 tonvoon
  2121. * plugins/.cvsignore: Added extra plugins
  2122. 2003-02-12 22:30 tonvoon
  2123. * lib/.cvsignore: Add ignore files
  2124. 2003-02-12 22:29 tonvoon
  2125. * plugins/negate.c: Remove unnecessary \ and fix coredump with no
  2126. parameters specified
  2127. 2003-02-12 22:27 tonvoon
  2128. * plugins/check_http.c: Remove unnecessary \ - complaints from
  2129. Tru64's cc compiler
  2130. 2003-02-12 22:21 tonvoon
  2131. * configure.in: Inadequate quoting for PS_FORMAT & removal of grep
  2132. "*** for Tru64
  2133. 2003-02-12 04:36 sghosh
  2134. * command.cfg.in: forced ntpq jitter check
  2135. 2003-02-12 04:32 sghosh
  2136. * plugins-scripts/check_ifoperstatus.pl: added timeout alarm
  2137. 2003-02-12 04:30 sghosh
  2138. * plugins-scripts/check_ntp.pl: fixed regex for stratum1 peer,
  2139. added logic for failed ntpq call(e.g. sntp host)
  2140. 2003-02-11 00:47 tonvoon
  2141. * plugins/check_mysql.c: Patch by Dave Viner for seg fault on RH
  2142. 7.3 (655903)
  2143. 2003-02-10 23:59 tonvoon
  2144. * configure.in: Update with references to REQUIREMENTS
  2145. 2003-02-10 23:58 tonvoon
  2146. * Requirements: Remove file, superceded by REQUIREMENTS
  2147. 2003-02-10 23:34 tonvoon
  2148. * plugins/: getopt.c, getopt.h, getopt1.c: Removing getopt files -
  2149. now in new lib directory
  2150. 2003-02-10 23:32 tonvoon
  2151. * lib/: Makefile.am, getopt.c, getopt.h, getopt1.c: New directory
  2152. for common library files
  2153. 2003-02-10 23:28 tonvoon
  2154. * plugins/common.h.in: Added in a define for HAVE_GETOPT_H for
  2155. backwards compatibility
  2156. 2003-02-10 23:27 tonvoon
  2157. * plugins/Makefile.am: Remove unnecessary getopt references and
  2158. link in lib directory
  2159. 2003-02-10 23:26 tonvoon
  2160. * configure.in: Removing checks for getopt.h - now always
  2161. available. Also support lib dir
  2162. 2003-02-10 23:24 tonvoon
  2163. * Makefile.am: Adding lib directory for getopts change
  2164. 2003-02-10 23:08 tonvoon
  2165. * configure.in: Fixed Tru64 ps command (Bug 669585 - Paula Arnold)
  2166. 2003-02-10 18:36 undrgrid
  2167. * plugins/check_ssh.c: Added argc checks before attempting to
  2168. access argv[]
  2169. Corrected return codes and output
  2170. 2003-02-10 14:18 undrgrid
  2171. * plugins/check_ssh.c: Revised code to use resolving and connection
  2172. code in utils.c and netutils.c rather than its own functions.
  2173. Corrected code to properly handle input of server hostname and
  2174. port on commandline without option flags.
  2175. 2003-02-10 04:49 kdebisschop
  2176. * contrib/check_fping_in.c: this plugin is in core as check_fping
  2177. 2003-02-09 18:59 undrgrid
  2178. * tools/setup: Reordered program calls so autoheader was called
  2179. before automake thus getting rid of errors for header files not
  2180. being present when automake was called. Also puts it inline with
  2181. documentation in INSTALL & INSTALLING
  2182. 2003-02-09 14:20 sghosh
  2183. * contrib/: check_adptraid.sh, check_compaq_insight.pl,
  2184. check_file_age.pl: new plugins
  2185. 2003-02-09 14:18 sghosh
  2186. * contrib/: README.TXT, readme.txt: file rename
  2187. 2003-02-09 14:16 sghosh
  2188. * contrib/: check_remote_nagios_status.pl, check_wins.pl,
  2189. sched_downtime.pl: more contribs
  2190. 2003-02-09 14:03 sghosh
  2191. * contrib/tarballs/: fetchlog-0.92.tar.gz, fetchlog-0.94.tar.gz:
  2192. new version
  2193. 2003-02-09 12:54 kdebisschop
  2194. * CODING, README: spell check
  2195. 2003-02-09 12:36 kdebisschop
  2196. * FAQ: spell check
  2197. 2003-02-09 12:17 sghosh
  2198. * SUPPORT: ispell
  2199. 2003-02-08 06:00 kdebisschop
  2200. * plugins/check_pgsql.c: use enum instead of define
  2201. 2003-02-08 05:58 kdebisschop
  2202. * FAQ: add item on submitting new plugins
  2203. 2003-02-08 05:57 kdebisschop
  2204. * SUPPORT: suggest minimum standards for support requests
  2205. 2003-02-08 05:32 kdebisschop
  2206. * plugins/check_http.c: submit request with one send
  2207. 2003-02-05 05:59 kdebisschop
  2208. * configure.in: fix for SSL build on RedHat rawhide
  2209. 2003-02-05 05:58 kdebisschop
  2210. * plugins/check_dns.c: allow check to proceed using servers from
  2211. resolv.conf
  2212. 2003-02-05 05:57 kdebisschop
  2213. * plugins/check_http.c: fix segfault due to bad asprintf invocation
  2214. 2003-02-04 06:24 sghosh
  2215. * plugins-scripts/Makefile.am: install user:grp perms [patch
  2216. 679703 -Detlef Boehm]
  2217. 2003-02-04 06:16 sghosh
  2218. * plugins-scripts/check_flexlm.pl: lmstat output update
  2219. 2003-02-04 05:54 sghosh
  2220. * plugins-scripts/check_ntp.pl: corrected ntpdate offset to seconds
  2221. 2003-02-03 21:43 tonvoon
  2222. * plugins/check_snmp.c: Avoid core dump with null or invalid data
  2223. (679400 - Mathieu Masseboeuf)
  2224. 2003-02-03 21:33 tonvoon
  2225. * plugins/Makefile.am: Patch for Mac OS X compile (652080 - Ton
  2226. Voon)
  2227. 2003-02-03 20:43 sghosh
  2228. * contrib/tarballs/check_cit.tgz: Citrix plugin
  2229. 2003-02-03 20:35 sghosh
  2230. * command.cfg.in: more sample command configurations
  2231. 2003-02-03 20:29 sghosh
  2232. * configure.in, plugins-scripts/check_ntp.pl,
  2233. plugins-scripts/utils.pm.in: change ntpdc to ntpq (Jonathan
  2234. Rozes,Thomas Schimpke, bug-656237 )
  2235. 2003-02-03 15:47 sghosh
  2236. * plugins-scripts/check_ntp.pl: patch for desync peer and ntpdate
  2237. (James Fidell)
  2238. 2003-02-03 05:29 sghosh
  2239. * plugins-scripts/check_ifstatus.pl: bugfix [bug 651021 mperry2]
  2240. 2003-02-03 05:07 sghosh
  2241. * plugins/check_hpjd.c: added default community [bug-patch #600349
  2242. jbaumgartner]
  2243. 2003-01-31 18:40 tonvoon
  2244. * plugins/check_procs.c: Fix for zombie processes on Solaris (Bug
  2245. 677803 - Matthew Brown)
  2246. 2003-01-31 18:36 tonvoon
  2247. * plugins/check_nt.c: Reapply all asprintf calls. Fix for %%
  2248. problem with -l flag.
  2249. 2003-01-31 01:26 tonvoon
  2250. * plugins/check_nt.c: Removed all unnecessary asprintf calls.
  2251. Replaced with original check_nt.c to minimise amount of changes
  2252. (reported by Reuben Farrelly)
  2253. 2003-01-30 23:18 tonvoon
  2254. * plugins/check_nt.c: Added reference to the official NSClient web
  2255. site
  2256. 2003-01-30 22:57 tonvoon
  2257. * plugins/check_swap.c: Fixed long --allswap option
  2258. 2003-01-30 22:55 tonvoon
  2259. * plugins/check_procs.c: Fixed progname
  2260. 2003-01-29 20:57 tonvoon
  2261. * plugins/check_mrtgtraf.c: Fixed error and success codes (638656 -
  2262. Paul Dlug)
  2263. 2003-01-29 20:47 tonvoon
  2264. * plugins-scripts/check_oracle.sh: Added cache and tablespace check
  2265. (621567 - John Marquart)
  2266. 2003-01-29 20:33 tonvoon
  2267. * plugins/: Makefile.am, check_nt.c: Added in check_nt for bug
  2268. 646516
  2269. 2003-01-29 06:38 kdebisschop
  2270. * plugins/check_mysql.c: remove incorrect check_disk() declaration
  2271. 2003-01-29 06:16 kdebisschop
  2272. * plugins/check_ldap.c: fix segfault when argc>=2 and the -H or -b
  2273. options are not supplied
  2274. 2003-01-29 06:15 kdebisschop
  2275. * plugins/check_by_ssh.c: 1.8
  2276. 2003-01-29 05:55 tonvoon
  2277. * plugins/check_http.c: Better error if server requests client
  2278. based certificate (609382 - Olaf Greis)
  2279. 2003-01-29 05:27 tonvoon
  2280. * contrib/check_dns_random.pl: Exit code added (604837 - Lachlan
  2281. Cameron-Smith)
  2282. 2003-01-29 05:10 tonvoon
  2283. * plugins-scripts/check_oracle.sh: Added dummy login test (650970 -
  2284. Ton Voon)
  2285. 2003-01-29 04:28 tonvoon
  2286. * plugins/check_vsz.c: Error when no params passed, better invalid
  2287. params message (652086 - Ton Voon)
  2288. 2003-01-29 04:11 tonvoon
  2289. * plugins/check_procs.c: Fixed NULL status in Solaris (644783 -
  2290. Fabian Pehla) Fixed -p options (652082 - Ton Voon)
  2291. 2003-01-28 07:44 kdebisschop
  2292. * contrib/checkciscotemp.pl: typo: had commented use Net::SNMP for
  2293. testing
  2294. 2003-01-28 07:42 kdebisschop
  2295. * plugins/check_real.c: make sure host_name is set and remove NULL
  2296. string inits that can lead to segfaults
  2297. 2003-01-28 07:26 kdebisschop
  2298. * plugins/check_mysql.c: missed argc check on port parameter
  2299. 2003-01-28 07:17 kdebisschop
  2300. * contrib/checkciscotemp.pl: split and validate input more robustly
  2301. 2003-01-28 07:15 kdebisschop
  2302. * plugins/check_http.c: remove NULL string inits that can lead to
  2303. segfaults
  2304. 2003-01-28 00:32 tonvoon
  2305. * configure.in: ps support for Darwin / MacOSX
  2306. 2003-01-27 11:53 kdebisschop
  2307. * plugins/check_http.c: do not pass host if none is provided
  2308. 2003-01-27 06:04 kdebisschop
  2309. * plugins/check_http.c: we were sending extra CRLF
  2310. 2003-01-19 06:34 kdebisschop
  2311. * plugins-scripts/check_rpc.pl: indicate new default state in
  2312. get_rpcinfo, also fix a bunch of indents for consistent format
  2313. 2003-01-17 05:56 sghosh
  2314. * plugins-scripts/check_rpc.pl: bug fix for state and opt_c
  2315. initialization
  2316. 2003-01-17 05:37 sghosh
  2317. * plugins/check_snmp.c: Counter32 tag parsing added
  2318. 2003-01-16 06:42 kdebisschop
  2319. * plugins/: check_mysql.c, check_pgsql.c: semicolon needed where
  2320. progname define was replaced
  2321. 2003-01-16 06:29 kdebisschop
  2322. * plugins/check_http.c: add option to let regex span newlines
  2323. 2003-01-16 06:28 kdebisschop
  2324. * plugins/check_game.c: progname and print_usage need to be defined
  2325. 2003-01-16 06:22 kdebisschop
  2326. * plugins/check_radius.c: semicolon needed where praogname define
  2327. was replced
  2328. 2003-01-16 06:10 kdebisschop
  2329. * plugins/check_hpjd.c: semicolon needed where praogname define was
  2330. replced
  2331. 2003-01-16 05:22 kdebisschop
  2332. * configure.in: find kerberos libs in latest Red Hat beta
  2333. 2003-01-16 05:21 kdebisschop
  2334. * plugins/utils.c: restore max() macro
  2335. 2003-01-16 05:20 kdebisschop
  2336. * plugins/check_tcp.c: cleanup progname assignment
  2337. 2003-01-16 05:19 kdebisschop
  2338. * plugins-scripts/check_disk_smb.pl: accept $ for share and \\ for
  2339. users
  2340. 2003-01-16 05:17 kdebisschop
  2341. * plugins/check_by_ssh.c: avoid segfault when host is not given
  2342. 2003-01-13 12:21 kdebisschop
  2343. * contrib/: check_dhcp.c, check_fping_in.c, check_rbl.c: convert
  2344. PROGANE from a define to a const char
  2345. 2003-01-13 12:15 kdebisschop
  2346. * plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
  2347. check_dummy.c, check_fping.c, check_hpjd.c, check_http.c,
  2348. check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
  2349. check_mysql.c, check_nagios.c, check_nwstat.c, check_overcr.c,
  2350. check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
  2351. check_real.c, check_smtp.c, check_snmp.c, check_ssh.c,
  2352. check_swap.c, check_tcp.c, check_time.c, check_udp.c,
  2353. check_ups.c, check_users.c, check_vsz.c, negate.c, urlize.c,
  2354. utils.c, utils.h.in: convert PROGANE from a define to a const
  2355. char
  2356. 2003-01-13 12:13 kdebisschop
  2357. * plugins/popen.c: change exit status to be POSIX compliant
  2358. 2003-01-13 12:09 kdebisschop
  2359. * plugins/check_nagios.c: check for a few null strings, change
  2360. PROGNAME from #define to const *char
  2361. 2003-01-13 04:50 kdebisschop
  2362. * plugins/check_disk.c: add options for excluding devices and for
  2363. skipping OK devices in summary
  2364. 2003-01-03 03:24 kdebisschop
  2365. * plugins/utils.c: protect against some null strings, make formats
  2366. more uniform
  2367. 2002-12-19 19:30 kdebisschop
  2368. * plugins/check_tcp.c: expect is +OK for SPOP too
  2369. 2002-12-19 19:29 kdebisschop
  2370. * plugins/check_tcp.c: server expect not getting set, expect is +OK
  2371. for POP
  2372. 2002-12-19 19:20 kdebisschop
  2373. * plugins/check_http.c: remove spurious CRLF
  2374. 2002-11-29 12:02 stanleyhopcroft
  2375. * contrib/check_citrix:
  2376. New plugin to check the ICA browse service (used by Citrix
  2377. Metaframe servers) from Ed Rolison and Tom De Blende.
  2378. 2002-11-25 12:00 kdebisschop
  2379. * plugins/check_tcp.c: was segfaulting if no dtat was returned
  2380. 2002-11-24 13:43 kdebisschop
  2381. * tools/snapshot: some fixes needed to move off old devel box
  2382. 2002-11-24 13:09 kdebisschop
  2383. * tools/snapshot: make routine snapshots of nagios and plugin CVS
  2384. to expand testing
  2385. 2002-11-22 10:52 kdebisschop
  2386. * plugins/check_ups.c: add replace battery condition, replace
  2387. unchecked strcat calls with asprintf (I do not think buffer
  2388. overflow was possible here, but lets be consistent)
  2389. 2002-11-22 02:46 kdebisschop
  2390. * configure.in: get long args output to work on check_procs by
  2391. putting incantations with -w ahead of others
  2392. 2002-11-22 02:33 kdebisschop
  2393. * configure.in: get long args output to work on linux check_procs,
  2394. actually works this time (needs OpenBSD testing)
  2395. 2002-11-22 01:33 kdebisschop
  2396. * plugins/check_procs.c: add a few comments, trap a few place where
  2397. a NULL string might have been handled
  2398. 2002-11-22 01:31 kdebisschop
  2399. * configure.in: get long args output to work on linux check_procs
  2400. (needs OpenBSD testing)
  2401. 2002-11-21 12:40 kdebisschop
  2402. * plugins/check_dig.c: fix empty output on errors
  2403. 2002-11-20 11:56 kdebisschop
  2404. * plugins/check_swap.c: add switch to evaluate each swap
  2405. individually
  2406. 2002-11-20 11:28 kdebisschop
  2407. * plugins/check_dig.c: fix solaris SEGV, still need to print
  2408. meaningful error text
  2409. 2002-11-20 01:19 kdebisschop
  2410. * plugins/check_by_ssh.c: in short options, t no no argument
  2411. 2002-11-20 01:09 kdebisschop
  2412. * plugins/check_dig.c: replace some strcpy with strscpy
  2413. 2002-11-19 19:13 kdebisschop
  2414. * plugins/Makefile.am: another try at portable symlinking
  2415. 2002-11-19 19:07 kdebisschop
  2416. * plugins/Makefile.am: another try at portable symlinking
  2417. 2002-11-19 19:06 kdebisschop
  2418. * plugins/check_time.c: explicitly cast recv() arg2 for SunOS5.6
  2419. 2002-11-19 07:13 kdebisschop
  2420. * plugins/Makefile.am: rewrite of install-exec-hook for solaris
  2421. 2002-11-18 21:58 sghosh
  2422. * contrib/: check_javaproc.pl, nagios_sendim.pl: javaproc, sendim
  2423. 2002-11-18 14:46 sghosh
  2424. * contrib-reporting/process_perfdata.pl: New directory to for
  2425. perfdata and reporting scripts
  2426. 2002-11-18 11:24 kdebisschop
  2427. * plugins/check_swap.c: test total swap instead of individual disks
  2428. 2002-11-18 07:23 kdebisschop
  2429. * plugins/check_disk.c: failed to handle multple disks
  2430. 2002-11-18 07:22 kdebisschop
  2431. * plugins/utils.c: more readable max_state() code
  2432. 2002-11-16 12:57 kdebisschop
  2433. * plugins/Makefile.am: fix too many sources problem for programs
  2434. tha are symlinks to check_tcp
  2435. 2002-11-16 04:59 kdebisschop
  2436. * plugins/check_snmp.c: my take on Subhendu's patches, plus a few
  2437. comments for clarity
  2438. 2002-11-15 17:47 sghosh
  2439. * plugins/check_snmp.c: memory bounds in options, no output
  2440. comparison case
  2441. 2002-11-15 04:51 kdebisschop
  2442. * nagios-plugins.spec.in: make spec work again, now that release is
  2443. in source name again
  2444. 2002-11-15 00:51 kdebisschop
  2445. * configure.in: release numbering fix
  2446. 2002-11-15 00:50 kdebisschop
  2447. * plugins/check_snmp.c: fix label handling, replace accidentally
  2448. deleted elseif l.310
  2449. 2002-11-14 18:25 kdebisschop
  2450. * Makefile.am, acconfig.h, configure.in, nagios-plugins.spec.in,
  2451. plugins/utils.c: fix bug with gettimeofday test, improve
  2452. version/release handling, update rpm spec
  2453. 2002-11-14 18:23 kdebisschop
  2454. * plugins/Makefile.am: fix typo in snprintf build
  2455. 2002-11-14 05:36 kdebisschop
  2456. * plugins/Makefile.am: can't drop these sources -- neded for dist
  2457. 2002-11-14 05:27 kdebisschop
  2458. * plugins/Makefile.am: fix build rule for snprintf
  2459. 2002-11-14 05:25 kdebisschop
  2460. * plugins/check_http.c: pagesize count off by one
  2461. 2002-11-14 04:45 kdebisschop
  2462. * plugins/check_http.c: clean up NULL from status on Solaris
  2463. 2002-11-14 04:00 kdebisschop
  2464. * configure.in: typo in AC_DEFINE of PS_FORMAT for solaris
  2465. 2002-11-14 03:37 kdebisschop
  2466. * plugins/Makefile.am: remove check_nt again
  2467. 2002-11-14 03:09 kdebisschop
  2468. * plugins/Makefile.am: back out last change -- it was only work in
  2469. progress
  2470. 2002-11-14 02:26 kdebisschop
  2471. * plugins/: Makefile.am, check_dns.c, check_ldap.c, check_mrtg.c,
  2472. check_mrtgtraf.c, check_nwstat.c, check_radius.c, utils.c,
  2473. version.h.in: remove call_getopt and ssprintf
  2474. 2002-11-13 11:50 kdebisschop
  2475. * plugins/: check_disk.c, check_dns.c, check_fping.c, check_hpjd.c,
  2476. check_mrtg.c, check_nwstat.c, check_ping.c, check_vsz.c,
  2477. urlize.c, utils.c: remove call_getopt and asprintf
  2478. 2002-11-12 11:28 kdebisschop
  2479. * plugins/check_dig.c: cleanup asprintf, old function decls
  2480. 2002-11-12 11:26 kdebisschop
  2481. * plugins/: check_mysql.c, check_real.c, check_ups.c: remove
  2482. call_getopt
  2483. 2002-11-11 22:15 sghosh
  2484. * plugins/check_snmp.c: should use asprintf
  2485. 2002-11-11 20:19 sghosh
  2486. * plugins/check_snmp.c: more snmpv3 patches
  2487. 2002-11-11 19:29 sghosh
  2488. * plugins/check_snmp.c: long opt for miblist, snmpv3 support
  2489. (rosenauer)
  2490. 2002-11-11 16:04 sghosh
  2491. * plugins/check_snmp.c: option to specify a miblist - llow
  2492. 2002-11-11 15:43 sghosh
  2493. * plugins/check_snmp.c: misc doc fix, missing verbose option
  2494. 2002-11-09 11:37 kdebisschop
  2495. * plugins/: check_ups.c, check_users.c: remove call_getopt
  2496. 2002-11-09 04:22 kdebisschop
  2497. * plugins/: check_by_ssh.c, check_dig.c, check_ping.c,
  2498. check_time.c: remove call_getopt
  2499. 2002-11-09 04:21 kdebisschop
  2500. * plugins/check_snmp.c: cleaner handling of DEFAULT_PORT
  2501. 2002-11-09 03:43 kdebisschop
  2502. * configure.in: add HPUX swap, try to cleanup getopt processing
  2503. 2002-11-09 03:39 kdebisschop
  2504. * plugins/: check_pgsql.c, check_ping.c, check_snmp.c, negate.c,
  2505. utils.h.in: define and use usage3 where second part of message is
  2506. a an int/char
  2507. 2002-11-09 03:16 kdebisschop
  2508. * plugins/snprintf.c: HAVE_C99_SNPRINTF is not tested, so remove
  2509. from ifdef
  2510. 2002-11-08 08:07 kdebisschop
  2511. * plugins/check_snmp.c: user reports NULL still getting into
  2512. asprintf
  2513. 2002-11-08 08:06 kdebisschop
  2514. * plugins/check_vsz.c: remove call_getopt
  2515. 2002-11-08 07:20 kdebisschop
  2516. * acconfig.h, configure.in, plugins/common.h.in, plugins/utils.c,
  2517. plugins/utils.h.in: patches required to build on solaris with
  2518. asprintf and gettimeofday
  2519. 2002-11-08 07:18 kdebisschop
  2520. * plugins/: check_http.c, check_load.c, check_ping.c,
  2521. check_procs.c, check_smtp.c, check_tcp.c: remove unused variables
  2522. 2002-11-08 07:17 kdebisschop
  2523. * tools/oneliners: some useful onliners
  2524. 2002-11-07 14:30 kdebisschop
  2525. * plugins/check_snmp.c: bugfixes to command format and (null) text
  2526. created by asprintf switch
  2527. 2002-11-07 07:07 kdebisschop
  2528. * plugins/check_by_ssh.c: remove call_getopt, add [] arougn time
  2529. 2002-11-07 07:06 kdebisschop
  2530. * configure.in: test snprintf function family for ifdefs in
  2531. snprintf.c
  2532. 2002-10-30 18:47 kdebisschop
  2533. * plugins/check_tcp.c: replace fixed-lentgh buffer with asprintf
  2534. 2002-10-30 18:46 kdebisschop
  2535. * plugins/check_udp.c: forgot to remove call_getopt
  2536. 2002-10-30 18:44 kdebisschop
  2537. * plugins/: check_ssh.c, check_swap.c: forgot to remove call_getopt
  2538. declaration
  2539. 2002-10-30 18:29 kdebisschop
  2540. * plugins/check_smtp.c: remove call_getopt, fix several buffer
  2541. overruns possible due to use of fixed size buffers
  2542. 2002-10-30 18:22 kdebisschop
  2543. * tools/setup: debian builds not actively maintained, so suppress
  2544. error in setup script
  2545. 2002-10-30 05:07 sghosh
  2546. * acconfig.h, configure.in, plugins-scripts/Makefile.am,
  2547. plugins-scripts/check_mailq.pl, plugins-scripts/utils.pm.in:
  2548. monitor mailq
  2549. 2002-10-28 13:05 kdebisschop
  2550. * plugins-scripts/: check_breeze.pl, check_disk_smb.pl,
  2551. check_flexlm.pl, check_log.sh, check_ntp.pl, check_rpc.pl,
  2552. check_sensors.sh, check_wave.pl: remove pspace in shebang since
  2553. no sequent users replied
  2554. 2002-10-26 14:30 kdebisschop
  2555. * nagios-plugins.spec.in: release should not be in tarball name
  2556. 2002-10-25 14:58 kdebisschop
  2557. * nagios-plugins.spec.in: tweak source macro
  2558. 2002-10-25 13:35 kdebisschop
  2559. * plugins/Makefile.am: remove check_nt
  2560. 2002-10-25 03:31 kdebisschop
  2561. * Makefile.am, plugins/Makefile.am: include getloadavg sources, add
  2562. some Solaris pkg build support
  2563. 2002-10-22 10:13 kdebisschop
  2564. * plugins/check_ssh.c: remove call_getopt, replace ssprintf with
  2565. asprintf,better server version reporting
  2566. 2002-10-22 09:54 kdebisschop
  2567. * plugins/check_tcp.c: add check_spop
  2568. 2002-10-22 09:19 kdebisschop
  2569. * plugins/check_procs.c: remove call_getopt, replace ssprintf with
  2570. asprintf
  2571. 2002-10-22 03:57 sghosh
  2572. * contrib/check_procr.sh: From: Jerome Tytgat - checks to see if
  2573. named process is running
  2574. 2002-10-22 02:31 sghosh
  2575. * README, plugins/check_nt.c: check_nt is downloadable from
  2576. nsclient.ready2run.nl
  2577. 2002-10-21 06:04 kdebisschop
  2578. * plugins/check_swap.c: use asprintf instead of ssprintf
  2579. 2002-10-21 05:36 kdebisschop
  2580. * plugins/Makefile.am: need to define SOURCES for check_tcp to also
  2581. build as check_ftp,check_imap,check_nntp,check_pop
  2582. 2002-10-21 05:05 kdebisschop
  2583. * plugins/utils.c: use asprintf to do strscpy
  2584. 2002-10-21 05:04 kdebisschop
  2585. * plugins/Makefile.am: roll check_ftp, check_imap, check_pop, and
  2586. check_nntp into check_tcp
  2587. 2002-10-21 05:03 kdebisschop
  2588. * plugins/: check_ftp.c, check_imap.c, check_nntp.c, check_pop.c:
  2589. these are all combined into check_tcp now
  2590. 2002-10-21 04:55 kdebisschop
  2591. * plugins/check_load.c: remove broken call_getopt
  2592. 2002-10-21 04:43 kdebisschop
  2593. * plugins/check_snmp.c: cleanup process_arguments, print_help, and
  2594. print_usage
  2595. 2002-10-21 04:40 kdebisschop
  2596. * plugins/check_pgsql.c: now we provide long opts if they do not
  2597. exist
  2598. 2002-10-20 21:22 kdebisschop
  2599. * plugins/check_snmp.c: fixed scanning for multiple OIDs, which was
  2600. not working
  2601. 2002-10-20 19:49 kdebisschop
  2602. * plugins/check_snmp.c: change ssprintf to asprintf back out change
  2603. at line 225 in r1.4 (values were mismatched to format string,
  2604. so output was nonsense) (I left a comment showing a construct
  2605. that should work, but it fails for PHBs: if my disk gets
  2606. nearly full, they want 'CRITICAL - 99%' not 'CRITICAL - Gauge32:
  2607. 99') (If someine has a rationale for the change, maybe it could
  2608. be done as an option? - it seems fairly clear that the Web
  2609. display should be sensible to PHBs so long as there's no real
  2610. loss)
  2611. 2002-10-18 07:41 kdebisschop
  2612. * plugins/check_swap.c: remove old call_getopt
  2613. 2002-10-18 06:55 kdebisschop
  2614. * plugins/check_load.c: remove old call_getopt code, fix bug taking
  2615. single float, allow colon as separators in additin to commas
  2616. 2002-10-18 05:41 kdebisschop
  2617. * plugins/utils.c: handle null src in strscat
  2618. 2002-10-18 04:48 kdebisschop
  2619. * plugins/check_tcp.c: millisecond timing
  2620. 2002-10-18 04:46 kdebisschop
  2621. * plugins/utils.h.in: refine STD_LONG_OPTS
  2622. 2002-10-18 04:46 kdebisschop
  2623. * plugins/check_http.c: provide on more decimal point printing time
  2624. 2002-10-18 04:45 kdebisschop
  2625. * plugins/check_ping.c: remove broken call_getopt stuff
  2626. 2002-10-17 07:09 kdebisschop
  2627. * plugins/check_tcp.c: using asprintf
  2628. 2002-10-17 07:06 kdebisschop
  2629. * INSTALL, INSTALLING, tools/setup: revise now that aclocal is
  2630. remved from CVS
  2631. 2002-10-16 23:26 kdebisschop
  2632. * configure.in: need some quoting on ifdef
  2633. 2002-10-16 23:17 kdebisschop
  2634. * acinclude.m4, configure.in: finally a working fix for
  2635. AM/AC_FUNC_STRTOD nightmare
  2636. 2002-10-16 23:01 kdebisschop
  2637. * configure.in: mismatched quote
  2638. 2002-10-16 22:54 kdebisschop
  2639. * configure.in: missing commas
  2640. 2002-10-16 22:46 kdebisschop
  2641. * configure.in: complains on paren in comment
  2642. 2002-10-16 22:43 kdebisschop
  2643. * acinclude.m4: lost a paren
  2644. 2002-10-16 22:41 kdebisschop
  2645. * acinclude.m4: old auto???? has AM_FUNC_STRTOD, now renamed
  2646. AC_FUNC_STRTOD
  2647. 2002-10-16 22:32 kdebisschop
  2648. * plugins/: check_http.c, utils.c, utils.h.in: millisecond timimg
  2649. where supported
  2650. 2002-10-16 22:31 kdebisschop
  2651. * configure.in, missing: build cleanly on RedHat 8.0
  2652. 2002-10-16 11:46 kdebisschop
  2653. * .cvsignore: ignore aclocal.m4
  2654. 2002-10-16 11:34 kdebisschop
  2655. * configure.in: AM_STRTOD was a typo
  2656. 2002-10-16 11:31 kdebisschop
  2657. * aclocal.m4: automake invokes acloacl on each run - it cannot be
  2658. right to include this
  2659. 2002-10-16 11:18 kdebisschop
  2660. * acconfig.h: better checks for vsnprintf stuff
  2661. 2002-10-16 11:14 kdebisschop
  2662. * plugins/check_http.c, configure.in: use asprintf
  2663. 2002-10-16 11:14 kdebisschop
  2664. * plugins/utils.c: use asprintf to construct strscat
  2665. 2002-10-16 05:57 kdebisschop
  2666. * plugins/popen.h.in: timeout interval is extern
  2667. 2002-10-16 05:56 kdebisschop
  2668. * plugins/: utils.h.in, utils.c: start support for gettimeofday and
  2669. tv_usec
  2670. 2002-10-16 05:54 kdebisschop
  2671. * aclocal.m4: generated with automake 1.6 / autoconf 2.53 (maybe
  2672. should not be in CVS, however)
  2673. 2002-10-16 05:52 kdebisschop
  2674. * plugins/snprintf.c: newer snprintf from samba.org
  2675. 2002-10-16 05:43 kdebisschop
  2676. * Makefile.am: cosmetic line wrap before 80 chars
  2677. 2002-10-16 05:42 kdebisschop
  2678. * depcomp, .cvsignore: needed for automake 1.6 / autoconf 2.53
  2679. 2002-10-16 05:41 kdebisschop
  2680. * configure.in: work with newer automake, begin swithc to asprintf
  2681. 2002-10-15 07:23 sghosh
  2682. * plugins-scripts/check_ifoperstatus.pl: new exit states, more
  2683. conditional checking
  2684. 2002-10-07 20:05 sghosh
  2685. * plugins/check_dns.c: patch for expected IP address
  2686. 2002-10-07 02:34 kdebisschop
  2687. * plugins/popen.c: make sure we do not run past the end of an
  2688. unterminated string
  2689. 2002-10-07 02:19 kdebisschop
  2690. * plugins/negate.c: use asprintf, inhibit splint warning
  2691. 2002-10-05 12:08 kdebisschop
  2692. * getloadavg.m4, plugins/getloadavg.c: lets use library instead od
  2693. inconsistent command line interfaces
  2694. 2002-09-26 03:17 kdebisschop
  2695. * plugins/urlize.c: use ssprintf instead of sprintf
  2696. 2002-09-25 09:01 kdebisschop
  2697. * plugins/check_http.c: incorporate comment on my_recv from Russell
  2698. Scibetti
  2699. 2002-09-25 08:58 kdebisschop
  2700. * plugins/check_http.c: incorporate comments from Russell Scibetti
  2701. 2002-09-24 06:16 kdebisschop
  2702. * plugins/check_http.c: replace remaining occurences of sprintf
  2703. with snprintf
  2704. 2002-09-16 01:47 kdebisschop
  2705. * INSTALL: needed for latest autoconf
  2706. 2002-09-16 01:47 kdebisschop
  2707. * Makefile.am, aclocal.m4, configure.in, nagios-plugins.spec.in:
  2708. finish ckleanup of rpm spec porcessing
  2709. 2002-09-14 22:11 kdebisschop
  2710. * nagios-plugins.spec, nagios-plugins.spec.in: complete spec based
  2711. on confugure.in
  2712. 2002-09-14 22:06 kdebisschop
  2713. * make-tarball, rpm: automake makes the dist tarball, rpmbuild -ta
  2714. makes the rpm
  2715. 2002-09-14 03:27 kdebisschop
  2716. * plugins/check_tcp.c: time data in performance string
  2717. 2002-09-14 03:23 kdebisschop
  2718. * plugins/check_http.c: time data in performance string
  2719. 2002-09-14 03:13 kdebisschop
  2720. * plugins-scripts/check_log.sh: patch from Matthew Peters
  2721. <mattp@esec.com.au>, plus turned up a few bugs on my own
  2722. 2002-09-12 03:43 kdebisschop
  2723. * plugins/Makefile.am: negate wrapper
  2724. 2002-09-08 13:05 kdebisschop
  2725. * plugins/negate.c: wrapper to invert return status
  2726. 2002-09-08 13:05 kdebisschop
  2727. * plugins/utils.c: clears up warnings in splint
  2728. 2002-09-06 03:25 kdebisschop
  2729. * plugins-scripts/check_rpc.pl: case on key to ERRORS hash
  2730. 2002-09-04 07:00 sghosh
  2731. * configure.in: more Mysql patches
  2732. 2002-09-04 03:12 sghosh
  2733. * plugins-scripts/check_ntp.pl: dispersion check now controlled by
  2734. warn and crit
  2735. 2002-09-04 03:11 sghosh
  2736. * configure.in: Mysql dir fix
  2737. 2002-09-04 03:10 sghosh
  2738. * contrib/: check_ifoperstatus.pl, check_ifstatus.pl: moved to
  2739. supported plugins-scripts
  2740. 2002-09-02 19:47 sghosh
  2741. * plugins/check_smtp.c: new -f option for adding a FROM address for
  2742. RFC correctness
  2743. 2002-09-01 17:22 sghosh
  2744. * INSTALL, INSTALLING: file rename for MacOS X
  2745. 2002-09-01 17:18 sghosh
  2746. * plugins/check_smtp.c: Valid MAIL command
  2747. 2002-08-22 23:08 sghosh
  2748. * contrib/check_snmp_process_monitor.pl: updates
  2749. 2002-08-22 15:43 sghosh
  2750. * command.cfg.in: smsclient config
  2751. 2002-08-22 15:42 sghosh
  2752. * contrib/: check_snmp_disk_monitor.pl,
  2753. check_snmp_process_monitor.pl: new plugins contrib
  2754. 2002-08-18 19:03 kdebisschop
  2755. * plugins/check_by_ssh.c: typo in options passed to ssh for ipv6.
  2756. fix by setting a generic hook for 1-char pasthhru options
  2757. 2002-08-14 20:17 sghosh
  2758. * plugins-scripts/check_disk_smb.pl: patch for admin shares
  2759. 2002-08-14 20:07 sghosh
  2760. * command.cfg.in: qpage definitions
  2761. 2002-08-14 20:06 sghosh
  2762. * plugins-scripts/check_ifstatus.pl: skip PPP interfaces
  2763. 2002-08-14 20:04 sghosh
  2764. * plugins/check_smtp.c: added HELO command
  2765. 2002-08-14 20:04 sghosh
  2766. * plugins/check_by_ssh.c: ipv4/ipv6 switch added
  2767. 2002-08-14 20:03 sghosh
  2768. * plugins/check_hpjd.c: net-snmp v5x fix
  2769. 2002-08-14 20:02 sghosh
  2770. * contrib/check_apc_ups.pl: fix for ePN
  2771. 2002-08-14 20:01 sghosh
  2772. * contrib/: check_linux_raid.pl, check_nagios_db.pl: new plugins
  2773. 2002-08-14 20:00 sghosh
  2774. * contrib/check_inodes-freebsd.pl: check inodes - freebsd -
  2775. candidate for merge with check_inodes
  2776. 2002-08-14 16:29 sghosh
  2777. * contrib/check_smb.sh: new smb check - users
  2778. 2002-08-13 04:18 egalstad
  2779. * plugins/check_game.c: Mod to display current/max number of
  2780. players in a game (Frank Kannemann)
  2781. 2002-08-13 00:09 egalstad
  2782. * contrib/check_disk_snmp.pl: Updated to use getopt (Christoph
  2783. Maser)
  2784. 2002-08-01 06:06 sghosh
  2785. * plugins/check_snmp.c: re-patched exit state comparison
  2786. 2002-08-01 05:54 sghosh
  2787. * plugins/check_snmp.c: port option added, -c support net-snmpv5,
  2788. complete response string output
  2789. 2002-08-01 05:46 egalstad
  2790. * contrib/check_digitemp.pl: Add Brian Lane's Digitemp (1-wire temp
  2791. sensor) plugin
  2792. 2002-07-16 05:13 egalstad
  2793. * contrib/check_disk_snmp.pl: Christoph Maser's plugin to check
  2794. disk usage via SNMP3
  2795. 2002-07-16 01:04 stanleyhopcroft
  2796. * contrib/check_ms_spooler.pl: Primitive and in need of refinement
  2797. test of MS spooler (with smbclient)
  2798. 2002-07-04 23:02 sghosh
  2799. * contrib/check_procl.sh: Jerome Tytgat - accumulated/percentage
  2800. CPU/MEM per process - bash plugin
  2801. 2002-07-04 05:05 sghosh
  2802. * INSTALL: doc update
  2803. 2002-06-28 22:08 sghosh
  2804. * INSTALL: note about autoconf/automake version
  2805. 2002-06-25 22:32 sghosh
  2806. * contrib/check_rbl.c: Check if IP address is specified on RBL -
  2807. Tim Bell
  2808. 2002-06-25 14:55 sghosh
  2809. * contrib/check_lmmon.pl: check motherboard/cpu temp via lmmon
  2810. 2002-06-24 22:29 sghosh
  2811. * plugins/check_http.c: ignore return status codes if user
  2812. specified status line check
  2813. 2002-06-24 21:41 sghosh
  2814. * plugins/check_snmp.c: printf bug for large numbers - Jeff Murray
  2815. 2002-06-20 05:27 sghosh
  2816. * plugins-scripts/check_disk_smb.pl: logic fix for disk space
  2817. thresholds
  2818. 2002-06-19 06:11 sghosh
  2819. * plugins/: check_dig.c, check_dns.c, check_fping.c, check_hpjd.c,
  2820. check_nagios.c, check_ping.c, check_snmp.c, check_vsz.c,
  2821. urlize.c, utils.c, utils.h.in: more POSIX return value comparison
  2822. related code fixes
  2823. 2002-06-19 04:09 sghosh
  2824. * plugins/: check_disk.c, check_ping.c, check_procs.c: fixes for
  2825. using POSIX return codes
  2826. 2002-06-18 02:06 sghosh
  2827. * plugins/common.h.in: updated to POSIX return codes
  2828. 2002-06-18 02:05 sghosh
  2829. * contrib/check_cluster.c: Ethan's check_cluster
  2830. 2002-06-13 21:49 sghosh
  2831. * plugins/check_smtp.c: conformance to RFC 821 <CRLF>
  2832. 2002-06-13 04:03 sghosh
  2833. * configure.in: use xntpdc on Solaris for check_ntp
  2834. 2002-06-10 04:24 sghosh
  2835. * plugins/check_smtp.c: patch to stop NOQUEUE syslog messages -
  2836. Karl Ewald
  2837. 2002-06-08 01:33 sghosh
  2838. * plugins-scripts/check_ntp.pl: xntpdc/ntpdc patch - John Koyle
  2839. 2002-06-06 05:16 sghosh
  2840. * plugins-scripts/: subst.in, utils.sh.in: corrected result codes -
  2841. for sh; corrected substition for libexec - Tom Bertelson
  2842. 2002-06-06 05:15 sghosh
  2843. * plugins/check_disk.c: added option for mount point - Tom
  2844. Bertelson
  2845. 2002-06-06 05:15 sghosh
  2846. * plugins-scripts/check_oracle.sh: Add test for Oracle name server,
  2847. can dynamicall determine ORACLE_HOME - tom Bertelson
  2848. 2002-06-06 05:14 sghosh
  2849. * plugins-scripts/check_flexlm.pl: conditional on lmstat
  2850. 2002-06-06 05:13 sghosh
  2851. * plugins-scripts/check_ntp.pl: conditional on ntpdc
  2852. 2002-05-29 01:57 sghosh
  2853. * command.cfg.in: notes added
  2854. 2002-05-28 04:14 sghosh
  2855. * command.cfg.in: option updates, more examples
  2856. 2002-05-28 03:41 sghosh
  2857. * command.cfg.in: option updates, more examples
  2858. 2002-05-27 03:10 sghosh
  2859. * plugins-scripts/check_ntp.pl: checked in too quickly
  2860. 2002-05-27 03:05 sghosh
  2861. * doc/: README, developer-guidelines.html,
  2862. developer-guidelines.sgml: added developer guidelines.
  2863. 2002-05-27 03:03 sghosh
  2864. * configure.in: typo, AIX 4.3 ps, smbclient, Net::SNMP fixes
  2865. 2002-05-27 03:01 sghosh
  2866. * acconfig.h, plugins-scripts/utils.pm.in: new var - smbclient
  2867. 2002-05-27 02:56 sghosh
  2868. * plugins-scripts/check_ntp.pl: logic reorg, ePN fix and support
  2869. for utils.pm
  2870. 2002-05-27 02:55 sghosh
  2871. * plugins-scripts/check_disk_smb.pl: ePN fix and support for
  2872. utils.pm
  2873. 2002-05-23 17:39 sghosh
  2874. * contrib/: check_log2.pl, check_vcs.pl: New plugins from Aaron
  2875. Bostick - Veritas Cluster, logfile
  2876. 2002-05-10 04:51 sghosh
  2877. * plugins-scripts/check_rpc.pl: updates for ePN, patch for multiple
  2878. version check
  2879. 2002-05-10 04:49 sghosh
  2880. * configure.in, plugins-scripts/utils.pm.in: added programs to
  2881. autoconf
  2882. 2002-05-10 04:49 sghosh
  2883. * acconfig.h: Added programs for autoconf
  2884. 2002-05-09 20:03 sghosh
  2885. * plugins-scripts/: Makefile.am, check_ifoperstatus.pl: migrated
  2886. check_ifoperstatus to standard plugin
  2887. 2002-05-08 16:35 sghosh
  2888. * plugins/check_ping.c: patch for Suse 8.0 loss output
  2889. 2002-05-08 06:10 sghosh
  2890. * plugins-scripts/utils.pm.in: is_hostname added, update CODES to
  2891. POSIX
  2892. 2002-05-08 06:07 sghosh
  2893. * plugins/: check_hpjd.c, check_ups.c: updated notes
  2894. 2002-05-08 06:04 sghosh
  2895. * configure.in: updated messages and check for host command
  2896. 2002-05-08 05:58 sghosh
  2897. * plugins-scripts/: Makefile.am, check_ifstatus.pl: moved updated
  2898. check_ifstatus to standard plugin
  2899. 2002-05-07 06:35 sghosh
  2900. * plugins-scripts/: check_breeze.pl, check_flexlm.pl,
  2901. check_ircd.pl, check_netdns.pl, check_ntp.pl, check_wave.pl: 2nd
  2902. fix for ePN
  2903. 2002-05-02 17:43 sghosh
  2904. * plugins-scripts/: check_breeze.pl, check_disk_smb.pl,
  2905. check_flexlm.pl, check_ircd.pl, check_netdns.pl, check_ntp.pl,
  2906. check_rpc.pl, check_wave.pl: fix for embedded perl
  2907. 2002-05-02 17:22 sghosh
  2908. * tools/: README, mini_epn.c, p1.pl: updated mini_epn and p1.pl
  2909. added to plugins distribution
  2910. 2002-05-01 22:12 sghosh
  2911. * contrib/tarballs/fetchlog-0.92.tar.gz: remote log check (via snmp
  2912. possible) by Alexander Haderer
  2913. 2002-04-29 03:58 kdebisschop
  2914. * plugins/getopt.h: failed to carry over from old plugins, listed
  2915. in EXTRA_DIST, needed for build
  2916. 2002-04-23 13:50 sghosh
  2917. * plugins/check_ping.c: corrected program name and added rtt patch
  2918. for RH7.2+beta
  2919. 2002-04-18 22:59 egalstad
  2920. * contrib/check_inodes.pl: add check_inodes contrib plugin by John
  2921. Jolet
  2922. 2002-04-18 05:38 egalstad
  2923. * configure.in: configure script patch for ping syntax
  2924. 2002-04-07 06:13 sghosh
  2925. * contrib/: check_backup.pl, check_dl_size.pl: plugins from Patrick
  2926. Greenwell
  2927. 2002-04-05 23:22 sghosh
  2928. * acconfig.h: added HOST_COMMAND
  2929. 2002-04-05 23:19 sghosh
  2930. * contrib/tarballs/check_spread.tar: plugin to check spread
  2931. messaging toolkit
  2932. 2002-04-03 03:58 sghosh
  2933. * contrib/check_oracle_instance.pl: from Sven Dolderer - check
  2934. oracle instance
  2935. 2002-04-03 03:56 sghosh
  2936. * plugins-scripts/check_nfs.pl: check_nfs functionality exists in
  2937. check_rpc
  2938. 2002-03-18 05:15 sghosh
  2939. * plugins-scripts/subst.in: function to update perl plugin scripts
  2940. to find utils.pm
  2941. 2002-03-01 02:53 egalstad
  2942. * plugins/: .cvsignore, config.h.in: Fix for stupid me
  2943. 2002-03-01 02:42 egalstad
  2944. * contrib/check_breeze.pl, contrib/check_dhcp.c,
  2945. contrib/check_flexlm.pl, contrib/check_hltherm.c,
  2946. contrib/check_hprsc.pl, contrib/check_ipxping.c,
  2947. contrib/check_memory.tgz, contrib/check_mysql.c,
  2948. contrib/check_uptime.c, contrib/check_wave.pl,
  2949. contrib/readme.txt, contrib/tarballs/berger-ping.tar.gz,
  2950. contrib/tarballs/bowen-langley_plugins.tar.gz,
  2951. contrib/tarballs/check_bgp-1.0.tar.gz,
  2952. contrib/tarballs/check_breeze.tar.gz,
  2953. contrib/tarballs/check_flexlm.tar.gz,
  2954. contrib/tarballs/check_hltherm.tar.gz,
  2955. contrib/tarballs/check_hprsc.tar.gz,
  2956. contrib/tarballs/check_memory.tgz,
  2957. contrib/tarballs/check_radius.tar.gz,
  2958. contrib/tarballs/check_wave.tar.gz,
  2959. contrib/tarballs/hopcroft-plugins.tar.gz,
  2960. contrib/tarballs/radius.tar.gz, plugins/.cvsignore,
  2961. plugins/config.h.in: Contrib plugin cleanup
  2962. 2002-02-28 06:42 egalstad
  2963. * .cvsignore, AUTHORS, CODING, COPYING, ChangeLog, FAQ, Helper.pm,
  2964. INSTALL, Makefile.am, NEWS, README, REQUIREMENTS, ROADMAP,
  2965. Requirements, acconfig.h, aclocal.m4, command.cfg.in, LEGAL,
  2966. configure.in, install-sh, make-tarball, missing, mkinstalldirs,
  2967. nagios-plugins.spec, opttest.pl, package.def, rpm, subst.in,
  2968. subst.sh, test.pl.in, contrib/check_apache.pl,
  2969. contrib/check_apc_ups.pl, contrib/check_bgpstate.pl,
  2970. contrib/check_dhcp.c, contrib/check_dlswcircuit.pl,
  2971. contrib/check_dns_random.pl, contrib/check_email_loop.pl,
  2972. contrib/check_fping_in.c, contrib/check_ftpget.pl,
  2973. contrib/check_ifoperstatus.pl, contrib/check_ifstatus.pl,
  2974. contrib/check_pop3.pl, contrib/check_qmailq.pl,
  2975. contrib/check_timeout.c, contrib/checkciscotemp.pl,
  2976. contrib/check_ipxping.c, contrib/check_joy.sh,
  2977. contrib/check_maxchannels.pl, contrib/check_maxwanstate.pl,
  2978. contrib/check_mem.pl, contrib/check_memory.tgz,
  2979. contrib/check_mysql.c, contrib/check_mysql.pl,
  2980. contrib/check_netapp.pl, contrib/check_nmap.py,
  2981. contrib/check_nwstat.pl, contrib/check_ora_table_space.pl,
  2982. contrib/check_rrd_data.pl, contrib/check_sap.sh,
  2983. contrib/check_sockets.pl, contrib/check_uptime.c,
  2984. contrib/maser-oracle.pl, contrib/mrtgext.pl, contrib/readme.txt,
  2985. contrib/restrict.pl, contrib/utils.py, contrib/check_nagios.pl,
  2986. contrib/urlize.pl, contrib/aix/check_crit_dsk,
  2987. contrib/aix/check_dsk, contrib/aix/check_failed,
  2988. contrib/aix/check_io, contrib/aix/check_kerberos,
  2989. contrib/aix/check_ping, contrib/aix/check_queue,
  2990. contrib/aix/pg_stat, contrib/tarballs/berger-ping.tar.gz,
  2991. contrib/tarballs/bowen-langley_plugins.tar.gz,
  2992. contrib/tarballs/check_bgp-1.0.tar.gz,
  2993. contrib/tarballs/check_breeze.tar.gz,
  2994. contrib/tarballs/check_flexlm.tar.gz,
  2995. contrib/tarballs/check_hltherm.tar.gz,
  2996. contrib/tarballs/check_hprsc.tar.gz,
  2997. contrib/tarballs/check_radius.tar.gz,
  2998. contrib/tarballs/check_wave.tar.gz,
  2999. contrib/tarballs/hopcroft-plugins.tar.gz,
  3000. contrib/tarballs/radius.tar.gz, plugins/.cvsignore,
  3001. plugins/Makefile.am, plugins/check_by_ssh.c, plugins/check_dig.c,
  3002. plugins/check_disk.c, plugins/check_dns.c, plugins/check_dummy.c,
  3003. plugins/check_fping.c, plugins/check_ftp.c, plugins/check_game.c,
  3004. plugins/check_hpjd.c, plugins/check_http.c,
  3005. plugins/check_ide-smart.c, plugins/check_imap.c,
  3006. plugins/check_ldap.c, plugins/check_load.c, plugins/check_mrtg.c,
  3007. plugins/check_mrtgtraf.c, plugins/check_mysql.c,
  3008. plugins/check_nntp.c, plugins/check_nt.c, plugins/check_nwstat.c,
  3009. plugins/check_overcr.c, plugins/check_pgsql.c,
  3010. plugins/check_ping.c, plugins/check_pop.c, plugins/check_procs.c,
  3011. plugins/check_radius.c, plugins/check_real.c,
  3012. plugins/check_smtp.c, plugins/check_snmp.c, plugins/check_ssh.c,
  3013. plugins/check_swap.c, plugins/check_tcp.c, plugins/check_time.c,
  3014. plugins/check_udp.c, plugins/check_ups.c, plugins/check_users.c,
  3015. plugins/check_vsz.c, plugins/common.h.in, plugins/getopt.c,
  3016. plugins/getopt1.c, plugins/netutils.c, plugins/netutils.h.in,
  3017. plugins/popen.c, plugins/popen.h.in, plugins/snprintf.c,
  3018. plugins/urlize.c, plugins/check_nagios.c, plugins/utils.c,
  3019. plugins/utils.h.in, plugins/version.h.in, plugins/t/check_disk.t,
  3020. plugins/t/check_dns.t, plugins/t/check_fping.t,
  3021. plugins/t/check_ftp.t, plugins/t/check_hpjd.t,
  3022. plugins/t/check_http.t, plugins/t/check_imap.t,
  3023. plugins/t/check_load.t, plugins/t/check_mysql.t,
  3024. plugins/t/check_ping.t, plugins/t/check_pop.t,
  3025. plugins/t/check_procs.t, plugins/t/check_smtp.t,
  3026. plugins/t/check_snmp.t, plugins/t/check_swap.t,
  3027. plugins/t/check_tcp.t, plugins/t/check_time.t,
  3028. plugins/t/check_udp.t, plugins/t/check_users.t,
  3029. plugins/t/check_vsz.t, plugins/tests/check_disk,
  3030. plugins/tests/check_dns, plugins/tests/check_ftp,
  3031. plugins/tests/check_hpjd, plugins/tests/check_http,
  3032. plugins/tests/check_load, plugins/tests/check_ping,
  3033. plugins/tests/check_procs, plugins/tests/check_swap,
  3034. plugins/tests/check_users, plugins/tests/check_vsz,
  3035. plugins-scripts/.cvsignore, plugins-scripts/Makefile.am,
  3036. plugins-scripts/check_breeze.pl,
  3037. plugins-scripts/check_disk_smb.pl,
  3038. plugins-scripts/check_flexlm.pl, plugins-scripts/check_ircd.pl,
  3039. plugins-scripts/check_log.sh, plugins-scripts/check_netdns.pl,
  3040. plugins-scripts/check_nfs.pl, plugins-scripts/check_ntp.pl,
  3041. plugins-scripts/check_oracle.sh, plugins-scripts/check_rpc.pl,
  3042. plugins-scripts/check_sensors.sh, plugins-scripts/check_wave.pl,
  3043. plugins-scripts/subst.in, plugins-scripts/utils.pm.in,
  3044. plugins-scripts/utils.sh.in, plugins-scripts/t/check_rpc.t,
  3045. tools/setup, tools/tango: Initial import of existing plugin code
  3046. 2002-02-28 06:42 egalstad
  3047. * .cvsignore, AUTHORS, CODING, COPYING, ChangeLog, FAQ, Helper.pm,
  3048. INSTALL, Makefile.am, NEWS, README, REQUIREMENTS, ROADMAP,
  3049. Requirements, acconfig.h, aclocal.m4, command.cfg.in, LEGAL,
  3050. configure.in, install-sh, make-tarball, missing, mkinstalldirs,
  3051. nagios-plugins.spec, opttest.pl, package.def, rpm, subst.in,
  3052. subst.sh, test.pl.in, contrib/check_apache.pl,
  3053. contrib/check_apc_ups.pl, contrib/check_bgpstate.pl,
  3054. contrib/check_dhcp.c, contrib/check_dlswcircuit.pl,
  3055. contrib/check_dns_random.pl, contrib/check_email_loop.pl,
  3056. contrib/check_fping_in.c, contrib/check_ftpget.pl,
  3057. contrib/check_ifoperstatus.pl, contrib/check_ifstatus.pl,
  3058. contrib/check_pop3.pl, contrib/check_qmailq.pl,
  3059. contrib/check_timeout.c, contrib/checkciscotemp.pl,
  3060. contrib/check_ipxping.c, contrib/check_joy.sh,
  3061. contrib/check_maxchannels.pl, contrib/check_maxwanstate.pl,
  3062. contrib/check_mem.pl, contrib/check_memory.tgz,
  3063. contrib/check_mysql.c, contrib/check_mysql.pl,
  3064. contrib/check_netapp.pl, contrib/check_nmap.py,
  3065. contrib/check_nwstat.pl, contrib/check_ora_table_space.pl,
  3066. contrib/check_rrd_data.pl, contrib/check_sap.sh,
  3067. contrib/check_sockets.pl, contrib/check_uptime.c,
  3068. contrib/maser-oracle.pl, contrib/mrtgext.pl, contrib/readme.txt,
  3069. contrib/restrict.pl, contrib/utils.py, contrib/check_nagios.pl,
  3070. contrib/urlize.pl, contrib/aix/check_crit_dsk,
  3071. contrib/aix/check_dsk, contrib/aix/check_failed,
  3072. contrib/aix/check_io, contrib/aix/check_kerberos,
  3073. contrib/aix/check_ping, contrib/aix/check_queue,
  3074. contrib/aix/pg_stat, contrib/tarballs/berger-ping.tar.gz,
  3075. contrib/tarballs/bowen-langley_plugins.tar.gz,
  3076. contrib/tarballs/check_bgp-1.0.tar.gz,
  3077. contrib/tarballs/check_breeze.tar.gz,
  3078. contrib/tarballs/check_flexlm.tar.gz,
  3079. contrib/tarballs/check_hltherm.tar.gz,
  3080. contrib/tarballs/check_hprsc.tar.gz,
  3081. contrib/tarballs/check_radius.tar.gz,
  3082. contrib/tarballs/check_wave.tar.gz,
  3083. contrib/tarballs/hopcroft-plugins.tar.gz,
  3084. contrib/tarballs/radius.tar.gz, plugins/.cvsignore,
  3085. plugins/Makefile.am, plugins/check_by_ssh.c, plugins/check_dig.c,
  3086. plugins/check_disk.c, plugins/check_dns.c, plugins/check_dummy.c,
  3087. plugins/check_fping.c, plugins/check_ftp.c, plugins/check_game.c,
  3088. plugins/check_hpjd.c, plugins/check_http.c,
  3089. plugins/check_ide-smart.c, plugins/check_imap.c,
  3090. plugins/check_ldap.c, plugins/check_load.c, plugins/check_mrtg.c,
  3091. plugins/check_mrtgtraf.c, plugins/check_mysql.c,
  3092. plugins/check_nntp.c, plugins/check_nt.c, plugins/check_nwstat.c,
  3093. plugins/check_overcr.c, plugins/check_pgsql.c,
  3094. plugins/check_ping.c, plugins/check_pop.c, plugins/check_procs.c,
  3095. plugins/check_radius.c, plugins/check_real.c,
  3096. plugins/check_smtp.c, plugins/check_snmp.c, plugins/check_ssh.c,
  3097. plugins/check_swap.c, plugins/check_tcp.c, plugins/check_time.c,
  3098. plugins/check_udp.c, plugins/check_ups.c, plugins/check_users.c,
  3099. plugins/check_vsz.c, plugins/common.h.in, plugins/getopt.c,
  3100. plugins/getopt1.c, plugins/netutils.c, plugins/netutils.h.in,
  3101. plugins/popen.c, plugins/popen.h.in, plugins/snprintf.c,
  3102. plugins/urlize.c, plugins/check_nagios.c, plugins/utils.c,
  3103. plugins/utils.h.in, plugins/version.h.in, plugins/t/check_disk.t,
  3104. plugins/t/check_dns.t, plugins/t/check_fping.t,
  3105. plugins/t/check_ftp.t, plugins/t/check_hpjd.t,
  3106. plugins/t/check_http.t, plugins/t/check_imap.t,
  3107. plugins/t/check_load.t, plugins/t/check_mysql.t,
  3108. plugins/t/check_ping.t, plugins/t/check_pop.t,
  3109. plugins/t/check_procs.t, plugins/t/check_smtp.t,
  3110. plugins/t/check_snmp.t, plugins/t/check_swap.t,
  3111. plugins/t/check_tcp.t, plugins/t/check_time.t,
  3112. plugins/t/check_udp.t, plugins/t/check_users.t,
  3113. plugins/t/check_vsz.t, plugins/tests/check_disk,
  3114. plugins/tests/check_dns, plugins/tests/check_ftp,
  3115. plugins/tests/check_hpjd, plugins/tests/check_http,
  3116. plugins/tests/check_load, plugins/tests/check_ping,
  3117. plugins/tests/check_procs, plugins/tests/check_swap,
  3118. plugins/tests/check_users, plugins/tests/check_vsz,
  3119. plugins-scripts/.cvsignore, plugins-scripts/Makefile.am,
  3120. plugins-scripts/check_breeze.pl,
  3121. plugins-scripts/check_disk_smb.pl,
  3122. plugins-scripts/check_flexlm.pl, plugins-scripts/check_ircd.pl,
  3123. plugins-scripts/check_log.sh, plugins-scripts/check_netdns.pl,
  3124. plugins-scripts/check_nfs.pl, plugins-scripts/check_ntp.pl,
  3125. plugins-scripts/check_oracle.sh, plugins-scripts/check_rpc.pl,
  3126. plugins-scripts/check_sensors.sh, plugins-scripts/check_wave.pl,
  3127. plugins-scripts/subst.in, plugins-scripts/utils.pm.in,
  3128. plugins-scripts/utils.sh.in, plugins-scripts/t/check_rpc.t,
  3129. tools/setup, tools/tango: Initial revision