1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717
|
2006-10-27 16:37 tonvoon
* plugins-scripts/: utils.pm.in, t/utils.t: More edge testcases.
Allow anything if ends with a . as long as correct characters
2006-10-26 22:32 tonvoon
* NPTest.pm: New test variables default to "none", so no changes
required to tinderbox satelites
2006-10-26 22:10 tonvoon
* THANKS.in, plugins-scripts/check_oracle.sh: Fixed error if
dba_free_space has no free segments (Florian Gleixner)
2006-10-26 22:02 tonvoon
* plugins-scripts/: Makefile.am, utils.pm.in, t/utils.t: Fixed
regression where hostnames with hyphens were rejected (1581402 -
Holger Weiss)
2006-10-26 21:56 tonvoon
* contrib/tarballs/check_traffic-0.90b.tar.gz: Removing unnecessary
tarball
2006-10-26 21:51 tonvoon
* THANKS.in, plugins/check_disk.c, plugins/check_http.c: Remove C
style comments (1583467 - Markus Baertschi)
2006-10-24 22:54 opensides
* plugins-root/check_icmp.c:
more fixes and removal of certain sentences not needed
2006-10-24 22:48 opensides
* plugins/check_nt.c, plugins-root/check_icmp.c:
last localization fixes for core plugins in c
2006-10-24 22:01 opensides
* plugins/check_nt.c:
next round of localization fixes
2006-10-24 10:48 tonvoon
* plugins-root/: Makefile.am, check_icmp.c: Fixed compile on
non-glibc platforms
2006-10-24 09:34 tonvoon
* plugins/check_http.c: Restored accidently regressed fix
2006-10-23 22:47 opensides
* plugins/check_http.c:
localization fixes
2006-10-23 01:02 opensides
* plugins-root/check_icmp.c:
first pass a making check icmp respecting nagiosplugins rules
2006-10-22 23:34 opensides
* plugins/check_nt.c:
latest localization fixes for tonight ;-)
2006-10-22 23:24 opensides
* plugins/check_ldap.c:
localization fixes
2006-10-22 23:14 opensides
* plugins-root/check_icmp.c:
putting default template for copyright and explanations
2006-10-22 23:07 opensides
* plugins-root/check_icmp.c:
revert mistake when commiting fixes
2006-10-22 23:03 opensides
* plugins/check_apt.c, plugins/check_procs.c,
plugins-root/check_icmp.c:
more localization fixes
2006-10-20 08:53 tonvoon
* plugins/check_snmp.c: Reverting back accidently regressed code
2006-10-20 08:39 opensides
* plugins/check_mrtg.c:
more localization fixes
2006-10-20 07:24 opensides
* plugins/check_apt.c, plugins-root/check_dhcp.c:
localization updates
2006-10-20 00:56 opensides
* plugins/check_snmp.c:
adding missing check_snmp
2006-10-20 00:53 opensides
* plugins/: check_radius.c, check_real.c, check_smtp.c,
check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
check_ups.c, check_users.c, negate.c, urlize.c:
another round of localization cleaning
2006-10-19 21:04 tonvoon
* BUGS, ChangeLog, configure.in, package.def: For 1.4.4 release
2006-10-19 20:52 tonvoon
* CHANGES: Added info re: 1.4.4 in prep for release
2006-10-19 20:36 tonvoon
* THANKS.in, plugins/check_snmp.c: Initialise strings for Fedora
Core 5 (Henning Schmiedehausen)
2006-10-19 20:25 tonvoon
* THANKS.in, plugins/check_snmp.c: Removed asprintf for perf data
(Craig Orsinger, Robby Giffin - 1310495)
2006-10-19 20:13 tonvoon
* THANKS.in, plugins/check_snmp.c: type variable not cleared in Sol
10 (Kyle Tucker)
2006-10-19 19:59 tonvoon
* THANKS.in, plugins/check_http.c, plugins/t/check_http.t:
Redirection error if other headers beginning with L (Aravind
Gottipati - 1562572)
2006-10-19 19:44 tonvoon
* THANKS.in, plugins-scripts/utils.pm.in: Allow hostnames beginning
with digits (O'Shaughnessy Evans - 1567390)
2006-10-19 12:56 tonvoon
* plugins/t/check_smtp.t: Added tests for SMTP servers without TLS
and with TLS
2006-10-19 01:25 opensides
* plugins/: check_apt.c, check_by_ssh.c, check_dig.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_http.c, check_ide_smart.c, check_ldap.c, check_load.c,
check_mrtg.c, check_mrtgtraf.c, check_mysql.c,
check_mysql_query.c, check_nagios.c, check_nt.c, check_ntp.c,
check_nwstat.c, check_overcr.c, check_pgsql.c, check_ping.c,
check_procs.c:
first pass at cleaning localization for new release first pass at
making all the headre be the same licence, plugin, etc...
2006-10-18 13:12 tonvoon
* plugins/: check_disk.c, t/check_disk.t: Re-added perf data to
check_disk
2006-10-18 13:05 tonvoon
* lib/: utils_disk.h, tests/test_disk.c: Fix tests for exact
matches when searching filesystems
2006-10-18 13:03 tonvoon
* lib/: utils_base.c, utils_base.h: Cater for different errors when
setting thresholds
2006-10-12 21:36 tonvoon
* plugins/: check_smtp.c, t/check_smtp.t: Resend EHLO after TLS
negotiation as per RFC3207 (Holger Weiss - 1482832)
2006-10-12 15:22 tonvoon
* plugins/check_ntp.c: Removed extraneous comma in perf data output
2006-10-12 15:14 tonvoon
* plugins/: check_disk.c, t/check_disk.t: Remove the "- free space"
if status is OK
2006-10-12 14:58 tonvoon
* NPTest.pm, THANKS.in, plugins/check_disk.c,
plugins/t/check_disk.t: Fixed output from -e in check_disk
(Andreas Behal)
2006-10-02 13:09 tonvoon
* plugins/t/check_load.t: Fix test failure on poseidon
2006-09-21 11:41 tonvoon
* THANKS.in, plugins/check_nwstat.c: Added perfdata for most
variables and new parameters: VMU, VMF, VMP, NRMH, NRMP, NRMM,
NRMS, NSS1 to NSS7 (Christian Mies)
2006-09-02 21:41 seanius
* lib/utils_base.h, plugins/utils.h: - explicitly include
utils_base.h from utils.h - put utils.h inside of an
#ifndef/#endif
2006-09-02 21:32 seanius
* plugins/check_tcp.c: - fix for warning/critical timeouts in
check_tcp.c, in which the plugin would exit with a usage error
if non-int timeouts were passed. - change
--warning-time/--critical-time to just --warning/--critical, as
it's what --help says.
2006-08-14 10:04 tonvoon
* THANKS.in, plugins/check_disk.c: Fixed inode percent free output
(Mike Emigh - 1531899)
2006-08-14 09:42 tonvoon
* plugins/t/check_ntp.t: Fixed skip of no ntp test
2006-08-11 09:26 tonvoon
* plugins/: check_ntp.c, t/check_ntp.t: Catch no responses from any
server (1538341 - nmdias)
2006-08-03 09:14 tonvoon
* tools/tinderbox_build: Interpret the snapshot datestamp as GMT
2006-07-31 19:55 harpermann
* plugins/check_nt.c: Bug: 694259 fix. After consulting with the
target service authors, we decided to keep the default port as
1248 and add a note about other services sometimes using this
port and suggesting to change the port. Closing bug.
2006-07-31 15:09 tonvoon
* doc/developer-guidelines.sgml: M4 requirement for developer
platform
2006-07-29 02:43 tonvoon
* plugins/common.h, plugins-root/check_dhcp.c: Fix two Solaris
compile problems
2006-07-29 01:04 tonvoon
* po/POTFILES.in: Remove reference to check_udp.c
2006-07-29 00:59 tonvoon
* configure.in, plugins/Makefile.am, plugins-scripts/Makefile.am:
Cleanup references to old check_udp and INSTALL_OPTS. Error if
--with-nagios-user or --with-nagios-group specified for configure
2006-07-28 23:44 tonvoon
* CHANGES, plugins/Makefile.am, plugins/check_udp.c,
plugins/t/check_udp.t: check_udp.c deprecated and check_udp now
linked to check_tcp. check_udp2 removed
2006-07-27 12:29 tonvoon
* doc/developer-guidelines.sgml: Example ranges (Nathan Vonnahme)
2006-07-20 00:05 tonvoon
* THANKS.in, configure.in: Stricter autoconf 2.60 rules (Lance
Albertson - 1522900)
2006-07-19 23:56 tonvoon
* plugins/common.h: Fix to add uintmax_t, for check_disk.c compile
2006-07-19 23:37 tonvoon
* plugins/common.h: Fix for CHAR_MAX on Solaris 9
2006-07-14 10:47 tonvoon
* lib/: Makefile.am, utils_base.c: Missing header files
2006-07-14 10:43 tonvoon
* plugins/check_disk.c: Fix inode percents using coreutils'
percentage calculation technique
2006-07-14 00:58 tonvoon
* CHANGES, lib/utils_base.c, lib/utils_base.h, lib/utils_disk.c,
lib/utils_disk.h, lib/tests/test_utils.c, plugins/check_disk.c,
plugins/t/check_disk.t: Major fixes to check_disk. Now should
return same data as df
2006-07-13 13:50 tonvoon
* Makefile.am, configure.in, lib/Makefile.am, lib/tests/.cvsignore,
lib/tests/Makefile.am, lib/tests/README, lib/tests/test_disk.c,
lib/tests/test_disk.t, lib/tests/test_utils.c,
lib/tests/test_utils.t, plugins/Makefile.am,
plugins/check_disk.c, plugins/check_dns.c, plugins/check_mysql.c,
plugins/check_mysql_query.c, plugins/utils.c, plugins/utils.h,
plugins/utils_disk.c, plugins/utils_disk.h,
plugins/tests/.cvsignore, plugins/tests/Makefile.am,
plugins/tests/README, plugins/tests/test_disk.c,
plugins/tests/test_disk.t, plugins/tests/test_utils.c,
plugins/tests/test_utils.t: Move new util_* functions to lib/
2006-07-13 09:54 tonvoon
* configure.in, lib/basename.c, lib/dirname.h, m4/basename.m4,
m4/dos.m4, m4/np_coreutils.m4, plugins/check_procs.c,
plugins/utils.c, plugins/utils.h: Using coreutils' base_name
function because of portability issues with Tru64
2006-07-12 23:53 tonvoon
* plugins/: check_disk.c, utils_disk.c, utils_disk.h,
t/check_disk.t: Added -E option for exact match of filesystem.
Restructured main filesystem loop. Added extra tests for possible
duplicate filesystems.
2006-07-12 20:30 tonvoon
* plugins/: check_disk.c, utils_disk.c, utils_disk.h,
tests/.cvsignore, tests/test_disk.c: Moving parameter_list into
utils_disk.h. Given list of mount points, can now work out best
match or exact match.
2006-07-12 13:15 tonvoon
* plugins/: Makefile.am, check_disk.c, utils_disk.c, utils_disk.h,
tests/Makefile.am, tests/test_disk.c, tests/test_disk.t: Moving
check_disk functions into utils_disk.c and testing them
2006-07-11 13:38 tonvoon
* m4/fcntl-safer.m4, m4/np_coreutils.m4, m4/unistd-safer.m4,
lib/creat-safer.c, lib/dup-safer.c, lib/fcntl--.h,
lib/fcntl-safer.h, lib/fd-safer.c, lib/open-safer.c,
lib/pipe-safer.c, lib/unistd--.h, lib/unistd-safer.h: Extra files
from coreutils required for getloadavg.c to compile on Tru64
(Ciro Iriarte - 1520331)
2006-07-10 09:44 tonvoon
* lib/Makefile.am: Didn't add intprops.h into distribution
correctly
2006-07-07 07:36 harpermann
* plugins/urlize.c: Added check for two arguments. Was segfaulting
if no or one arg. Now returns help.
2006-07-05 14:45 tonvoon
* plugins-scripts/check_mailq.pl: Fixed checking of return codes
from external mailq programs
2006-07-05 09:55 tonvoon
* tools/tinderbox_build: Add instructions for manually sending
Tinderbox build logs
2006-07-05 09:26 tonvoon
* lib/: Makefile.am, intprops.h: Missing intprops.h for Tru64 (Ciro
Iriarte - 1517379)
2006-07-04 10:47 tonvoon
* THANKS.in, m4/alloca.m4, m4/np_coreutils.m4: Added alloca.h check
and fixed locale.h, wchar.h (Ari Pollak - 1516578)
2006-07-03 09:03 tonvoon
* plugins/check_dig.c: Fixed -p getopt call (Allan Bennett -
1511650)
2006-07-03 08:55 tonvoon
* THANKS.in, lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c,
m4/c-strtod.m4, m4/np_coreutils.m4, plugins/Makefile.am: Fixed
compile on Tru64 5.1b (Ciro Iriarte - 1515435)
2006-06-21 12:05 opensides
* plugins/: check_snmp.c, check_ssh.c:
cleaning help and usage
2006-06-21 10:49 opensides
* po/LINGUAS:
fixing bug id #1509699
2006-06-20 12:17 opensides
* plugins/: check_procs.c, check_radius.c, check_real.c,
check_smtp.c, check_snmp.c, check_ssh.c:
cleaning help and usage + license
2006-06-18 20:36 opensides
* plugins/: check_disk.c, check_time.c, check_udp.c, check_ups.c,
check_users.c, gethostbyname.c, gethostbyname.h, negate.c,
netutils.c, popen.c, runcmd.c, sslutils.c, urlize.c, utils.c:
updating help and usage and license
2006-06-17 13:28 opensides
* plugins/: check_hpjd.c, check_nt.c, check_ntp.c, check_nwstat.c,
check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c:
cleaning up help and usage
2006-06-15 13:52 opensides
* plugins/: check_ldap.c, check_load.c, check_mrtg.c,
check_mysql.c, check_mysql_query.c, check_nagios.c:
cleaning help and usage
2006-06-15 11:16 opensides
* plugins/check_ide_smart.c:
cleaning help and usage
2006-06-14 22:27 opensides
* plugins/: check_dns.c, check_dummy.c, check_fping.c,
check_game.c:
updating the help and usage for localization
2006-06-14 20:15 tonvoon
* INSTALLING, doc/developer-guidelines.sgml: Updated requirements
for development platform
2006-06-14 19:48 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c:
starting the BIG locale update ;-)
2006-06-07 15:28 seanius
* contrib/check_linux_raid.pl: some gratuitous whitespace changes,
and a fix to the "recovery =" detection logic in
check_linux_raid.pl
2006-06-07 15:23 seanius
* plugins-scripts/utils.pm.in: removed stale references to
PATH_TO_NTPFOO, as it's no longer used.
2006-06-07 08:59 tonvoon
* plugins-root/Makefile.am: Do not install setuid programs unless
run as root
2006-06-07 08:18 tonvoon
* tools/setup, plugins-root/Makefile.am: Fixed two build problems
re: libtool and pst3
2006-06-06 17:48 seanius
* plugins/check_pgsql.c: modify the is_pg_dbname() function to
allow databases with '-' in their name. reference: sf tracker
#1500752
2006-06-04 00:06 seanius
* configure.in: removed the -R for openssl, as it should be figured
out automatically by libtool and also controlled via the
--enable-rpath/--disable-rpath configure options. furthermore
keeping it in forces the rpath option on in spite of what's
passed on the configure line.
2006-06-01 23:30 seanius
* contrib/check_linux_raid.pl: gave some TLC to check_linux_raid
2006-05-30 10:55 tonvoon
* configure.in: Default to search path for mysql_config
2006-05-30 10:39 tonvoon
* THANKS.in: For reporting check_radius compile problem
2006-05-30 10:19 tonvoon
* .cvsignore, config.guess, config.sub, ltmain.sh,
doc/developer-guidelines.sgml: Added libtool files, at version
1.5.22, into CVS
2006-05-25 18:40 egalstad
* plugins-root/check_dhcp.c: Applied patch for responses from
helpers/relays, cleaned up different coding styles for
consistency
2006-05-25 17:59 tonvoon
* lib/regex.o: Removed unnecessary file
2006-05-25 17:58 tonvoon
* configure.in, lib/Makefile.am, plugins/common.h: Gettext fixes to
sync with coreutils
2006-05-25 17:53 egalstad
* plugins-root/check_dhcp.c: Fixed short interface name length,
UNKNOWN return code (patches from tracker)
2006-05-25 16:34 tonvoon
* plugins/: check_http.c, t/check_http.t: Option to invert results
from a regexp pattern match
2006-05-25 13:33 tonvoon
* configure.in, lib/.cvsignore, lib/regcomp.c, lib/regex.c,
lib/regex.h, lib/regex.o, lib/regex_internal.c,
lib/regex_internal.h, lib/regexec.c, lib/strcase.h,
m4/.cvsignore, m4/np_coreutils.m4, m4/regex.m4, m4/restrict.m4,
plugins/check_apt.c, plugins/check_http.c, plugins/check_smtp.c,
plugins/check_snmp.c: Use coreutils' regexp libraries, so regexp
always available now
2006-05-25 13:13 tonvoon
* m4/ls-mntd-fs.m4: Sync with coreutils 5.96
2006-05-24 13:48 tonvoon
* THANKS.in, configure.in: Fix for mysql 3.x (Jeremy Reed, Michael
Tiernan - 1491936)
2006-05-24 10:23 tonvoon
* doc/developer-guidelines.sgml: Reminder of no inline variable
declarations
2006-05-24 10:05 tonvoon
* plugins/check_snmp.c: Variables need to be declared at top of
code for better portability (Gerhard Lausser)
2006-05-19 22:41 tonvoon
* configure.in, doc/developer-guidelines.sgml: Requirement of
automake 1.8.3, as coreutils needs it
2006-05-19 22:30 tonvoon
* .cvsignore, config.rpath, mkinstalldirs, po/.cvsignore,
po/remove-potcdate.sin: Adding more required files from gettext
2006-05-19 00:17 tonvoon
* tools/setup: Bug in Makefile.am creation
2006-05-19 00:09 tonvoon
* .cvsignore, ABOUT-NLS, m4/Makefile.am, m4/Makefile.am.in,
po/.cvsignore, po/Makefile.in.in, tools/setup: Fixes from
coreutils sync: some files now required and removed generateable
files
2006-05-18 23:05 tonvoon
* .cvsignore, Makefile.am, configure.in,
doc/developer-guidelines.sgml, lib/Makefile.am, lib/cloexec.c,
lib/cloexec.h, lib/error.c, lib/error.h, lib/exit.h,
lib/exitfail.c, lib/exitfail.h, lib/fsusage.c, lib/fsusage.h,
lib/full-read.c, lib/full-read.h, lib/full-write.c,
lib/full-write.h, lib/getloadavg.c, lib/getopt.c, lib/getopt.h,
lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/gettext.h,
lib/malloc.c, lib/mountlist.c, lib/mountlist.h, lib/realloc.c,
lib/safe-read.c, lib/safe-read.h, lib/safe-write.c,
lib/safe-write.h, lib/stdbool_.h, lib/strtod.c,
lib/unlocked-io.h, lib/xalloc-die.c, lib/xalloc.h, lib/xmalloc.c,
m4/.cvsignore, m4/Makefile.am, m4/afs.m4, m4/codeset.m4,
m4/error.m4, m4/exitfail.m4, m4/extensions.m4, m4/fstypename.m4,
m4/fsusage.m4, m4/getopt.m4, m4/gettext.m4, m4/glibc21.m4,
m4/iconv.m4, m4/intdiv0.m4, m4/inttypes-pri.m4, m4/inttypes.m4,
m4/inttypes_h.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/lib-ld.m4,
m4/lib-link.m4, m4/lib-prefix.m4, m4/longdouble.m4,
m4/longlong.m4, m4/ls-mntd-fs.m4, m4/malloc.m4, m4/mountlist.m4,
m4/nls.m4, m4/np_coreutils.m4, m4/onceonly.m4,
m4/onceonly_2_57.m4, m4/po.m4, m4/progtest.m4, m4/realloc.m4,
m4/signed.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/uintmax_t.m4,
m4/ulonglong.m4, m4/unlocked-io.m4, m4/wchar_t.m4, m4/wint_t.m4,
m4/xalloc.m4, plugins/.cvsignore, plugins/check_disk.c,
plugins/common.h, plugins/tests/.cvsignore,
plugins-root/.cvsignore, plugins-root/check_dhcp.c,
po/.cvsignore, tools/setup: Synchronise with coreutils 2.95.
Gettext now synced with coreutils, so no longer development
platform requirement
2006-05-17 11:10 tonvoon
* configure.in: Fix for loading SSL libraries at runtime
2006-05-17 09:56 tonvoon
* configure.in, plugins-root/Makefile.am: Fix compile problems on
Solaris for pst3 and ssl libs
2006-05-15 14:20 tonvoon
* CHANGES, contrib/check_disk_snmp.pl: check_disk_snmp.pl removed.
Notice added to CHANGES
2006-05-15 14:07 tonvoon
* tools/sfsnapshot: Changed snapshot generator due to cvs changes
on SF
2006-05-03 15:12 tonvoon
* doc/LEAVERS: Leavers process documented
2006-05-02 09:30 tonvoon
* plugins/check_disk.c: Inode thresholds not always being
initialised (James Fidell - 1476457)
2006-05-02 09:21 tonvoon
* CHANGES: New check_ntp and check_apt plugins by Sean
2006-05-01 22:52 seanius
* configure.in, plugins/Makefile.am, plugins/check_ntp.c,
plugins/common.h, plugins/runcmd.c, plugins-scripts/Makefile.am:
- check_ntp: - now roughly feature-complete. - various
bugfixes, esp. offset calculation. - enhanced the asynchronous
offset polling to set requests that haven't recieved a
response in >= 1 second to stale and retransmit them, which
results in much better performance on unreliable networks. -
we only spend timeout/2 seconds polling offsets, and if we don't
get everything by that point we work with what we have and
set status to warning/critical depending on how much data we
have. - set the same defaults as the perl script. - commit
changes to configure.in to support automatic building of
check_apt (if apt-get is installed and regex libraries
available) and check_ntp (unconditionally), now defaulting to
check_ntp.c instead of the perl script. if this is an issue we
can back out the commit of course. an eye should be kept on
check_ntp building and running correctly in different
environments, esp. 64-bit and big-endian platforms, and those
with more "esoteric" API's (do any of the platforms not have
poll()?). - similar changes to Makefile.am's. - common.h: add
statement to include sys/poll.h - runcmd.c: exit STATE_UNKNOWN if
execve() fails.
2006-04-28 16:52 tonvoon
* configure.in: Remove stupid error where pst3 was always compiled
2006-04-28 09:45 tonvoon
* configure.in, plugins-root/Makefile.am: Added pst3 into
distribution (Jason Kau - 1476451)
2006-04-27 14:25 tonvoon
* configure.in, plugins/check_procs.c, plugins/utils.c,
plugins/utils.h, plugins/tests/test_utils.c: Internal version of
basename if one not found in system
2006-04-19 10:33 tonvoon
* plugins/t/check_nagios.t: Fix check_nagios tests on MacOSX 10.4
2006-04-19 04:47 sghosh
* ChangeLog: ChangeLog update - release pending
2006-04-19 04:42 sghosh
* configure.in, package.def: version update - release pending
2006-04-17 22:08 opensides
* po/fr.po:
Final commit of fr.po
2006-04-17 14:54 opensides
* po/fr.po:
another big chunk of fr.po
Still 20 to go ;)
2006-04-16 15:24 opensides
* po/fr.po:
big revision of po file for 1.4.3
2006-04-15 11:46 opensides
* po/fr.po:
second part of fr.po updating
2006-04-14 23:44 opensides
* po/: de.po, fr.po, nagios-plugins.pot:
updated pot file sarted updating fr.po for nagios 1.4.3
2006-04-12 11:00 seanius
* plugins/check_ntp.c: the offset_requests are now parallelized.
still stuff needs to be done (conveniently marked with XXX), but
on well behaving networks the plugin should behave more or less
identical to check_ntp.pl now.
2006-04-12 07:33 seanius
* plugins/check_ntp.c: added a currently unused but "good for
reference" version of offset_request which attempts to behave
more like ntpdate, but this doesn't yet and the code isn't
actually used yet.
2006-04-12 00:24 seanius
* plugins/check_ntp.c: another big code-commit to check_ntp.
jitter calculations now work, and the program is becoming much
closer on the packet-for-packet level to how check_ntp.pl
behaves. i'll send an email in the morning :)
2006-04-06 11:08 tonvoon
* THANKS.in, plugins/utils.c: Stop coredump on Solaris if arg not
specified (Jason Kau - 1465288)
2006-04-05 09:11 tonvoon
* CHANGES: Notice added re: check_udp in next release
2006-04-05 09:06 tonvoon
* plugins/check_procs.c: Use pid_t for pids (1463853)
2006-04-05 08:58 tonvoon
* plugins/: check_http.c, t/check_http.t: Allow multiple -k
parameters (Gerd Mueller - 1457726)
2006-04-05 07:58 seanius
* plugins/check_apt.c: finally??? cvs works again???? let me dig
up my week-old cvs commit message.....
i'm becoming very happy with check_apt now :) - now has support
for an externally (configure.in) path to apt-get, though i
still have that in #ifdefs for the time being. - support for
defining what packages are "critical updates", via the
already-existing security regexp or overridable on the cmdline -
allow overriding of apt-get cmdline options - introduce a "no
upgrade" in case someone just wants to check that they can
download the package lists with -u but not check for upgrades.
might need to change the name of this option to prevent
confusion. - improved -h documentation
2006-03-29 17:33 tonvoon
* THANKS.in, plugins/check_tcp.c, plugins/utils.c, plugins/utils.h,
plugins/tests/test_utils.c: New function to for escaped strings
from command line for send/quit. Adapted from Sebastian
Wiesinger's patch (1292404)
2006-03-29 16:30 tonvoon
* NPTest.pm: Will die if signal received from a testCmd
2006-03-29 15:37 tonvoon
* plugins/t/check_udp.t: Allow 1 second delay in check_udp timeout
2006-03-29 09:18 tonvoon
* plugins/t/check_http.t: Fix possible timeout issue on
hostname_invalid
2006-03-29 09:13 tonvoon
* plugins/t/check_dns.t: Fix test if response time is one second
2006-03-29 09:01 seanius
* plugins/check_apt.c: now support for detecting critical/security
updates, which sets the return code to STATE_CRITICAL instead of
just STATE_WARNING as it was previously doing.
2006-03-27 09:39 tonvoon
* plugins/t/check_udp.t: Set timeout within nc, rather than the
test script
2006-03-27 09:19 tonvoon
* plugins/check_disk.c: Fixed bug with malloc of wrong size
2006-03-24 17:26 tonvoon
* plugins/t/check_dns.t: Fixing defaults to work
2006-03-24 16:49 tonvoon
* CHANGES: Reintroduced --with-mysql configure option. Note about
SSL cleanup
2006-03-24 16:25 tonvoon
* plugins/check_http.c: -C now implies -S/--ssl as well
2006-03-24 16:13 tonvoon
* plugins/t/: check_hpjd.t, check_http.t: Tests converted to new
style
2006-03-24 16:12 tonvoon
* plugins/: check_tcp.c, t/check_udp.t: udp checks require and send
and receive option. Tests updated so if nc is available, will
check send and receive working correctly
2006-03-23 22:58 seanius
* plugins/check_apt.c: - addition of include/exclude option for
package names in check_apt, using POSIX regexp support. -
various commenting and tidying of code/logic/output. - still
haven't committed the Makefile.am/configure.in stuff.
2006-03-23 17:16 tonvoon
* NPTest.pm, plugins/check_disk.c, plugins/t/check_disk.t:
check_disk now errors if a specified directory does not exist (cf
df /foo)
2006-03-23 16:06 tonvoon
* plugins/t/check_disk.t: Some versions of Test::More do not like
the m#foo# syntax
2006-03-23 12:01 tonvoon
* NPTest.pm, plugins/check_disk.c, plugins/t/check_disk.t:
Incorrect output when checking non-existent disk (John Rouillard
- 1326050)
2006-03-23 00:01 seanius
* plugins/check_apt.c: more work on check_apt. more graceful error
handling and information reporting, a couple new cmdline options.
still not quite ready for prime-time, maybe tomorrow :)
2006-03-22 17:32 tonvoon
* REQUIREMENTS, configure.in: Reinstated --with-mysql option
2006-03-22 16:45 tonvoon
* plugins/: check_dns.c, t/check_dns.t: Added warning and critical
response times (John Rouillard - 1343159)
2006-03-22 15:45 tonvoon
* plugins/t/check_pop.t: Convert to new style tests
2006-03-22 15:45 tonvoon
* THANKS.in, plugins/check_tcp.c: Options to change line ends for
-s and -q (John Rouillard - 1346104)
2006-03-22 14:32 tonvoon
* plugins-scripts/check_log.sh: Remove PATH restriction
2006-03-22 14:17 tonvoon
* plugins/: check_dns.c, t/check_dns.t: New style tests. Cleanup of
presentation of help. Added '' around -a checks
2006-03-22 13:18 tonvoon
* plugins/check_by_ssh.c: Typo (Thomas Guettler - 1433447)
2006-03-22 12:59 tonvoon
* plugins-scripts/: check_log.sh, utils.sh.in: Remove hardlink to
/bin/sed. Leave to PATH (Abs - 1391483)
2006-03-22 00:00 seanius
* plugins/check_apt.c: initial version of a check_apt plugin... not
editing configure/Makefile.am's until i'm happier with it (better
output, better ways to define warning vs. critical thresholds...
etc).
2006-03-21 14:20 tonvoon
* THANKS.in, configure.in: Stop check_dns from compiling if
nslookup does not exist (Sakari Lehtonen - 1412721)
2006-03-21 13:42 tonvoon
* plugins/t/check_load.t: Updated to new Test::More method for
testing
2006-03-21 13:32 tonvoon
* configure.in: Fix for mysql 3.x
2006-03-21 13:31 tonvoon
* plugins/check_tcp.c: Return CRITICAL if hostname invalid, as per
guidelines
2006-03-21 12:56 tonvoon
* tools/setup: Patch to workaround SFnot having libtool installed
2006-03-21 11:42 tonvoon
* REQUIREMENTS, CHANGES, THANKS.in, configure.in,
plugins/Makefile.am, plugins/tests/Makefile.am: mysql discovery
based on mysql_config (Johan Fischer - 1359414)
2006-03-20 22:06 seanius
* plugins/check_ntp.c: - shuffling some code around to keep things
tidy. - now average the result of 4 queries just as ntpdate does
- put things in place for jitter calculation
2006-03-20 17:18 seanius
* plugins/check_ntp.c: ipv6 support for c-version of check_ntp
2006-03-18 19:00 seanius
* plugins/check_ntp.c: initial version of the pure-c check_ntp
implementation. jitter not yet implemented, and a couple other
misc things to do, so i haven't yet patched Makefile.am
2006-03-18 14:47 seanius
* plugins/check_http.c: return-logic related fix for cert checking,
thanks to emmet hogan.
2006-03-17 14:08 tonvoon
* plugins/tests/test_utils.t: Better error message re: tap library
2006-03-17 14:07 tonvoon
* REQUIREMENTS, configure.in, plugins/Makefile.am,
plugins/check_mysql.c, plugins/check_mysql_query.c,
plugins/t/check_mysql.t: mysql detection cleanup: fixes runtime
linking, autodetection of main locations, detection of lib64 and
different layouts
2006-03-17 10:20 tonvoon
* doc/developer-guidelines.sgml: Added requirement for developer
system to have gnu libtool
2006-03-16 17:31 tonvoon
* configure.in, plugins/tests/Makefile.am, tools/setup: Using
libtool to get runpath for tap library
2006-03-15 19:54 tonvoon
* THANKS.in, plugins/check_mysql.c, plugins/t/check_mysql.t: Alert
on amount of time a slave is behind (Steven Kreuzer)
2006-03-13 17:59 seanius
* plugins/check_swap.c: fix for (tracker id 1420741) "check_swap:
incorrect totals for multiple partitions (BSD)" thanks to scott
thompson
2006-03-13 11:08 tonvoon
* plugins/check_ping.c: Change warning message if there is stderr
output. This catches a problem where time was shifting backwards
on a linux VMware guest during the ping
2006-03-07 10:33 tonvoon
* plugins/t/check_http.t: Added tests for two external websites
with certificates
2006-03-07 10:23 tonvoon
* plugins/t/check_http.t: Tests re-written in new object format
2006-02-24 17:03 tonvoon
* doc/developer-guidelines.sgml: Updated doc as tap library is now
automatically discovered
2006-02-24 16:41 tonvoon
* configure.in, plugins/tests/Makefile.am: Use the installed tap
library instead of requesting a compiled object
2006-02-17 09:08 tonvoon
* THANKS.in, plugins/popen.c: SIGALRM could be received before
child_process is created (Jason Crawford)
2006-02-17 06:24 seanius
* plugins/check_procs.c: set LC_NUMERIC to POSIX in check_procs.c
2006-02-01 13:23 tonvoon
* plugins/t/check_mysql_query.t: If a mysql server has anonymous
login, tests will always fail
2006-02-01 11:53 tonvoon
* plugins/tests/Makefile.am: Need to distribute perl test file
2006-01-31 16:48 tonvoon
* CHANGES: check_mysql_query included
2006-01-31 16:47 tonvoon
* REQUIREMENTS: Note on MacOSX difference in mysql package
2006-01-31 16:45 tonvoon
* configure.in, plugins/Makefile.am: Clean compile of
check_mysql_query on MacOSX
2006-01-31 15:40 tonvoon
* NPTest.pm: Sort ordering of tests
2006-01-31 14:52 tonvoon
* configure.in, plugins/.cvsignore, plugins/Makefile.am,
plugins/check_mysql_query.c, plugins/utils.h,
plugins/t/check_mysql_query.t: Adding check_mysql_query, using
new ranges and threshold checking
2006-01-31 14:37 tonvoon
* plugins/t/check_mysql.t: Extra explanation in tests
2006-01-31 14:36 tonvoon
* plugins/tests/test_utils.c: Fixed invalid free
2006-01-31 10:06 tonvoon
* doc/developer-guidelines.sgml: Updated instructions on using
libtap as configure option changed
2006-01-31 10:05 tonvoon
* configure.in: Changed configure option to --with-libtap-srcdir
because requires tap.h as well as tap.o
2006-01-30 22:24 tonvoon
* doc/developer-guidelines.sgml, plugins/utils.c, plugins/utils.h,
plugins/tests/test_utils.c: Clearly defined thresholds & ranges
in docs. Added get_status routine. Added set_thresholds routine.
Tests enhanced to check new routines
2006-01-30 16:10 tonvoon
* configure.in, doc/developer-guidelines.sgml, plugins/Makefile.am,
plugins/utils.c, plugins/utils.h, plugins/tests/.cvsignore,
plugins/tests/Makefile.am, plugins/tests/README,
plugins/tests/check_disk, plugins/tests/check_dns,
plugins/tests/check_ftp, plugins/tests/check_hpjd,
plugins/tests/check_http, plugins/tests/check_load,
plugins/tests/check_ping, plugins/tests/check_procs,
plugins/tests/check_swap, plugins/tests/check_users,
plugins/tests/check_vsz, plugins/tests/test_utils.c,
plugins/tests/test_utils.t: Added libtap tests for utils.c
library functions. Removed redundant test files
2006-01-21 21:46 tonvoon
* tools/sfsnapshot: Have to use own id for cvs checkout. Change
compile server because old one not working consistently
2005-12-19 09:25 tonvoon
* NPTest.pm: Break out of testing if a new parameter is required
2005-12-16 18:41 harpermann
* contrib/check_log2.pl: Added ability to output critical on error.
Fixed open so it properly fails if the log file open throws an
error, turned on -w in the perl call, fixed warnings
2005-12-15 17:06 tonvoon
* NPTest.pm, plugins/check_mysql.c, plugins/t/check_mysql.t:
Display errors with slave queries correctly. Added extra tests
for slaves
2005-12-15 15:19 tonvoon
* NPTest.pm, doc/developer-guidelines.sgml, plugins/t/check_disk.t:
New 3 parameter version of getTestParameters. Updated
check_disk.t to reflect. Added notes re: testing in developer
guidelines.
2005-12-15 15:17 tonvoon
* plugins-scripts/: check_file_age.pl, t/check_file_age.t: Allow
directories and links to be tested by check_file_age. Sanitise
output. Added tests
2005-12-07 19:32 harpermann
* plugins/urlize.c: Nagiosplug bug 1266977. Added code to insert
the closing </A> after the plugin output but before the
performance output.
2005-12-07 15:10 tonvoon
* THANKS.in, plugins/common.h: No floorf on Solaris 9 (Jon
Vandegrift - 1374705)
2005-12-02 22:28 tonvoon
* THANKS.in, doc/developer-guidelines.sgml, plugins/check_nagios.c,
plugins/t/check_nagios.nagios1.status.log,
plugins/t/check_nagios.nagios2.status.dat,
plugins/t/check_nagios.t: Support for Nagios 1 and Nagios 2
status files (Gerhard Lausser - 1296242)
2005-12-02 22:25 tonvoon
* plugins/t/.cvsignore: Ignore temporary files created for tests
2005-12-01 01:05 tonvoon
* configure.in, config_test/Makefile, config_test/run_tests: Run
longer test on redhat for spopen/pthread problem. Allow
enable/disable of pthread fix via configure option
2005-11-30 00:49 harpermann
* plugins-scripts/check_ntp.pl: Nagiosplug bug # 1251096 check_ntp
wasn't properly handing a bad exit status from the external
programs it calls (ntpdate and ntpq), so jitter wasn't set.
Added check of $? on close and proper error output if status from
the sub program call completion is non-zero. This includes "host
not found".
2005-11-29 23:21 harpermann
* contrib/check_email_loop.pl: UNKNOWN exit status was returning
status of "-1", changed to "3"
2005-11-29 23:19 harpermann
* contrib/check_email_loop.pl: Bug: 1355304 Added patch for ePN and
perl warnings. Fixed some text and a warning about type
comparison.
2005-11-18 12:56 tonvoon
* tools/sfsnapshot: Create a permanent link to HEAD snapshot
2005-11-18 11:56 tonvoon
* doc/developer-guidelines.sgml: Updated with more detailed
description of UNKNOWN states
2005-11-16 17:26 tonvoon
* plugins/check_disk.c: Fixed some compile errors with new
translations. Also reintroduced formatting after discussion with
Benoit
2005-11-15 16:26 tonvoon
* plugins/t/check_disk.t: Updated tests to minimise false
positives. Breaking down so more obvious what the tests are doing
2005-11-14 14:43 tonvoon
* doc/developer-guidelines.sgml: Added section re: translations
2005-11-14 01:18 opensides
* plugins/check_http.c:
localization cleaning ... last commit before sleeping
2005-11-14 00:51 opensides
* plugins/: check_dig.c, check_disk.c, check_dns.c, check_dummy.c,
check_fping.c, check_game.c:
start of the cleaning of the localization
2005-11-12 23:48 tonvoon
* THANKS.in, plugins/t/check_disk.t: Updated check_disk tests to
use Test::More (Serhan Kiymaz)
2005-11-09 17:27 tonvoon
* plugins/t/check_mysql.t: Using Test::More
2005-11-09 16:40 tonvoon
* NPTest.pm, plugins/t/check_imap.t, plugins/t/check_swap.t: Added
new NPTest->testCmd which returns objects back for testing at the
test script level. Updated check_swap and check_imap to this new
format
2005-11-09 16:37 tonvoon
* plugins/check_swap.c: Problem where absolute thresholds not
working on /proc/meminfo systems. Suffixed all variables with the
unit of measurement
2005-11-09 16:34 tonvoon
* configure.in: Typo with predetermined values
2005-11-09 14:10 tonvoon
* doc/developer-guidelines.sgml: Added copyright/license info
required in submissions
2005-11-09 09:31 tonvoon
* doc/: NEW_STARTERS, developer-guidelines.sgml: Updated dev
guidelines to link to NagiosExchange. Removed project admin notes
from guidelines into separate file
2005-11-07 12:46 seanius
* configure.in: incorporated patch from Elan Ruusame (ahmake) to
override program autodetection (see Feature Requests-1341528). i
would not call this quite complete just yet (i'll explain more in
the tracker), but should be functional and useful enough to
commit now, in any case.
2005-11-04 09:38 tonvoon
* THANKS.in, plugins/check_tcp.c, plugins/t/check_imap.t: Fixed
--mismatch option for check_tcp. Added tests into check_imap
(Rick Fey - 1339134)
2005-11-03 15:21 tonvoon
* Makefile.am, tools/tinderbox_build: Adding new tinderbox build
script
2005-11-03 15:13 tonvoon
* plugins/t/: check_disk.t, check_procs.t: Invalid mount point
doesn't make sense because most df implementations would work out
the actual mount point. And fixed typo in check_procs.t
2005-11-03 15:04 tonvoon
* NPTest.pm, plugins/t/check_http.t, plugins/t/check_time.t: Fixing
some test failures
2005-11-02 08:59 seanius
* plugins/check_disk.c: #995761: patch from ben o'hara to include
inode calculations in check_disk.c.
previous commit also had a patch for smtp auth support, but i
accidentally sent a blank commit message.
2005-11-02 08:47 seanius
* plugins/check_smtp.c: check_smtp.c
2005-10-31 20:03 seanius
* configure.in, plugins/check_game.c, plugins/check_http.c,
plugins/check_nagios.c, plugins/check_snmp.c,
plugins/check_swap.c, plugins/check_tcp.c, plugins/common.h,
plugins/netutils.c, plugins/netutils.h, plugins/sslutils.c: code
cleanups, largely resulting from turning on -Wall. mostly unused
variables and explicit casting issues, but there were a couple
gotchas in there too.
2005-10-30 22:45 seanius
* plugins/Makefile.am: turned on -Wall in plugins/Makefile.am via
AM_CFLAGS. shouldn't keep our heads in the sand for potential
errors, after all :)
2005-10-30 18:05 seanius
* plugins/check_tcp.c: another fix from alex: check for '/' in the
server_address before trying to resolve it via is_host().
2005-10-30 10:25 seanius
* plugins/check_tcp.c: fixes for some bugs found in my merging of
the tcp socket patch
2005-10-29 16:38 seanius
* plugins-scripts/check_log.sh: check_log fixes from Ade Rixon
2005-10-29 13:46 seanius
* plugins/Makefile.am: patch from nsturm: Makefile.am should have
been checking for check_ldap instead of check_ldaps. the result
was that check_ldaps was not being created during the build
process.
2005-10-25 11:38 seanius
* COPYING, configure.in, plugins/Makefile.am, plugins/check_tcp.c,
plugins/netutils.c, plugins/netutils.h, plugins/utils.h,
po/de.po, po/fr.po: - added code to allow check_tcp (via
np_net_connect) work with local unix sockets. some testing
would be welcome. based on idea from Alex Samorukov. - also
introduced a check_clamd behavior in check_tcp.
2005-10-24 12:10 seanius
* plugins/: Makefile.am, check_by_ssh.c, check_dig.c, check_dns.c,
check_game.c, check_nagios.c, netutils.c, runcmd.c, runcmd.h,
utils.c, utils.h: initial merging of ae's np_runcmd code into
selected plugins.
2005-10-23 13:01 seanius
* configure.in: whoops, missed this one, same as last commit
2005-10-23 12:59 seanius
* plugins/: Makefile.am, netutils.c, sslutils.c: -
compartmentalized ssl code into seperate sslutils.c - ssl-related
cleanups in configure.in, and now openssl/gnutls options
automatically disable each other.
2005-10-19 21:22 seanius
* plugins/: check_http.c, check_smtp.c, check_tcp.c, netutils.c,
netutils.h: all plugins now using centralized ssl functions in
netutils.c
2005-10-19 14:05 seanius
* plugins/check_http.c: endif was a few lines off of where it
should be
2005-10-19 13:59 seanius
* configure.in, plugins/Makefile.am, plugins/check_http.c,
plugins/check_smtp.c, plugins/check_tcp.c, plugins/common.h,
plugins/netutils.c, plugins/netutils.h, plugins-root/Makefile.am:
- initial attempt at consolidating ssl-related code into
netutils.{c,h} - added some #ifdefs to common.h and netutils.h to
prevent multiple inclusions (as netlibs now includes common.h)
- all ssl plugins (tcp/http/smtp) compile cleanly against gnutls,
though certificate checking still needs to be done. - modified
configure script so you can also explicitly say "without-gnutls"
too (otherwise if you disable openssl you have no way of
disabling gnutls too)
2005-10-18 23:35 seanius
* configure.in, plugins/check_tcp.c: initial "experimental" support
for gnutls. by default openssl is still used if available, and
gnutls is only used if openssl is not available or explicitly
disabled (--without-openssl). currently the only plugin i've
verified to work is check_tcp, but i had to disable cert
checking.
2005-10-18 10:26 tonvoon
* README: Added license information to README with exemption for
use of OpenSSL
2005-10-13 12:51 tonvoon
* configure.in: Run spopen tests for Redhat ES SMP (Hans Engelen)
2005-10-13 11:22 seanius
* po/de.po: debian bts #313960: - grammatical german fixes. i'm
taking the reporter's word for it :)
2005-10-13 11:20 seanius
* plugins-scripts/check_ntp.pl: debian bts #268044: - use a "less
beastly" regex for parsing ntpq output. probably need some
more widespread testing on this one.
2005-10-13 11:18 seanius
* plugins/check_disk.c: debian bts #296278: - it seems that when
check_disk uses the "df" routines and is told to check a
non-mountpoint, it would check the filesystem on which the
directory was mounted (i.e. /var/log -> /var if no /var/log
mount). the system-call routines now do this too. might need
a bit more widespread testing, but looks good for me and i did
it without modifying any of the system-call-specific
codeblocks.
2005-10-13 11:16 seanius
* plugins/check_game.c: debian bts #307905: - someone changed the
cmdline syntax of check game without also updating the
usage/help function ;p
2005-10-13 11:14 seanius
* plugins-scripts/check_disk_smb.pl: debian bts #300701: -
check_smb fix for freespace threshold parsing from the cmdline
options.
2005-10-13 11:11 seanius
* plugins/check_smtp.c: multiple fixes in check_smtp from debian
(bts #285554): - fix for double free via SSL_CTX_free. looks
like the previous author knew this was a problem but didn't
care enough to fix it ;p. - use defines instead of const chars
for SMTP strings. - default to send our fqdn (via gethostbyname
lookup on gethostname) in the HELO string, as this is an
RFC/SMTP requirement. overridable via cmdline. - use EHLO
instead of HELO if using STARTTLS, as it is not SMTP but ESMTP.
- verify the server supports STARTTLS before initializing it. -
always send QUIT before disconnecting when possible.
2005-10-13 10:58 seanius
* plugins/check_mrtg.c: was this plugin even working? i don't
think the if/else logic was doing what was intended.
2005-10-13 10:55 seanius
* plugins/check_mysql.c: check mysql now reads [client] defaults
from my.cnf (debian bug #278817)
2005-10-06 13:16 seanius
* plugins/check_ups.c: fix for misreporting temperature in perfdata
output for check_ups (debian bts id: #316534)
2005-10-06 13:12 seanius
* configure.in, plugins-root/Makefile.am: whoops. now using
automake conditionals to prevent attempted compiles of pst3 on
non solaris systems.
2005-09-25 17:34 seanius
* plugins-root/Makefile.am: added rules to Makefile.am for pst3
2005-09-24 21:01 seanius
* configure.in: a final change to hardcode the path for where
plugins are installed. it's a very, very ugly hack... if anyone
can think of a better way to do it, i'm all ears.
2005-09-22 13:10 seanius
* configure.in: use test instead of '[ ... ]' in configure.in. the
check_procs/pst3 situation is still not quite fixed.
2005-09-22 10:43 seanius
* THANKS.in, configure.in, plugins-root/pst3.c: first version of
bob ingraham's pst3 to allow checking for longer cmdline names
than otherwise possible, by querying solaris kmem directly (ps
forcibly truncates). added requisite configure.in voodoo and
updated THANKS.in.
2005-09-22 09:10 tonvoon
* po/POTFILES.in: Mark moving of check_dhcp and check_icmp for
translation
2005-09-21 14:07 tonvoon
* AUTHORS, THANKS.in: Updated with contributors and new team member
2005-09-21 14:04 tonvoon
* plugins/check_nwstat.c: Reopen connections for each query
(1296296 - David Sullivan)
2005-09-21 11:09 tonvoon
* plugins/: check_dhcp.c, check_icmp.c: Moved into plugins-root/
2005-09-21 11:06 tonvoon
* ACKNOWLEDGEMENTS, CHANGES, Makefile.am, README, configure.in,
plugins/Makefile.am, plugins-root/.cvsignore,
plugins-root/Makefile.am, plugins-root/check_dhcp.c,
plugins-root/check_icmp.c: Separation of root setuid plugins into
plugins-root/
2005-09-20 17:11 tonvoon
* configure.in: Incorrect assignment of procppid in configure.in
(1296497 - Pascal Larisch)
2005-09-20 12:34 tonvoon
* configure.in, plugins/t/check_procs.t: Support for Tru64 for
check_procs + additional test cases
2005-09-19 15:18 tonvoon
* doc/RELEASING: Note to update version number before creating
ChangeLog
2005-09-19 14:51 tonvoon
* configure.in, package.def: For 1.4.2 release
2005-09-19 14:48 tonvoon
* ChangeLog: Updated for 1.4.2 release
2005-09-19 14:46 tonvoon
* doc/RELEASING: Reminders for news item and tag format
2005-09-19 14:42 tonvoon
* BUGS: Updated BUGS for 1.4.2 release
2005-09-19 11:58 tonvoon
* THANKS.in: More contributors
2005-09-15 09:39 tonvoon
* plugins/t/check_ping.t: Added test to make sure hostname has to
be specified
2005-09-15 09:27 tonvoon
* plugins/: check_procs.c, check_swap.c: - Cleanup minor compile
errors on Irix
2005-09-14 15:40 tonvoon
* plugins/check_ping.c: Using common message
2005-09-14 15:36 tonvoon
* plugins/check_ping.c: Required hostname not flagging as an error
2005-09-14 13:40 tonvoon
* plugins/Makefile.am: Some makes do not like blank lines after
"\". Fixed check_ldaps to only generate if check_ldap was created
(Chester Hosey)
2005-09-14 10:53 tonvoon
* plugins/check_load.c: Fix to parsing of uptime (Ronald Tin -
1254656)
2005-09-14 10:49 tonvoon
* configure.in: - Removing typos
2005-09-13 16:48 tonvoon
* plugins/check_ping.c: More diagnostic messages from check_ping
2005-09-12 12:20 seanius
* plugins/check_ping.c: re-add a call to setlocale(LC_ALL, "") in
check_ping.c
2005-09-12 11:37 tonvoon
* THANKS.in: For help in fixing Red Hat problem with ECHILD and
waitpid
2005-09-12 11:31 tonvoon
* plugins/popen.c, Makefile.am, configure.in, config_test/Makefile,
config_test/child_test.c, config_test/run_tests: ECHILD error at
waitpid on Red Hat systems (Peter Pramberger and Sascha Runschke
- 1250191)
2005-08-30 23:11 tonvoon
* plugins-scripts/subst.in: Better comments for what the
substitutions are doing
2005-08-01 22:30 tonvoon
* doc/BRANCHING: Move notes on branching away from RELEASING
2005-08-01 22:28 tonvoon
* package.def: For 1.4.1 release
2005-08-01 22:23 tonvoon
* ChangeLog, configure.in, BUGS, REQUIREMENTS: For 1.4.1 release
2005-07-25 15:17 illumino
* NPTest.pm: Change the environment variable NPTESTCACHE to
NPTEST_CACHE for consistancy
2005-07-25 02:47 illumino
* Helper.pm, Makefile.am, NPTest.pm, configure.in, test.pl.in,
plugins/t/check_disk.t, plugins/t/check_dns.t,
plugins/t/check_fping.t, plugins/t/check_ftp.t,
plugins/t/check_hpjd.t, plugins/t/check_http.t,
plugins/t/check_imap.t, plugins/t/check_load.t,
plugins/t/check_mysql.t, plugins/t/check_ping.t,
plugins/t/check_pop.t, plugins/t/check_procs.t,
plugins/t/check_smtp.t, plugins/t/check_snmp.t,
plugins/t/check_swap.t, plugins/t/check_tcp.t,
plugins/t/check_time.t, plugins/t/check_udp.t,
plugins/t/check_users.t, plugins/t/check_vsz.t,
plugins-scripts/t/check_rpc.t: [1185704] New Testing
Infrastructure. Complete rewrite of the original testing
infrastructure and all test cases (to use the new infrastructure)
See NPTest.pm and issue 1185704 for more details.
2005-07-20 23:39 tonvoon
* THANKS.in: More contributors
2005-07-20 23:38 tonvoon
* plugins/check_ping.c: Fix parsing for netkit-ping and
iputils-ping (Christian G Warden)
2005-07-11 23:15 tonvoon
* plugins/check_nwstat.c: Miscelleneous bug fixes (Gerd Mueller -
1235879)
2005-07-09 05:44 tonvoon
* BRANCHES: Changed format (already!) for awk simplicity
2005-07-09 05:03 tonvoon
* BRANCHES: Master file to describe the current branches in CVS.
Will be used by sfsnapshot to create the snapshot tarballs
2005-07-06 23:21 tonvoon
* configure.in: Removed ",", causing problems with MacOSX compile
2005-07-06 23:10 tonvoon
* plugins/check_swap.c: Updated help file to remove swap -s
reference (Sivakumar Nellurandi)
2005-07-06 22:00 tonvoon
* AUTHORS, THANKS.in: Sean Finney moved to main list of plugin
developers
2005-07-04 10:52 opensides
* contrib/tarballs/check_traffic-0.90b.tar.gz:
replace the version of check_traffic who was missing the plugin
by a good one
2005-06-29 05:11 seanius
* plugins/: runcmd.c, runcmd.h: initial versions of the runcmd
framework by andreas
2005-06-29 02:04 seanius
* plugins/check_swap.c: divide by 0 fix for check_swap
2005-06-28 03:26 seanius
* plugins/check_load.c: set LC_NUMERIC to POSIX in check_load
(1164325)
2005-06-28 01:26 seanius
* configure.in, plugins/Makefile.am, plugins/check_swap.c: scanf
parsing fix for check_swap from tracker id 1123292. now use
floor(3) to round down floating point numbers. requires -lm on
many systems, so support for testing for this was added to the
configure.in and automake template
2005-06-27 14:07 seanius
* plugins/check_hpjd.c: fixes from richard brodie (tracker id
1216576)
2005-06-26 17:27 seanius
* contrib/: check_dl_size.pl, check_ftpget.pl, check_logins.c,
check_mysql.c, check_mysql.pl, check_mysqlslave.pl,
check_nwstat.pl, check_pop3.pl, check_procl.sh, check_procr.sh:
spring cleaning of contrib directory from andreas
2005-06-26 17:18 seanius
* contrib/tarballs/: berger-ping.tar.gz, check_memory.tgz,
check_spread.tar, radius.tar.gz: removal of obsolete tarballs
2005-06-26 02:23 seanius
* plugins/check_swap.c: "asprintf madness" fix from andreas' patch
to np-d, minus the comments.
2005-06-05 18:43 seanius
* plugins/check_tcp.c: check_tcp code cleanup from andreas plus fix
to andreas' patch from sean
2005-06-03 14:53 seanius
* plugins/check_procs.c: gcc 2.x fixes from edward
2005-06-01 20:41 sghosh
* plugins/check_snmp.c: only load mibs if needed or specified -
patch 1212395
2005-05-28 02:21 seanius
* plugins/check_load.c: bugfixes to check_load thanks to andreas
2005-05-26 03:13 seanius
* plugins/check_mysql.c: fix for check_msyql so that it doesn't use
column numbers but the names instead for determining slave
status. thanks to james kingston.
2005-05-25 18:42 sghosh
* plugins/check_time.c: 64bit sys support - 1185713
2005-05-25 16:40 sghosh
* plugins/check_snmp.c: support for getnext - 1106430
2005-05-25 15:25 sghosh
* plugins/check_ping.c: RH9 pattern
2005-05-25 15:05 sghosh
* plugins-scripts/check_ntp.pl: perfdata patch - 1172539
2005-05-25 04:37 sghosh
* plugins-scripts/check_ntp.pl: new option for zero offset -
1159317
2005-05-25 04:23 sghosh
* plugins/check_snmp.c: v2c support - 1155754
2005-05-25 01:43 seanius
* configure.in, plugins/check_nagios.c, plugins/check_procs.c:
fixes for check_procs: - added support for printing the pid in
all the ps outputs - don't use the proc name to ignore self, use
the pid vs getpid(). - initialize procetime to null string
otherwise -vvv can have funny results
2005-05-25 01:30 seanius
* plugins/: check_tcp.c, netutils.c, netutils.h: bah, my_connect is
taken by mysql. now calling it np_net_connect.
2005-05-24 23:33 sghosh
* plugins-scripts/check_ntp.pl: patched bug id 1200030 - regex
update
2005-05-24 23:10 sghosh
* plugins-scripts/check_ntp.pl: patched bug id 1204636
2005-05-24 21:25 seanius
* plugins/: check_tcp.c, netutils.c, netutils.h: optimizations and
cleanup from andreas
2005-05-23 06:09 seanius
* nagios-plugins.spec.in: build fix
2005-05-03 03:00 seanius
* plugins/check_ping.c: setlocale(LC_ALL, "") should be
setlocale(LC_NUMERIC, "C") to properly parse the output of ping.
2005-05-03 02:52 seanius
* plugins/check_tcp.c: if check_tcp was called with -e but not -s,
it would hang in a call to my_recv. the fix committed here adds
on more piece of logic to the check to see if more data needs to
be read, avoiding the deadlock call. a better fix would be to
not use these "voodoo" heuristics and instead use poll() or
select(), but that's quite a bit more complicated.
2005-05-01 21:12 seanius
* plugins/: popen.c, popen.h: better error checking in spopen
signal handler (see 1107524)
2005-05-01 20:50 seanius
* configure.in: provide a --with-perl option
2005-04-29 01:27 stanleyhopcroft
* contrib/check_sybase: check_sybase 0.7 from Simon Bellman. Thx
2005-04-19 01:16 seanius
* plugins-scripts/check_ntp.pl: regexp fix for check_ntp
2005-04-19 01:09 seanius
* configure.in: check for the -w flag for ping6 as well as ping
2005-04-17 23:22 seanius
* plugins-scripts/check_disk_smb.pl: also change the --help output
to reflect that check_disk_smb defaults to empty passwords
2005-04-16 07:09 seanius
* plugins-scripts/check_disk_smb.pl: patch to check_disk_smb to
allow empty passwords
2005-04-14 05:13 seanius
* plugins-scripts/check_mailq.pl: check_mailq fix, don't be case
sensitive matching /^\s+Total\sRequests:\s(\d+)$/
2005-04-14 05:07 seanius
* plugins-scripts/check_ntp.pl: typographical fix in check_ntp
2005-04-11 19:02 seanius
* plugins/check_ssh.c: properly call close() on the ssh connection
before exiting.
2005-04-11 04:07 seanius
* configure.in, plugins/check_tcp.c: this should add support for
check_ssmtp, based on the 1.3.x patch in 1155562, but fixed to
follow how things are done in 1.4 (using strdup instead of
asprintf) and patching configure.in instead of configure.
2005-04-07 05:33 seanius
* plugins/check_smtp.c: in honor of joining up, my first bugfix.
this should resolve 1174070.
note i don't have an exchange server to test this against, but it
does what the requester mentioned (slightly cleaner than the
patch attached in the tracker).
it does, however, still work against my own postfix server :)
sean
2005-04-05 22:26 harpermann
* plugins/check_snmp.c: This is a first cut at adding performance
data to check_snmp. I wasn't sure how to handle UOM so only
values that return SNMP type Counter32: are labled with "c". All
other values have a blank UOM. I also left off warn, crit, max
and min values in the performance data until we come up with a
way to handle them.
2005-04-04 19:25 tonvoon
* THANKS.in: More contributors
2005-04-04 19:23 tonvoon
* plugins/: check_smtp.c: Fix static buffer (Nikolay Sturm)
2005-03-18 03:14 mattkent
* plugins/check_mysql.c: Replication check support for 4.1.x from
Gerrit Beine
2005-03-08 06:19 tonvoon
* plugins-scripts/check_ntp.pl: Added OS info for offset issue
2005-03-04 22:20 tonvoon
* plugins-scripts/check_ntp.pl: Ignore extra check on offset
0.00000 (John Warburton - 1150777)
2005-03-04 22:10 tonvoon
* plugins/: check_disk.c, check_smtp.c, check_ups.c: Fixed //
comments
2005-03-04 21:58 tonvoon
* plugins/: check_disk.c, check_smtp.c, check_ups.c: Fixed //
comments (Steve Greenland - 1143836)
2005-03-04 21:50 tonvoon
* plugins-scripts/check_ntp.pl: Support for IPv6 (Merijn Evertse -
1119917)
2005-03-04 21:04 tonvoon
* configure.in, package.def: Changed to next version number
2005-03-04 21:03 tonvoon
* doc/RELEASING: Notes on branching
2005-03-04 20:43 tonvoon
* CHANGES: Missed check_disk addition to 1.4
2005-02-11 11:49 stanleyhopcroft
* plugins/Makefile.am: Fix for check_icmp build on Solaris from
Andreas Ericsson <ae@op5.se>
2005-02-04 00:44 tonvoon
* configure.in: For 1.4 release
2005-02-04 00:43 tonvoon
* ChangeLog: Updated for 1.4 release
2005-02-04 00:29 tonvoon
* BUGS: New file to note known bugs for major releases
2005-02-04 00:28 tonvoon
* CHANGES: Reordering of items with most important announcements
first
2005-02-04 00:27 stanleyhopcroft
* contrib/check_oracle_tbs: New version (1.1) from John Koyle
2005-02-04 00:26 tonvoon
* Makefile.am: BUGS file addition to release
2005-02-04 00:26 tonvoon
* README: Cleanup and addition of reference to BUGS file
2005-02-04 00:25 tonvoon
* doc/RELEASING: Updated with corrections. Added note to update
BUGS file
2005-02-03 23:52 tonvoon
* THANKS.in: Patch against check_log
2005-02-03 23:51 tonvoon
* plugins-scripts/check_log.sh: Check for log file readability
2005-02-02 09:47 stanleyhopcroft
* contrib/check_email_loop.pl: Add debug option from John Rouillard
2005-02-02 06:42 stanleyhopcroft
* plugins/check_ide_smart.c: try again to stop looping
2005-02-02 05:44 stanleyhopcroft
* plugins/check_ide_smart.c: restructure main() to stop looping on
-n
2005-02-01 12:43 stanleyhopcroft
* contrib/check_traceroute-pure_perl.pl: Thank you to Myke Place
for check_traceroute-pure_perl.pl
2005-02-01 12:42 stanleyhopcroft
* THANKS.in: Thank you for contributed plugins
2005-02-01 12:30 stanleyhopcroft
* plugins/Makefile.am: check_icmp added to libexec_PROGRAMS
2005-02-01 12:25 stanleyhopcroft
* CHANGES: check_icmp no longer regarded as volatile; built by
default
2005-02-01 12:23 stanleyhopcroft
* plugins/linux.h: plugins/linux.h, vestigeal header required for
prior versions of check_icmp, no longer required.
2005-02-01 07:35 stanleyhopcroft
* CHANGES: Amendments for check_icmp
2005-02-01 07:34 stanleyhopcroft
* plugins/Makefile.am: hacks to partly support check_icmp.c (1.0).
2005-02-01 07:33 stanleyhopcroft
* plugins/check_icmp.c: Revised check_icmp (1.0) from A Ericsson.
2005-02-01 04:19 stanleyhopcroft
* contrib/: check_asterisk.pl,
check_http-with-client-certificate.c, check_email_loop.pl,
tarballs/check_traffic-0.91b.tar.gz: New or revised plugin in
/contrib
2005-01-28 22:42 stanleyhopcroft
* contrib/check_sybase: New version of Simon Bellwoods check_sybase
(0.4). Thank you.
2005-01-27 10:34 stanleyhopcroft
* contrib/check_traceroute.pl: Jon Meek's check_traceroute for Mon
hacked by YT for Nagios. Prob pretty weak
2005-01-27 10:32 stanleyhopcroft
* contrib/check_smart.pl: Candidate successor to
/plugins/check_ide_smart.c. Now in /contrib. NB there is another
new plugin with sim function
2005-01-27 04:52 stanleyhopcroft
* contrib/: check_fan_cpq_present, check_fan_fsc_present,
check_temp_cpq, check_temp_fsc, check_mysqlslave.pl: New /contrib
plugin
2005-01-27 04:43 stanleyhopcroft
* contrib/: check_pfstate, check_logins.c, check_arping.pl,
check_frontpage, check_oracle_tbs, check_pcpmetric.py,
check_cpqarray.c: New /contrib plugin
2005-01-27 02:27 stanleyhopcroft
* CHANGES, THANKS.in, contrib/README.TXT, po/de.po, po/fr.po:
1 New /contrib plugins 2 Revised check_dhcp.c status in CHANGES
2005-01-27 01:38 harpermann
* plugins/Makefile.am: Added check_dhcp bask into libexec_PROGRAMS
after talking with Stanley.
2005-01-26 21:39 tonvoon
* THANKS.in: More contributors
2005-01-26 21:21 tonvoon
* plugins/check_dig.c: Convert tabs to spaces from dig's answer
section (Randy O'Meara - 1107651)
2005-01-26 20:53 tonvoon
* REQUIREMENTS: Add recommendation for check_procs on Mandrake
systems (Paulo Fessel - 1106849)
2005-01-25 22:15 stanleyhopcroft
* plugins/check_ide_smart.c: Display usage if no argv (Reuben
Farrelly)
2005-01-25 18:11 harpermann
* plugins/check_dhcp.c: Tracker:1109261 This was an alignment
problem on Solaris. Linux kernel fixes alignment so this was not
seen there. Memcpy takes care of proper alignment. Tested on
RHEL V3 U3, RHEL V4, FreeBSD 4.10 (Thanks Stanley!) and Solaris 9
with the GNU env.
2005-01-25 12:43 stanleyhopcroft
* plugins/check_ide_smart.c: Trivial text changes (print_help,
commentary & -n option)
2005-01-25 09:20 stanleyhopcroft
* contrib/tarballs/check_icmp-0.8.tar.gz: moved to /plugins (core
plugin)
2005-01-25 09:19 stanleyhopcroft
* contrib/tarballs/check_cit.tgz: replaced by contrib/check_ica*
(esp check_ica_metaframe_pub_apps)
2005-01-25 09:16 stanleyhopcroft
* contrib/check_dhcp.c: moved to /plugins (core plugin)
2005-01-25 09:15 stanleyhopcroft
* contrib/check_citrix: Replaced by the check_ica* pair of plugins
(mainly check_ica_metaframe_pub_apps)
2005-01-25 09:12 stanleyhopcroft
* contrib/packet_utils.pm: packet creation and dumping hacks used
by check_ica* and check_lotus
2005-01-25 09:09 stanleyhopcroft
* contrib/check_ica_master_browser.pl: New plugin - checks that ICA
master browser is what it should be (important for firewalled
dialup)
2005-01-25 09:07 stanleyhopcroft
* contrib/check_ica_metaframe_pub_apps.pl: Replacement (structured
name mainly) for check_citrix: check of ICA browse service
2005-01-25 09:05 stanleyhopcroft
* contrib/check_ica_program_neigbourhood.pl: New plugin to check
Citrix Metaframe XP "Program Neighbourhood"
2005-01-25 09:04 stanleyhopcroft
* contrib/check_lotus.pl: New plugin to check responsiveness of
Louts Notes (v5 at least) servers
2005-01-24 23:17 stanleyhopcroft
* plugins/Makefile.am: Removed check_dhcp and check_icmp from
libexec_PROGRAMS (ie dont build by defaut)
2005-01-24 23:15 stanleyhopcroft
* CHANGES: Notes about check_dhcp and check_icmp (no longer built
by default, use at own peril, volatile)
2005-01-21 09:24 stanleyhopcroft
* configure.in: Set arch specifc preprocessor symbols in config.h.
TEMPORARY hack for check_dhcp.c [on FreeBSD 4: /check_dhcp -i
fxp0 -> DHCP ok: Received 1 DHCPOFFER(s), max lease time = 259200
sec.
2005-01-21 01:03 harpermann
* plugins/check_snmp.c: Tracker 1106378 fixed - The -t (timeout)
arg was not handled correctly when passed to the snmpget command.
Added -e --retries for the correct retries value to snmpcmd.
2005-01-21 00:01 tonvoon
* doc/developer-guidelines.sgml: Changing copyright to the Nagios
Plugins Development Team, rather than individual names. Also,
clarified use of ACKNOWLEDGEMENTS, THANKS.in and AUTHORS
2005-01-20 23:40 harpermann
* plugins/check_http.c: Changed long argument --minmax to
--pagesize and updated help and usage
2005-01-20 23:39 tonvoon
* AUTHORS, Makefile.am, THANKS.in: The AUTHORS file now used for
the plugin team, with THANKS.in as the contributors list.
2005-01-20 23:37 harpermann
* CHANGES: Added comment about check_http --pagesize and added max
value to page size check
2005-01-20 23:25 tonvoon
* AUTHORS: Added Sean for bug reports
2005-01-20 22:50 harpermann
* plugins/check_http.c: Tracker 1099682 fix. Now getting the page
size from Content-Length in the header. Added max value to the
-m switch so can do "-m min:max". Retained "-m min" convention.
Renamed long arg name to --minmax
2005-01-19 23:39 harpermann
* plugins/check_nt.c: In the CHECK_COUNTER block, there were
several strcats writing to unallocated memory. Changed to
asprintf. We're not freeing since plugin run is short.
2005-01-19 21:14 tonvoon
* plugins/check_swap.c: Fixed parsing of AIX lsps command (1093522)
2005-01-14 14:39 tonvoon
* AUTHORS: More contributors
2005-01-14 14:13 tonvoon
* plugins/check_disk.c: Fix logic error with -e switch where result
not set (Daniel Austin - 1102012)
2005-01-14 10:59 tonvoon
* configure.in: Fixed ssl configure problems on Solaris (Bug
1096091)
2005-01-13 18:24 tonvoon
* configure.in, plugins/check_swap.c: Use floats for holding memory
values to avoid different types on different OSes. Seems to have
a problem with the perf data for check_swap on Sol 2.6, but not
critical
2005-01-05 21:32 tonvoon
* configure.in, package.def: Update version number to next release
2005-01-04 00:16 opensides
* plugins/check_ide_smart.c:
still trying to fix #1094326
2005-01-03 01:37 opensides
* plugins/check_ide_smart.c:
more fixes for #1094326
2005-01-03 00:59 opensides
* plugins-scripts/check_mailq.pl:
fixes for #1094324
2005-01-02 14:00 opensides
* plugins/check_ide_smart.c:
fixing bug #1094326
still need to check the makefile for check_ide_smart.c
2005-01-01 16:15 tonvoon
* plugins/check_smtp.c: Removed old terminate function (Bug
1093491)
2004-12-30 17:17 tonvoon
* ChangeLog: Updated with r1_4-beta1 details
2004-12-30 14:23 tonvoon
* CHANGES: Note some syntax changes to check_disk
2004-12-30 14:22 tonvoon
* doc/RELEASING: Update package files for version
2004-12-30 14:21 tonvoon
* AUTHORS: For help with ps on FreeBSD 4
2004-12-30 14:19 tonvoon
* configure.in: Get ps command for FreeBSD 4 (Tomasz Pilat)
2004-12-30 00:41 opensides
* plugins/check_dhcp.c, plugins/check_dns.c, plugins/check_ping.c,
plugins/check_procs.c, plugins/check_smtp.c,
plugins/check_snmp.c, plugins/check_swap.c, plugins/check_tcp.c,
po/de.po, po/fr.po, po/nagios-plugins.pot:
more internationalization fixes internationalization freeze for
beta1
2004-12-28 23:40 opensides
* AUTHORS, po/fr.po:
more internationalization
2004-12-28 23:18 opensides
* plugins/Makefile.am, plugins/check_smtp.c, po/fr.po:
starttls support for check_smtp #1041576
2004-12-28 22:34 opensides
* AUTHORS, plugins/check_ping.c:
String match in check_ping for Solaris 10 #1091043
2004-12-28 20:40 tonvoon
* configure.in: sys/param.h needed for sys/swap.h on openbsd 3.6
(Julien Touche)
2004-12-27 22:44 opensides
* po/fr.po:
more internationalization
2004-12-25 23:17 opensides
* plugins/check_dig.c, plugins/check_disk.c, plugins/check_dns.c,
plugins/check_dummy.c, plugins/check_fping.c,
plugins/check_game.c, plugins/check_hpjd.c, plugins/check_icmp.c,
plugins/check_ide_smart.c, plugins/check_ldap.c,
plugins/check_load.c, plugins/check_mrtg.c,
plugins/check_mrtgtraf.c, plugins/check_mysql.c,
plugins/check_nagios.c, plugins/check_nt.c,
plugins/check_nwstat.c, plugins/check_overcr.c,
plugins/check_pgsql.c, plugins/check_ping.c,
plugins/check_procs.c, plugins/check_radius.c,
plugins/check_real.c, plugins/check_smtp.c, plugins/check_snmp.c,
plugins/check_ssh.c, plugins/check_swap.c, plugins/check_tcp.c,
plugins/check_time.c, plugins/check_udp.c, plugins/check_ups.c,
plugins/check_users.c, plugins/negate.c, plugins/netutils.c,
plugins/popen.c, plugins/popen.h, plugins/urlize.c,
plugins/utils.c, po/de.po, po/fr.po, po/nagios-plugins.pot:
various fixes for localization
2004-12-25 16:18 opensides
* po/: de.po, fr.po, nagios-plugins.pot:
new version of po files and pot file
2004-12-25 12:25 opensides
* package.def, po/POTFILES.in:
change realase name on package.def adding check_dhcp.c to
potfiles.in
2004-12-25 12:09 opensides
* plugins/: check_by_ssh.c, check_dhcp.c:
internationalization of check_dhcp internationalization fixes of
check_ssh
2004-12-24 18:06 opensides
* plugins/check_icmp.c, po/POTFILES.in, po/fr.po:
first pass at adapting to plugin guidelines and start of
localization
2004-12-23 18:54 opensides
* plugins/check_http.c, po/fr.po:
internationalization fixes
2004-12-23 16:47 mwirtgen
* po/de.po: german translations 391 to go
2004-12-23 09:30 tonvoon
* ACKNOWLEDGEMENTS, configure.in, m4/np_curl.m4,
plugins/Makefile.am: Another attempt at fixing check_http compile
on Redhat EL3. Fixed check_icmp compile (Lynne Lawrence -
1087171) - still some code changes to check_icmp outstanding.
Fixed compile of check_dhcp (complaining about socklen_t). Added
acknowledgements for Coreutils and curl
2004-12-22 23:02 harpermann
* plugins/check_nt.c: Added check for "%" in COUNTER <description>.
If it exists, <description> is used as an arg to asprintf. If
it doesn't exist, <description> is used as a label. If the
formatting is wrong, the program will segv.
2004-12-22 07:24 tonvoon
* lib/: Makefile.am, stdbool_.h: File required from coreutils
2004-12-21 22:52 tonvoon
* configure.in, plugins/Makefile.am: Revert back to previous
openssl checks (the ones from curl kept having problems with
later Redhat versions)
2004-12-21 22:36 tonvoon
* m4/stdbool.m4: Another m4 from coreutils
2004-12-21 15:45 tonvoon
* AUTHORS: For their bug reports
2004-12-21 12:47 tonvoon
* configure.in: Fix for FreeBSD ps command (reported by Michael
Bakker)
2004-12-21 09:32 tonvoon
* lib/Makefile.am, m4/Makefile.am, m4/np_coreutils.m4: Fixed
compile problem on Sol2.6 with stdbool.h
2004-12-21 08:56 stanleyhopcroft
* plugins/check_dhcp.c: Commentary changes only: cite origin of
copied code with reference to ACK file
2004-12-21 08:55 stanleyhopcroft
* ACKNOWLEDGEMENTS: ACK file contains the details of the authors of
code copied by the plugins
2004-12-21 05:00 mattkent
* plugins/check_dns.c: Add another error string match from Pasi
Tiittanen
2004-12-20 22:20 tonvoon
* plugins/check_nagios.c: Corrected help for expiry units. Restored
functionality of searching for process arguments
2004-12-20 22:01 tonvoon
* plugins/check_nagios.c: Updating help text to reflect using
shortname instead of full path for command
2004-12-20 21:38 tonvoon
* configure.in: - stupid typo
2004-12-20 21:26 tonvoon
* configure.in: Fix compile errors when looking for openssl
2004-12-20 09:04 stanleyhopcroft
* COPYING, plugins/check_dhcp.c, po/de.po, po/fr.po: Compilation
fixes for check_dhcp.c HP-UX 11. Still fails on HP-UX 10. Unknown
if check_dhcp works on UX.
2004-12-18 18:28 mwirtgen
* po/de.po: Initial commit on german translation - 428 to go
2004-12-17 18:14 tonvoon
* configure.in: Support for FreeBSD 5.2.1 and 5.3 in check_procs
2004-12-15 23:12 tonvoon
* configure.in: Bump version to next release
2004-12-15 23:11 tonvoon
* doc/developer-guidelines.sgml: Mistake in automake version - back
to 1.8
2004-12-15 23:10 tonvoon
* doc/RELEASING: Clarified notes
2004-12-15 21:56 tonvoon
* ChangeLog: Updated for r1_4_0-alpha3
2004-12-15 21:27 tonvoon
* doc/developer-guidelines.sgml: Updated requirements for GNU tools
2004-12-15 21:01 tonvoon
* m4/Makefile.am: Makefile for m4 files
2004-12-15 20:54 tonvoon
* Makefile.am, configure.in, plugins/Makefile.am, tools/setup:
Support for coreutils lib. Configure tests via m4 scripts from
coreutils
2004-12-15 20:51 tonvoon
* m4/: Makefile.am.in, afs.m4, codeset.m4, error.m4, exitfail.m4,
extensions.m4, fstypename.m4, fsusage.m4, getopt.m4, gettext.m4,
glibc21.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, inttypes.m4,
inttypes_h.m4, isc-posix.m4, lcmessage.m4, lib-ld.m4,
lib-link.m4, lib-prefix.m4, ls-mntd-fs.m4, malloc.m4,
mountlist.m4, np_coreutils.m4, onceonly.m4, progtest.m4,
realloc.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4,
unlocked-io.m4, xalloc.m4: Moving m4 files from lib/
2004-12-15 20:47 tonvoon
* lib/: Makefile.am, afs.m4, error.m4, exitfail.m4, fstypename.m4,
fsusage.m4, full-read.c, full-write.c, full-write.h, getopt.m4,
ls-mntd-fs.m4, onceonly.m4, safe-read.c, safe-read.h,
safe-write.c, safe-write.h, unlocked-io.m4, xalloc.m4: Moving m4
files into m4/. Added extra coreutils files required from
autoconf tests. Updated Makefile.am to have nagiosplug lib and a
separate coreutils lib
2004-12-15 00:10 opensides
* po/: de.po, fr.po:
fr.po work in progress still 88 to translate ;-)
2004-12-11 06:25 mattkent
* plugins/check_tcp.c: Patch from Ollie Cook to define return code
when expected value not received (#1082275). Also included
another change from Ollie Cook to do stricter matching of
expected values from the beginning of the line. When a user
defines an expected string this is changed to the old style
strstr matching.
2004-12-10 21:18 tonvoon
* plugins/check_ldap.c: Fixed compile warning
2004-12-10 06:10 mattkent
* plugins/Makefile.am: Compile broken - fixing link flags.
2004-12-10 05:57 mattkent
* plugins/check_dns.c: Error catching improvements from Ollie Cook
2004-12-10 05:54 mattkent
* plugins/check_pgsql.c: Fixing broken compile
2004-12-10 05:39 mattkent
* AUTHORS: More contributers
2004-12-10 00:54 stanleyhopcroft
* plugins/Makefile.am: Changes to link flags for check_dhcp.c
2004-12-10 00:52 stanleyhopcroft
* plugins/check_dhcp.c: Extensive changes to get MAC address from
Solaris via DLPI
2004-12-10 00:20 tonvoon
* plugins/: check_dns.c, check_procs.c: Reverting back ngettext
calls
2004-12-10 00:13 tonvoon
* plugins/common.h: Fix includes for gettext
2004-12-09 22:33 tonvoon
* configure.in: Include $libsuff for systems that define this
(based on advice from Daniel Stenberg)
2004-12-08 23:14 tonvoon
* configure.in: Removed redundant check and make export
LD_LIBRARY_PATH more sh friendly
2004-12-08 00:36 opensides
* configure.in, plugins/Makefile.am, plugins/check_by_ssh.c,
plugins/check_game.c, plugins/check_http.c,
plugins/check_ide_smart.c, plugins/check_ldap.c,
plugins/check_snmp.c, plugins/check_tcp.c:
patch 1028033
minor internationalization fixes
2004-12-08 00:22 tonvoon
* configure.in: Fixed output info for openssl and LD_LIBRARY_PATH
for subsequent compiles (otherwise get ld.so.1: ./conftest:
fatal: libssl.so.0.9.7: open failed)
2004-12-07 06:51 tonvoon
* configure.in, plugins/Makefile.am: Better SSL checking (inspired
by curl 7.12.2's configure.ac)
2004-12-07 03:13 mattkent
* plugins-scripts/check_ifoperstatus.pl: Option to check for admin
down (#1012191) from Ral Pedroche.
2004-12-07 02:45 stanleyhopcroft
* plugins/Makefile.am: Correct dependencies for check_dhcp.c.
2004-12-07 02:31 stanleyhopcroft
* plugins/: Makefile.am, check_dhcp.c: New plugin: check_dhcp.c.
Attempt to port to non Linux platform.
2004-12-06 18:49 opensides
* po/fr.po:
new version of fr.po
2004-12-05 22:07 mattkent
* plugins/check_snmp.c: Fix for -s string matching (#756567, Tony
Missana)
2004-12-05 12:59 opensides
* plugins/check_nt.c, po/fr.po, po/nagios-plugins.pot:
cleaned fr.po nagios-plugins.pot
2004-12-05 00:54 opensides
* plugins/: check_http.c, check_icmp.c, check_nwstat.c,
check_ping.c, check_smtp.c, check_swap.c, utils.h:
fix patch 998291 fix patch 1078934 expect check_ssh fix and
check_nt perfdata should stay on one word like in nagios
2004-12-04 12:34 opensides
* po/nagios-plugins.pot:
new version of pot file
2004-12-04 12:31 opensides
* plugins/check_by_ssh.c, plugins/check_dns.c, po/POTFILES.in:
various internationalization fixes
2004-12-04 12:12 opensides
* plugins/Makefile.am, plugins/check_by_ssh.c, plugins/check_dig.c,
plugins/check_http.c, plugins/check_ide-smart.c,
plugins/check_ide_smart.c, plugins/check_mrtg.c,
plugins/check_nt.c, plugins/check_nwstat.c,
plugins/check_overcr.c, plugins/check_real.c,
plugins/check_smtp.c, plugins/check_swap.c, plugins/check_tcp.c,
plugins/check_time.c, plugins/check_udp.c, po/POTFILES.in:
internationalization fixes bugfixes
2004-12-04 10:57 opensides
* plugins/: check_dns.c, check_hpjd.c:
check_dns needs a space between 'time' and the hostname
check_hpjd needs a parenthesis removed in print_usage()
2004-12-04 00:23 opensides
* plugins/check_swap.c:
Bug Fix [ 1024735 ] check_swap providing inaccurate swap
information on Sol6
2004-12-03 23:55 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_fping.c, check_game.c, check_hpjd.c, check_http.c,
check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
check_udp.c, check_ups.c, check_users.c, negate.c:
reverting my changes from !=TRUE to == ERROR, that's not good ;-(
sorry
2004-12-03 23:23 opensides
* plugins/check_tcp.c, po/de.po, po/fr.po, po/nagios-plugins.pot:
check_tcp parenthesis bug, header fix for po files
2004-12-03 23:01 opensides
* plugins/: check_dig.c, check_disk.c, check_dns.c, check_dummy.c,
check_fping.c, check_game.c, check_hpjd.c, check_http.c,
check_ide-smart.c, check_ldap.c, check_mrtg.c, check_mrtgtraf.c,
check_nagios.c, check_nt.c, check_nwstat.c, check_overcr.c,
check_pgsql.c, check_procs.c, check_radius.c, check_real.c,
check_smtp.c, check_snmp.c, check_swap.c, check_tcp.c,
check_time.c, check_udp.c, check_ups.c:
print_help and print_usage() cleanup
other misc cleanups
2004-12-03 21:56 stanleyhopcroft
* plugins/check_tcp.c: 1041571: -D option processing corrected
(Eric Chen). Changed process_arguments() to return TRUE. Dont
know why this was necessary.
2004-12-03 20:28 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
check_mrtg.c, check_mrtgtraf.c, check_mysql.c, check_nagios.c,
check_nt.c, check_nwstat.c, check_overcr.c, check_pgsql.c,
check_ping.c, check_procs.c, check_radius.c, check_real.c,
check_smtp.c, check_snmp.c, check_ssh.c, check_swap.c,
check_tcp.c, check_time.c, check_udp.c, check_ups.c,
check_users.c, negate.c, urlize.c: remove UT_HLP_VRS from
print_usage this was not a good idea ;-)
2004-12-03 19:20 opensides
* plugins/utils.c:
removing support fonction removing warranty from print_revision
2004-12-03 17:48 opensides
* ROADMAP, package.def, plugins/negate.c, plugins/utils.h:
some minor fixes
2004-12-03 17:15 opensides
* plugins/: check_load.c, check_ssh.c:
correcting parenthesis error
2004-12-03 16:56 opensides
* AUTHORS, plugins/check_load.c, plugins/check_pgsql.c,
plugins/check_ping.c, plugins/check_procs.c,
plugins/check_radius.c, plugins/check_real.c,
plugins/check_smtp.c, plugins/check_snmp.c, plugins/check_ssh.c,
plugins/check_swap.c, plugins/check_tcp.c, plugins/check_time.c,
plugins/check_udp.c, plugins/check_ups.c, plugins/check_users.c,
plugins/urlize.c:
fixes for internationalization
2004-12-03 11:45 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
check_mrtg.c, check_mrtgtraf.c, check_mysql.c, check_nagios.c,
check_nt.c, check_nwstat.c:
internationalization fixes and help fixes
2004-12-03 09:19 opensides
* plugins/check_by_ssh.c, plugins/check_dig.c,
plugins/check_http.c, plugins/check_nwstat.c,
plugins/check_pgsql.c, plugins/check_ping.c, plugins/check_udp.c,
po/.cvsignore:
Localization fixes
2004-12-03 08:45 opensides
* plugins/: check_ide-smart.c, check_pgsql.c:
correcting copyright and remaning int result = STATE_UNKNOWN;
2004-12-03 04:37 mattkent
* plugins/check_nagios.c: Affected by elapsed time patch.
2004-12-03 04:16 mattkent
* AUTHORS: Another contributer.
2004-12-03 04:10 mattkent
* configure.in, plugins/check_procs.c: Patch from Russell Miller
which adds elapsed time as a metric. Only for linux so far.
(991359)
2004-12-03 02:21 mattkent
* plugins/check_ldap.c: Fix typo breaking compile.
2004-12-03 00:55 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_ide-smart.c, check_ldap.c, check_load.c, check_mrtg.c,
check_mrtgtraf.c, check_mysql.c, check_nagios.c, check_nt.c,
check_nwstat.c, check_overcr.c, check_pgsql.c, check_ping.c,
check_procs.c, check_radius.c, check_real.c, check_smtp.c,
check_snmp.c, check_ssh.c, check_swap.c, check_tcp.c,
check_time.c, check_udp.c, check_ups.c, check_users.c, negate.c,
urlize.c:
bump copyright year initialize result to STATE_UNKNOW in place of
STATE_OK
2004-12-02 21:23 opensides
* plugins/: check_dns.c, check_ldap.c, check_procs.c:
--disable-nls throws an error on check_dns, check_procs and
check_ldap without this patch.
2004-12-02 21:03 stanleyhopcroft
* plugins/check_tcp.c: Tracker 1041571: appended :D to
getopt_long() args (for cert expiry check). Eric Chen.
2004-12-02 16:51 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_fping.c, check_game.c, check_hpjd.c, check_http.c,
check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
check_udp.c, check_ups.c, check_users.c, negate.c, popen.c,
utils.c:
More internationalization work new usage4 function to permit
localisation of think like check_ssh: xxxxx
2004-12-02 14:54 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_fping.c, check_game.c, check_hpjd.c, check_ldap.c,
check_load.c, check_mrtg.c, check_mrtgtraf.c, check_mysql.c,
check_nagios.c, check_nt.c, check_nwstat.c, check_overcr.c,
check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
check_real.c, check_smtp.c, check_snmp.c, check_ssh.c,
check_swap.c, check_tcp.c, check_time.c, check_udp.c,
check_ups.c, check_users.c, negate.c:
return of process_arguments() is TRUE not OK !
2004-12-02 14:35 opensides
* plugins/check_http.c: return of process_arguments() is TRUE not
OK !
2004-12-02 08:45 stanleyhopcroft
* plugins/Makefile.am: Add check_icmp plugin
2004-12-02 08:44 stanleyhopcroft
* plugins/check_icmp.c: check_icmp plugin from A Ericsson
2004-12-02 08:44 stanleyhopcroft
* plugins/linux.h: For check_icmp plugin from A Ericsson
2004-12-02 04:48 mattkent
* command.cfg.in: Fix typo.
2004-12-02 04:36 mattkent
* AUTHORS, REQUIREMENTS, command.cfg.in, plugins/check_ups.c: Patch
from Arnaud Quette to bring support to NUT 2.0 plus couple
improvements and fixes (1038413 which includes 1032009, 815785).
2004-12-02 01:11 opensides
* plugins/: check_dns.c, check_game.c, check_http.c,
check_ide-smart.c, check_load.c, check_mrtgtraf.c, check_mysql.c,
check_nagios.c, check_nt.c, check_nwstat.c, check_overcr.c,
check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
check_real.c, check_snmp.c, check_ssh.c, check_tcp.c,
check_time.c, check_udp.c, check_ups.c, negate.c, popen.c:
changed Error: by CRITICAL - more localization fixes
2004-12-02 00:30 opensides
* contrib/check_rbl.c:
adapted for localization
2004-12-01 23:54 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
check_mrtg.c, check_mrtgtraf.c, check_mysql.c, check_nagios.c,
check_nt.c, check_nwstat.c, check_overcr.c, check_pgsql.c,
check_ping.c, check_procs.c, check_radius.c, check_real.c,
check_smtp.c, check_snmp.c, check_ssh.c, check_swap.c,
check_tcp.c, check_time.c, check_udp.c, check_ups.c,
check_users.c, common.h, getaddrinfo.c, getaddrinfo.h,
gethostbyname.c, gethostbyname.h, negate.c, netutils.c,
netutils.h, popen.c, urlize.c, utils.c, utils.h:
standardize localization string standardize unknow arguments
2004-12-01 22:02 tonvoon
* doc/RELEASING: Notes on releasing
2004-12-01 21:55 tonvoon
* configure.in: Next version number
2004-12-01 21:01 tonvoon
* ChangeLog: Updated for r1_4_0-alpha2
2004-12-01 20:43 tonvoon
* tools/devmode: eval not working - instructions now in comments
2004-12-01 20:09 tonvoon
* plugins-scripts/check_oracle.sh: Fixed pmon process checking from
a change I made earlier
2004-12-01 19:33 opensides
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_fping.c, check_ssh.c:
first pass at standardization of messages for the localization
2004-12-01 08:41 stanleyhopcroft
* configure.in: Bryan Loniewski contributed check_jabber plugin
(SSL/check_tcp); Eric Chen check_nntps plugin + SSL certficate
expiry check [added -D option to check_tcp]
2004-12-01 08:28 stanleyhopcroft
* plugins/netutils.c: 1075725: patch to my_connect() to deal with
SEGV if connect fails
2004-12-01 08:26 stanleyhopcroft
* plugins/check_tcp.c: 1041571 & 664615: check_tcp with cert check
+ nntps, simap, jabber
2004-12-01 03:50 mattkent
* contrib/check_nmap.py: Small fix from David Rippel (996800) for
newer versions of nmap
2004-12-01 03:26 mattkent
* plugins-scripts/check_oracle.sh: Perf data and other improvements
by Florian Gleixner (1027787)
2004-11-30 07:40 opensides
* po/fr.po:
more french translations
2004-11-30 00:25 tonvoon
* plugins/check_ide-smart.c: Capitalized some error messages
2004-11-30 00:24 tonvoon
* plugins/urlize.c: Updated output to UNKNOWN
2004-11-30 00:21 opensides
* po/fr.po:
translating fr.po new part
2004-11-29 23:52 tonvoon
* lib/: Makefile.am, exitfail.m4, getopt.m4: Extra files required
from coreutils
2004-11-29 23:46 tonvoon
* SUPPORT: Cleanup and statement re: contrib plugins
2004-11-29 22:42 tonvoon
* configure.in: Patches for configure on *BSD (Julien Touche)
2004-11-29 05:07 stanleyhopcroft
* contrib/: README.TXT, rblcheck-dns, rblcheck-web,
tarballs/check_icmp-0.8.tar.gz: [no log message]
2004-11-29 04:49 mattkent
* contrib/check_linux_raid.pl: Better error checking (820806)
2004-11-29 00:56 opensides
* po/fr.po:
second version of french .po still 300 ;-) to translate
2004-11-28 22:57 opensides
* po/fr.po:
first new translation of fr.po
2004-11-27 21:00 mattkent
* plugins/check_ssh.c: Add remote version check (1030269, Daniel
Gullin)
2004-11-26 08:54 stanleyhopcroft
* AUTHORS: New plugin/bugfix: tracker 1070929. check_hpjdres
2004-11-25 05:09 mattkent
* plugins/check_disk.c: From old test harness code, make
./check_disk -w 0 -c 0 / valid parameters again
2004-11-25 05:06 mattkent
* test.pl.in, plugins/t/check_dns.t, plugins/t/check_http.t,
plugins/t/check_load.t, plugins/t/check_mysql.t: Updating test
harness
2004-11-25 04:49 stanleyhopcroft
* contrib/README.TXT: Removed reference to non existent tar balls
(Hopcroft plugins)
2004-11-25 04:46 stanleyhopcroft
* contrib/check_wins.pl: Non functional tidy ups to check_wins
2004-11-25 04:30 stanleyhopcroft
* contrib/check_hw.sh: Added /contrib/check_hw.sh by Rok Debevc
2004-11-25 04:28 stanleyhopcroft
* contrib/check_sybase: Added /contrib/check_sybase by Simon
Bellwood
2004-11-25 03:01 stanleyhopcroft
* contrib/check_hprsc.pl: update check_hprsc.pl for Net-SNMP
versions >=4
2004-11-24 21:34 tonvoon
* tools/sfsnapshot: Removing build directory after creating
distribution
2004-11-24 21:19 tonvoon
* doc/makefile: Added clean
2004-11-24 21:01 tonvoon
* configure.in: Fix snapshot build on SF
2004-11-24 06:36 stanleyhopcroft
* plugins/check_hpjd.c: add -OQa to command_line in check_hpjd.c.
Correct nagiosplug-Bugs-889948, 846329
2004-11-24 04:35 mattkent
* plugins/check_nwstat.c: Attempting to fix a reported segfault
(1055054)
2004-11-24 04:25 mattkent
* plugins/check_http.c: Added support for sending port in host
header (913633)
2004-11-24 00:46 tonvoon
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_http.c, check_ldap.c, check_load.c, check_mrtg.c,
check_mrtgtraf.c, check_mysql.c, check_nwstat.c, check_overcr.c,
check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
check_real.c, check_smtp.c, check_snmp.c, check_ssh.c,
check_tcp.c, check_time.c, check_udp.c, check_ups.c,
check_users.c, negate.c, urlize.c: Making messages more
consistent
2004-11-23 23:53 tonvoon
* plugins/: check_hpjd.c, check_mrtg.c, check_mrtgtraf.c,
check_mysql.c, check_real.c, check_smtp.c, check_swap.c,
check_by_ssh.c, check_dns.c, check_time.c: Standardising
translation texts
2004-11-23 23:35 tonvoon
* doc/developer-guidelines.sgml: Guidelines on translated text
(Yves Mettier, Simon Bellwood, Andreas Ericsson)
2004-11-23 22:49 tonvoon
* doc/developer-guidelines.sgml: Adding notes on developer and
translator access in SF
2004-11-23 06:06 mattkent
* AUTHORS: More contributers.
2004-11-23 05:49 mattkent
* plugins/check_disk.c: Fix integer warning and critical options.
Take values from current unit instead of always KB.
2004-11-23 00:06 stanleyhopcroft
* doc/developer-guidelines.sgml: trivial changes to Perl plugin
section.
2004-11-22 22:44 tonvoon
* AUTHORS: More contributors
2004-11-22 22:30 tonvoon
* plugins/check_nt.c: Fixed some messages that should not be
translated (Benoit Mortier)
2004-11-22 20:35 tonvoon
* lib/getloadavg.m4: Not required - autoconf has own macros
2004-11-21 05:24 mattkent
* plugins/check_mysql.c: Patch from Nathan Shafer to add
replication slave check (1006777)
2004-11-20 22:56 mattkent
* AUTHORS: Oops, forgot one.
2004-11-20 22:46 mattkent
* AUTHORS: More contributers.
2004-11-20 22:43 mattkent
* contrib/check_linux_raid.pl: Fix always reading status from the
last line (1045506)
2004-11-20 22:28 mattkent
* plugins/check_ping.c: New output format reported by pumuckel1980
(946857)
2004-11-20 21:36 mattkent
* plugins/check_http.c: Bit of cleanup, fix verbose output.
2004-11-20 07:04 tonvoon
* configure.in: Fixed va_copy problem on AIX by copying samba's
configure.in
2004-11-19 15:58 tonvoon
* CODING: Added perl coding guidelines, from Programming Perl book
(Andreas Ericsson)
2004-11-19 14:28 tonvoon
* lib/getloadavg.m4: I think getloadavg.m4 is no longer required
(as autoconf has built-in function)
2004-11-19 14:24 tonvoon
* lib/Makefile.am: Removed getloadavg.m4 (built-in function in
autoconf) and added cloexec.[hc] for getloadavg.c
2004-11-19 14:22 tonvoon
* lib/: cloexec.h, cloexec.c: Files required for getloadavg.c
2004-11-19 03:59 mattkent
* plugins-scripts/check_ntp.pl: Fix incorrectly labelled units in
output (1025905, Jason Martin)
2004-11-19 03:44 mattkent
* plugins/check_procs.c: Enabling timeout flag (1010097, Jason
Martin)
2004-11-19 02:53 mattkent
* plugins/check_http.c: Make -L notice ssl use to output a proper
href (1035234, Abid Rasheed)
2004-11-19 02:39 mattkent
* plugins/check_smtp.c: Change unit from 'us' to 's' to match other
core plugins for simplicity.
2004-11-19 00:21 tonvoon
* AUTHORS: - More great contributors...
2004-11-19 00:12 tonvoon
* plugins/check_http.c: Options for User Agent string and extra
headers (Ibere Tizio)
2004-11-18 22:48 tonvoon
* configure.in: Remove unnecessary CPPFLAGS for openssl (Lutz
Behnke - 686476)
2004-11-18 22:42 tonvoon
* plugins/check_tcp.c: Enhance SSL initialization problems (Phil
Dibowitz - 1055120)
2004-11-18 05:36 mattkent
* plugins/check_smtp.c: Go critical on no route to host instead of
warning (934025)
2004-11-18 00:27 tonvoon
* tools/setup: Use copy of tools for consistency if building on
different platforms from shared source
2004-11-17 23:35 tonvoon
* plugins/check_tcp.c: Ignore output from tcp port (949070 -
Jan-Piet Mens)
2004-11-17 23:22 tonvoon
* plugins/check_http.c: --no-body and --max-age options (949521 -
Jamie Zawinski)
2004-11-17 22:19 tonvoon
* doc/developer-guidelines.sgml: Added section on using
Sourceforge, mainly for administrators
2004-11-12 00:51 tonvoon
* tools/update_coreutils: Tool to pull newer coreutil libs into
nagiosplug's lib directory
2004-11-12 00:49 tonvoon
* lib/Makefile.am, lib/error.c, lib/error.h, lib/error.m4,
lib/exit.h, lib/exitfail.c, lib/exitfail.h, lib/fsusage.c,
lib/fsusage.h, lib/fsusage.m4, lib/full-read.h, lib/getloadavg.c,
lib/getopt.c, lib/getopt.h, lib/getopt1.c, lib/gettext.h,
lib/ls-mntd-fs.m4, lib/malloc.c, lib/mountlist.c,
lib/mountlist.h, lib/onceonly.m4, lib/realloc.c, lib/snprintf.c,
lib/strtod.c, lib/unlocked-io.h, lib/unlocked-io.m4,
lib/xalloc.h, lib/xalloc.m4, lib/xmalloc.c, lib/xstrdup.c,
plugins/check_disk.c, po/de.po, po/fr.po: Update to using
coreutils 5.2.1 libraries and snprintf.c from samba 3.0.8
2004-09-07 21:27 tonvoon
* doc/developer-guidelines.sgml: Clarity based on comments by Ben
Clewett
2004-08-23 22:59 tonvoon
* AUTHORS: For patch to check_nt
2004-08-23 22:58 tonvoon
* plugins/check_nt.c: Restore divisor for memory size reported by
Windows. Also, implements warning and critical levels for
performance counters. (Paulo Afonso Graner Fessel)
2004-08-23 22:18 tonvoon
* configure.in, plugins/check_swap.c, plugins/common.h: Using
swapctl for Solaris, Tru64 and *BSD (Sean Finney)
2004-08-19 20:05 tonvoon
* configure.in, plugins/check_swap.c, plugins/common.h: Patch for
tru64 using swapctl calls (Sean Finney)
2004-08-18 22:32 tonvoon
* AUTHORS: Another day's work...
2004-08-18 22:25 tonvoon
* plugins/check_dig.c: Checks different record types and checks
against an expected address (Bill Kunkel)
2004-08-18 21:36 tonvoon
* configure.in: Support for check_swap on NetBSD/OpenBSD (Sean
Finney)
2004-08-18 21:25 tonvoon
* plugins-scripts/check_oracle.sh: More specific test for sid (Paul
Allen)
2004-08-18 21:21 tonvoon
* plugins/check_disk.c: Fixed perfdata so that shows amount used
(Garry Cook)
2004-08-18 20:51 tonvoon
* plugins-scripts/check_ifstatus.pl: Perfdata corrected (Garry
Cook)
2004-08-18 20:46 tonvoon
* plugins-scripts/check_oracle.sh: Fix for similar dataabase sids
(Carole Verdon)
2004-08-18 20:41 tonvoon
* AUTHORS: Gary Cook for perfdata for check_nt
2004-08-18 20:40 tonvoon
* plugins/check_nt.c: Perfdata added (Gary Cook)
2004-06-26 17:39 tonvoon
* tools/sfsnapshot: Change of compile server and cleanups
2004-06-26 06:13 tonvoon
* tools/sfsnapshot: Remove need to alter configure.in. Using
different compile farms for SF to do the compiling
2004-05-24 15:22 tonvoon
* AUTHORS: Ben Clewett
2004-05-24 15:21 tonvoon
* lib/Makefile.am: Missed getloadavg.c (Ben Clewett)
2004-05-20 07:09 egalstad
* contrib/check_dhcp.c: DHCP bug fix
2004-05-10 11:25 tonvoon
* configure.in: Set EXTRAS with check_swap if ac_cv_have_swap is
set
2004-04-30 12:12 tonvoon
* configure.in: ps -el for HP-UX
2004-04-29 16:08 tonvoon
* configure.in: Bug in ps -el for AIX 4.1
2004-04-29 12:13 tonvoon
* AUTHORS: Sven for HP-UX requirements
2004-04-29 12:12 tonvoon
* REQUIREMENTS: HP-UX requirements (Sven Schaffranneck)
2004-04-19 14:13 sghosh
* contrib/check_nagios_db_pg.pl, AUTHORS: Postgres backend monitor
2004-04-19 14:10 sghosh
* AUTHORS, plugins-scripts/check_mssql.pl: check_mssql.pl
2004-04-19 14:08 sghosh
* README: Win32 plugin repository
2004-04-08 12:05 tonvoon
* AUTHORS: Torsten Werner for check_racle patches
2004-04-08 12:05 tonvoon
* plugins-scripts/check_oracle.sh: Cleaner calls to awk and support
if Oracle has different national language settings (Torsten
Werner)
2004-04-08 11:50 tonvoon
* plugins-scripts/check_oracle.sh: Cleaner calls to awk and support
if Oracle has different national language settings (Torsten
Werner)
2004-04-06 17:02 tonvoon
* configure.in, plugins/check_procs.c: Fixed weird scanf bug on
Solaris
2004-04-02 20:37 kdebisschop
* plugins/check_by_ssh.c: add example invocation to help
2004-04-01 00:01 tonvoon
* AUTHORS: Howard Wilkinson
2004-03-31 23:53 tonvoon
* plugins/check_nt.c: Command line argument bug (Howard Wilkinson)
2004-03-31 23:48 tonvoon
* plugins/netutils.c: Set default state (Howard Wilkinson)
2004-03-31 20:20 tonvoon
* doc/developer-guidelines.sgml: Update author list
2004-03-23 06:35 kdebisschop
* plugins/check_fping.c: check was supposed to be agains ms - got
munged wfixeg the perfdata output to be in seconds
2004-03-22 07:25 tonvoon
* plugins/check_http.c: Getopt bug (Joe Rhett)
2004-03-22 07:22 tonvoon
* AUTHORS: Joe Rhett for getopt bug
2004-03-22 07:19 tonvoon
* plugins/check_http.c: Option --url not mapped (Joe Rhett)
2004-03-18 20:58 tonvoon
* AUTHORS: More help for patches
2004-03-18 20:50 tonvoon
* plugins/check_disk.c: Typo in check_disk units (Matthew Kent -
909281)
2004-03-18 20:40 tonvoon
* configure.in: Mysql include path not added correctly (Arnold
Cavazos - 912974)
2004-03-18 20:37 tonvoon
* configure.in: Mysql include path not added correctly (Arnold
Cavazos - 912974)
2004-03-18 20:31 tonvoon
* plugins/check_radius.c: Option to fill in NAS-identifier to
Emulate pam_radius behaviour (Alexander Kulak)
2004-03-17 20:38 tonvoon
* doc/developer-guidelines.sgml: Copyright information for patches
2004-03-14 04:09 kdebisschop
* plugins/: check_ldap.c, check_load.c, check_mrtgtraf.c,
check_pgsql.c, check_smtp.c, check_tcp.c, check_ups.c: use
fperfdata
2004-03-14 03:37 kdebisschop
* plugins/check_fping.c: use fperfdata
2004-03-12 03:40 egalstad
* contrib/check_cluster2.c: New cluster plugin for Nagios 2.x
2004-03-11 15:33 tonvoon
* CHANGES: check_procs difference
2004-03-11 15:17 tonvoon
* plugins/check_nagios.c: Incorporate check_proc changes into
check_nagios. ps handling probably should be moved into utils.c
in future
2004-03-08 21:03 tonvoon
* configure.in: Require ngettext
2004-03-08 21:01 tonvoon
* doc/developer-guidelines.sgml: Information on plugin output
format
2004-03-04 05:08 kdebisschop
* plugins/: check_dig.c, check_dns.c, check_game.c: use float for
time in perf data
2004-03-03 12:33 kdebisschop
* plugins/: check_http.c, utils.c: begin writing some perfdata as
float
2004-03-03 04:24 kdebisschop
* contrib/check_pop3.pl: fix loop and \r\n (Jason Burnett -
http://sourceforge.net/tracker/index.php?func=detail&aid=895677&group_id=29880&atid=397599)
2004-03-03 03:48 kdebisschop
* plugins/check_disk.c: check_disk was getting blocks instead of
bytes (Michael Musikhin -
http://sourceforge.net/tracker/index.php?func=detail&aid=900215&group_id=29880&atid=397599)
2004-03-02 17:44 kdebisschop
* pkg/: redhat/requires, fedora/requires: attempt to prune requires
2004-03-02 06:17 kdebisschop
* Makefile.am, nagios-plugins.spec.in, pkg/fedora/requires: make
specfile into a template which can generate a generic spec plus
specs suitable for various repositories
2004-03-02 06:13 kdebisschop
* configure.in: prpare for alpha2
2004-03-02 05:25 kdebisschop
* plugins/check_http.c: relax check for -w/-c to accept floats (bug
report from Warrick FitzGerald)
2004-03-02 05:01 kdebisschop
* AUTHORS, plugins/check_swap.c: fix div by zero error when
swaptotal is zero (Flo Gleixner)
2004-03-01 12:27 kdebisschop
* plugins/: check_tcp.c, netutils.c: check_tcp was returning
uninitialized string with user-defined refused outcome
2004-03-01 06:15 kdebisschop
* plugins/check_smtp.c: allow regex for ecpect checks
2004-02-29 04:09 kdebisschop
* plugins/: check_nwstat.c, netutils.c, netutils.h: was making up
to 34 separate tcp connections - now we open one and reuse
2004-02-28 07:27 kdebisschop
* plugins/check_snmp.c: checks for warn in check_num() mistakenly
referred to crit limits
2004-02-28 06:51 kdebisschop
* plugins/check_smtp.c: minor doco update to reflect handling of
repeated caoomand strings
2004-02-28 06:48 kdebisschop
* plugins/check_smtp.c: work in progress to accept multiple
command/expect pairs
2004-02-28 04:54 kdebisschop
* plugins/check_swap.c: update to work with Linux 2.6 /proc/meminfo
format
2004-02-25 08:50 kdebisschop
* AUTHORS, plugins/check_dns.c: check server for authoritative
status (from Jon Hallet)
2004-02-25 08:12 kdebisschop
* plugins/check_swap.c: change some datatypes to llu for very large
swaps
2004-02-25 07:49 kdebisschop
* configure.in, plugins/check_ping.c: pass timeout to ping if
supported with -w parameter (linux)
2004-02-21 05:37 kdebisschop
* plugins/check_by_ssh.c: add option to ignore a specified number
of lines on stderr (to suppress a login banner)
2004-02-21 03:50 kdebisschop
* plugins-scripts/check_breeze.pl: add $opt_C to 'use vars' (report
882381 and patch form Jason Martin)
2004-02-21 03:44 kdebisschop
* AUTHORS: Add Jason Martin for report of missing $opt_C for 'use
vars' in check_breeze
2004-02-21 03:42 kdebisschop
* plugins-scripts/check_breeze.pl: add opt_C to 'usr vars'
2004-02-20 19:35 tonvoon
* plugins/check_http.c: - Missed out getopt for -T
2004-02-20 05:25 kdebisschop
* contrib/check_dhcp.c, contrib/check_procl.sh,
plugins/check_snmp.c, plugins/negate.c, plugins/netutils.c,
plugins/urlize.c: spell fix "received"
2004-02-20 05:22 kdebisschop
* plugins/check_snmp.c, plugins/negate.c, plugins/netutils.c,
plugins/urlize.c, contrib/check_dhcp.c: spell fix "received"
2004-02-20 05:21 kdebisschop
* plugins/: utils.c, utils.h: add perfdata function for floats to
complement ints, also spell fix "received"
2004-02-20 05:19 kdebisschop
* AUTHORS: add Ralph Rye for report of check_procs segfault on
AIX/WebSphere and proof-of-concept patch
2004-02-20 05:04 kdebisschop
* plugins/check_procs.c: handle case where line from ps output
exceed MAX_INPUT_BUFFER
2004-02-20 03:37 tonvoon
* AUTHORS: Shaun Wills for patch to check_http
2004-02-20 03:21 tonvoon
* plugins/check_http.c: Added Content-type when POSTing (Shawn
Wills)
2004-02-20 03:00 tonvoon
* plugins/check_procs.c: - compiler warning removed (but usage2
messages badly broken)
2004-02-20 02:58 tonvoon
* AUTHORS: Matt Pounsett for bug report
2004-02-20 02:09 tonvoon
* plugins/check_dns.c: Different text to scan for if multiple
addresses
2004-02-20 01:05 tonvoon
* plugins/check_swap.c: Corrected usage message (Matt Pounsett)
2004-02-19 13:24 tonvoon
* AUTHORS: Michael Musikhin for check_disk patch
2004-02-19 13:23 tonvoon
* plugins/check_disk.c: Uninitialised variables for -X (Bug 900091
- Michael Musikhin)
2004-02-18 14:57 kdebisschop
* configure.in: version bump (old)
2004-02-18 14:56 kdebisschop
* acinclude.m4, lib/afs.m4, lib/fstypename.m4, lib/fsusage.m4:
underquoted defines cause warning on FC2
2004-02-18 02:11 tonvoon
* AUTHORS: Johannes Herlitz for patch to check_dns
2004-02-18 02:09 tonvoon
* plugins/check_dns.c: Output message includes the query_address,
as inspired by Johannes Herlitz. Also cleanup of comments and
handles multi-line nslookup output (MacOSX 10.3)
2004-02-17 13:24 tonvoon
* AUTHORS: David Alden for check_snmp_procs.pl
2004-02-17 13:23 tonvoon
* contrib/check_snmp_procs.pl: Checks remote processes via SNMP
(David Alden)
2004-02-09 08:32 tonvoon
* AUTHORS: Patrick McCormick
2004-02-09 08:27 tonvoon
* plugins/check_ping.c: Fix for check_ping old-style argument
handling (Patrick McCormick - 892211)
2004-01-28 11:42 tonvoon
* plugins/check_dummy.c: Print optional text
2004-01-21 12:50 kdebisschop
* AUTHORS: credit David Croft (patch check_tcp formultibyte malloc
bug in server_expect)
2004-01-21 12:49 kdebisschop
* plugins/check_tcp.c: =fix segfault on malloc of server_expect for
multibyte chars (David Croft)
2004-01-21 12:46 kdebisschop
* AUTHORS: credit David Croft (patch check_tcp formultibyte malloc
bug in server_expect)
2004-01-21 12:45 kdebisschop
* plugins/check_tcp.c: =fix segfault on malloc of server_expect for
multibyte chars (David Croft)
2004-01-18 20:07 sghosh
* contrib/check_snmp_printer.pl: plugin to check printer status via
snmp, includes page count as perfdata; perl plugin
2003-12-24 08:51 tonvoon
* AUTHORS: Bug reporter
2003-12-24 08:51 tonvoon
* plugins/check_swap.c: Fixed help doc on use of % (854817 - Gunnar
Hellekson)
2003-12-18 09:24 tonvoon
* README: Reference to CHANGES file
2003-12-18 09:19 tonvoon
* Makefile.am: Add CHANGES file to distribution
2003-12-18 09:15 tonvoon
* CHANGES: List major changes between releases
2003-12-11 10:00 tonvoon
* AUTHORS: For patch to check_http
2003-12-11 10:00 tonvoon
* plugins/check_http.c: Relative redirects not followed correctly
(854131 - John Sivak)
2003-12-05 18:12 tonvoon
* AUTHORS: Ben Whaley for reported Solaris 8 /usr/ucb/ps problem in
configure.in
2003-12-05 18:08 tonvoon
* configure.in: Not correctly working out ps command if /usr/ucb
before /usr/bin in PATH for Solaris (reported by Ben Whaley)
2003-12-05 16:45 tonvoon
* AUTHORS: Patch to my_connect
2003-12-05 16:42 tonvoon
* plugins/: netutils.c, netutils.h: Fix clash of namespace for
my_connect with mysql (854339 - Ian Holsman)
2003-12-02 15:27 tonvoon
* plugins/check_disk.c: Default thresholds not defined for lists in
-x parameter (raised by Matt Garrett)
2003-12-01 02:47 kdebisschop
* po/: de.po, fr.po: commit changes caused by upstream code mods
2003-12-01 02:46 kdebisschop
* plugins/check_procs.c: use usage2 function
2003-12-01 02:38 kdebisschop
* nagios-plugins.spec.in: add THANKS to %doc
2003-11-28 14:18 tonvoon
* plugins/check_procs.c: Fixed listing of failed processes
2003-11-24 14:56 tonvoon
* AUTHORS: For patches
2003-11-24 14:53 tonvoon
* plugins/check_hpjd.c: Bug from code-clean (Antony Simmonds -
846311)
2003-11-21 07:53 kdebisschop
* README: update auotmake/autoconf versions
2003-11-21 07:52 kdebisschop
* doc/developer-guidelines.sgml: update developer names
2003-11-21 07:34 kdebisschop
* INSTALLING: our policy now is to use most recent versions of GNU
tool chain
2003-11-19 06:24 kdebisschop
* plugins/check_time.c: add perfdata
2003-11-19 06:00 kdebisschop
* plugins/check_smtp.c: use perfdata() to return perfoamnace data
in stanadrd format
2003-11-17 11:45 kdebisschop
* plugins/check_ups.c: bugfix - each supported option was
overwriting the previous perfdata
2003-11-17 07:19 kdebisschop
* plugins/check_ups.c: add perfdata
2003-11-17 06:37 kdebisschop
* plugins/check_pgsql.c: add perfdata
2003-11-12 06:05 kdebisschop
* plugins/check_snmp.c: clean up compiler warnings
2003-11-12 05:53 kdebisschop
* plugins/check_nt.c: clean up compiler warnings
2003-11-12 05:48 kdebisschop
* plugins/check_mrtg.c: clean up compiler warnings
2003-11-12 05:41 kdebisschop
* plugins/check_mrtgtraf.c: clean up compiler warnings
2003-11-12 05:37 kdebisschop
* plugins/check_swap.c: clean up compiler warnings
2003-11-12 05:29 kdebisschop
* plugins/check_mrtgtraf.c: add perfdata
2003-11-12 05:28 kdebisschop
* plugins/check_dig.c: remove overflow checks of strtod - HUGE_VALF
requires C99; also remove equality checks on warn/crit interval
which are no doubles
2003-11-11 10:43 tonvoon
* plugins/check_tcp.c: Added perfdata
2003-11-11 10:34 tonvoon
* plugins/check_users.c: Added perfdata
2003-11-11 10:27 tonvoon
* plugins/check_swap.c: Added perfdata
2003-11-11 10:19 tonvoon
* plugins/check_swap.c: Fixed if only absolute warn/crit set
2003-11-10 11:15 tonvoon
* plugins/utils.h: - typo fixes
2003-11-05 22:59 sghosh
* plugins-scripts/: check_ifoperstatus.pl, check_ifstatus.pl:
added plugin timeout options
2003-10-31 04:22 kdebisschop
* plugins/check_nt.c: provide an error message
2003-10-31 04:21 kdebisschop
* plugins/check_hpjd.c: line indentation
2003-10-31 04:20 kdebisschop
* plugins/check_load.c: add perfdata
2003-10-31 04:19 kdebisschop
* plugins/check_mrtg.c: add perf data fix bug where stale data
message would get overwritten
2003-10-24 14:28 tonvoon
* plugins/common.h: Ignore __attribute__ for non-GNU compilers
2003-10-24 10:37 tonvoon
* plugins/Makefile.am: Moved config.h to toplevel
2003-10-23 11:24 tonvoon
* lib/Makefile.am: Need to include intl/ for systems without
libintl.h
2003-10-21 17:16 tonvoon
* AUTHORS: Matt Garrett for bug reports
2003-10-21 16:56 tonvoon
* plugins-scripts/check_file_age.pl: - Fixed file name (Matt
Garrett)
2003-10-20 15:03 tonvoon
* configure.in, lib/fsusage.c, lib/mountlist.c: Fix for config.h at
top level. Required for intl/
2003-10-15 20:27 tonvoon
* tools/mail_error: Need to export PATH for sfsnapshot to get
correct GNU toolchain
2003-10-14 04:15 sghosh
* plugins-scripts/check_ifoperstatus.pl: snmpv3 patches
2003-10-14 04:14 sghosh
* plugins-scripts/check_ifstatus.pl: more snmpv3 patches
2003-10-14 03:40 sghosh
* plugins-scripts/check_ntp.pl: Bug 773588: added check to warn on
matching # candidates only
2003-10-14 03:15 sghosh
* plugins-scripts/check_ifstatus.pl: Added -M for maxmsgsize
(v1/v2c) Added v3 support
2003-09-30 14:54 tonvoon
* plugins/check_swap.c: Fixed logic problem if HAVE_SWAP, but not
on AIX or Solaris. Removed unnecessary ifdefs for help page.
Better indentation for ifdefs
2003-09-29 11:02 tonvoon
* lib/Makefile.am: Missed GNU files for AIX 5.1
2003-09-17 20:16 tonvoon
* AUTHORS: Added authors of obsolete contrib plugins
2003-09-17 20:07 tonvoon
* contrib/maser-oracle.pl: Obsolete from main check_oracle
2003-09-17 20:05 tonvoon
* contrib/aix/: check_crit_dsk, check_dsk, check_ping: Plugins
obsolete from main check_disk and check_ping
2003-09-17 17:33 tonvoon
* lib/strtod.c: Required if strtod not GNU compilant
2003-09-17 17:31 tonvoon
* configure.in, lib/Makefile.am, lib/error.c, lib/error.h,
lib/error.m4, lib/malloc.c, lib/realloc.c, lib/unlocked-io.h,
lib/xalloc.h, lib/xmalloc.c: Support to compile on AIX
2003-09-17 17:15 tonvoon
* plugins/check_load.c: - typo
2003-09-17 10:31 tonvoon
* configure.in, plugins/check_swap.c: Support for check_swap in AIX
(tested on 5.1)
2003-09-17 10:25 tonvoon
* tools/setup: Hide error message if docbook not available
2003-09-16 22:58 tonvoon
* doc/developer-guidelines.sgml: Added in threshold range format
and updated autoconf to 2.54 for a problem on Darwin)
2003-09-16 15:14 tonvoon
* configure.in, plugins/Makefile.am, plugins/check_procs.c: Support
for AIX ps command and cleanup of configure's ps checks
2003-09-16 13:32 tonvoon
* AUTHORS, plugins/common.h: AIX problem with enum TRUE and FALSE
(Ludse Verhoeven)
2003-09-16 12:36 kdebisschop
* tools/sfsnapshot: here-doc format was not correct
2003-09-16 06:45 kdebisschop
* plugins/check_ldap.c: milisecond timing and perfdata, fix NULL
pointer error in validate_arguments
2003-09-15 16:49 tonvoon
* AUTHORS: Contributors to the perfdata discussion
2003-09-15 16:28 tonvoon
* AUTHORS, plugins-scripts/check_mailq.pl: Added Exim support
(768445 - Eric Bollengier)
2003-09-15 15:57 tonvoon
* AUTHORS, plugins/check_nt.c: Option to verify check_nt version
(799098 - Steve Hanselman)
2003-09-15 15:30 tonvoon
* AUTHORS: Jason Burnett for check_disk_smb patch
2003-09-15 15:26 tonvoon
* plugins-scripts/check_disk_smb.pl: Optionally specify port for
smbclient to use (781227 - Jason Burnett)
2003-09-15 06:03 kdebisschop
* plugins/check_http.c: make status code extensible (thanks to
Chris Wilson <chris@netservers.co.uk>)
2003-09-12 12:53 kdebisschop
* AUTHORS: two new additions
2003-09-12 12:51 kdebisschop
* plugins/check_ping.c: *new output format reported by Patrick
Allen <p.allen@brandblue.co.uk>, also move atrribution for
Richard Brodie to thanks file
2003-09-12 12:38 kdebisschop
* plugins/check_ping.c: new output format reported by Patrick Allen
<p.allen@brandblue.co.uk>
2003-09-11 12:50 kdebisschop
* plugins/check_http.c: use prefdata function for size too
2003-09-11 09:02 kdebisschop
* plugins/check_http.c: use prefdata function
2003-09-11 09:02 kdebisschop
* configure.in, plugins/check_swap.c: last changes to configure
broke check_swap on RHLinux. Restore /proc/meminfo check and make
check_swap ifdefs safer
2003-09-04 07:43 kdebisschop
* Makefile.am: change so make-dist works in subdirs
2003-09-03 20:37 tonvoon
* configure.in: Remove df checks and ignore swap checks if no swap
commands found
2003-09-03 20:32 tonvoon
* doc/developer-guidelines.sgml: No named credits in source code
2003-09-03 11:32 tonvoon
* configure.in: Fixed substitution for Tru64's ps format
2003-09-03 07:01 kdebisschop
* plugins/check_dig.c: allow warn/crit times to be floating point
2003-09-03 07:00 kdebisschop
* configure.in, plugins/common.h: include math.h if needed for
HUGE_VAL
2003-09-02 16:04 tonvoon
* plugins/check_procs.c: Solaris requires asprintf checks for null
variables
2003-09-01 21:07 tonvoon
* Makefile.am: Report duplicates in AUTHORS file
2003-09-01 20:43 tonvoon
* doc/developer-guidelines.sgml: Add contributor's name into CVS
comments
2003-08-31 06:24 tonvoon
* .cvsignore, AUTHORS, Makefile.am, THANKS.in: Updated AUTHORS to
include all contributors listed in comments in code and CVS for
plugins and plugins-scripts. Still need to do SF
2003-08-31 06:13 tonvoon
* doc/developer-guidelines.sgml: Updated perf data standard for
warn before crit
2003-08-28 12:56 kdebisschop
* plugins/check_game.c: add perf data
2003-08-28 04:53 kdebisschop
* plugins/check_dns.c: add perf data
2003-08-28 04:53 kdebisschop
* plugins/utils.c: use single quotes per guideline, also quote when
SPC or = are found
2003-08-28 04:22 kdebisschop
* plugins/check_disk.c: add perf data
2003-08-28 04:21 kdebisschop
* plugins/utils.c: suppress quotes in perf data when not needed
(some plugins need the space to keep below line length limit
2003-08-28 04:20 kdebisschop
* plugins/utils.h: add min() macro to complement max()
2003-08-26 12:08 kdebisschop
* plugins/check_dig.c: print perfdata
2003-08-26 11:51 kdebisschop
* plugins/check_fping.c: print perfdata
2003-08-26 11:44 kdebisschop
* plugins/: utils.c, utils.h: function to make perfdata output
2003-08-23 16:07 kdebisschop
* plugins/check_http.c: - found and fixed memory allocation error
in rewritten redir() function
2003-08-23 14:59 kdebisschop
* plugins/check_http.c: - hacked interim fix to segfault on
redirect - for tesing only
2003-08-23 14:58 kdebisschop
* plugins/check_dig.c: - fix various format errors with newly added
perf data
2003-08-23 00:49 kdebisschop
* plugins/check_dig.c: - forgot to declare struct timeval tv for
hires timing
2003-08-22 07:55 kdebisschop
* plugins/check_dig.c: - add perf data for time
2003-08-22 07:22 kdebisschop
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_fping.c, check_game.c, check_hpjd.c,
check_http.c, check_ide-smart.c, check_ldap.c, check_load.c,
check_mrtg.c, check_mysql.c, check_nagios.c, check_nt.c,
check_nwstat.c, check_overcr.c, check_pgsql.c, check_ping.c,
check_procs.c, check_radius.c, check_real.c, check_smtp.c,
check_snmp.c, check_ssh.c, check_swap.c, check_tcp.c,
check_time.c, check_udp.c, check_ups.c, check_users.c, negate.c,
urlize.c: - bindtextdomain for gettext, a few other smale
cleanups here and there
2003-08-22 05:42 kdebisschop
* plugins/: check_http.c: * bugfix: snprintf of timestamp truncated
'\0'
2003-08-21 19:00 kdebisschop
* plugins/check_http.c: * Check redirections for infinte loops and
limit depth of recursion
2003-08-20 10:54 tonvoon
* plugins/check_time.c: Optionally use udp instead of tcp (Bradley
Baetz - 751646)
2003-08-20 09:31 tonvoon
* contrib/check_wins.pl: Changed netsaint to nagios in use lib
2003-08-19 12:41 kdebisschop
* plugins/check_http.c: *BUGFIX: LWS is not required betwwen
"Location:" header field name and field value
2003-08-19 12:19 kdebisschop
* plugins/check_http.c: *add missing status numbers from RFC 2616
(HTTP1.1)
2003-08-18 12:05 kdebisschop
* plugins/check_ping.c: move error scans to a new separate routine
and scan both stderr and stdio
2003-08-11 20:50 tonvoon
* doc/developer-guidelines.sgml: Performance data guidelines added
2003-08-11 20:43 tonvoon
* tools/sfsnapshot: Fixed building snapshots - cvs update ignores
new directories. Also do not need to run make
2003-08-10 13:56 kdebisschop
* plugins/utils.c: config.h is redundant (common.h includes it)
2003-08-10 13:48 kdebisschop
* plugins/: check_dns.c, check_smtp.c: perf data in integer
microseconds
2003-08-10 13:12 kdebisschop
* po/: POTFILES.in, de.po, fr.po: first pass at NLS markup done
2003-08-10 13:11 kdebisschop
* plugins-scripts/check_rpc.pl: proposed fix for LANG issue
2003-08-10 07:53 kdebisschop
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_fping.c, check_game.c, check_hpjd.c, check_http.c,
check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
check_udp.c, check_ups.c, check_users.c, negate.c, popen.c,
urlize.c: the last round of pedantic compiler warnings
2003-08-09 14:37 kdebisschop
* tools/devmode: a little shell script to make it a little easier
to produce pedantic compiler warnings
2003-08-09 14:36 kdebisschop
* plugins/: check_smtp.c, check_ssh.c, check_tcp.c, check_time.c,
check_udp.c, check_ups.c, check_users.c: more pedantic compiler
warnings
2003-08-09 07:51 undrgrid
* plugins/common.h, po/de.po, po/fr.po: Code clean-up
2003-08-09 07:01 kdebisschop
* plugins/: check_dig.c, check_http.c, check_load.c, check_mrtg.c,
check_mrtgtraf.c, check_nwstat.c, check_overcr.c, check_ping.c,
check_procs.c, check_real.c, utils.c, utils.h: more pedantic
compiler warns
2003-08-09 05:19 kdebisschop
* plugins/check_http.c: more pedantic compiler warns, change to
microsecond output for perf data, add size to perf data
2003-08-09 05:12 kdebisschop
* plugins/: utils.c, utils.h: add function for elapsed tim ein
microseconds
2003-08-09 01:56 kdebisschop
* plugins/check_http.c: more pedantic compiler warnings
2003-08-09 01:41 kdebisschop
* plugins/: check_disk.c, check_dummy.c, popen.c, utils.c, utils.h:
more pedantic compiler warnings
2003-08-08 21:31 kdebisschop
* lib/Makefile.am: include getloadvag.m4 in distrib
2003-08-08 17:49 kdebisschop
* plugins/: check_disk.c, netutils.c, netutils.h: cleanups from
pedantic complier warnings
2003-08-08 17:48 kdebisschop
* plugins/check_nt.c: change if/elseif block to case, general
streamline
2003-08-08 13:14 kdebisschop
* plugins/check_disk.c: fix a variety of compiler warnings about
qualifier discards and other pedantic stuff
2003-08-08 06:09 kdebisschop
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c,
check_snmp.c, utils.c, utils.h: fix a variety of compiler
warnings about qualifier discards and other pedantic stuff
2003-08-08 05:33 kdebisschop
* plugins/: check_by_ssh.c, check_disk.c, check_nt.c, netutils.c,
netutils.h, popen.h, utils.h: fix a variety of compiler warnings
about qualifier discards and other pedantic stuff
2003-08-08 04:51 kdebisschop
* plugins/: check_nt.c, check_smtp.c: markup for translation
2003-08-08 00:17 kdebisschop
* plugins/check_real.c: markup for translation
2003-08-07 13:36 kdebisschop
* plugins/check_procs.c: markup for translation
2003-08-07 13:09 kdebisschop
* plugins/check_load.c: reorder for consistency, restore prototypes
for print_foo, nest #ifdef to avoid pedantic traditional c warn
2003-08-07 13:00 kdebisschop
* plugins/check_snmp.c: reorder for consistency (no code changes)
2003-08-07 12:51 kdebisschop
* plugins/: check_by_ssh.c, check_disk.c, check_dns.c,
check_fping.c, check_game.c, check_http.c, check_mrtg.c,
check_mrtgtraf.c, check_nagios.c, check_nt.c, check_nwstat.c,
check_overcr.c, check_radius.c, check_real.c, check_snmp.c,
check_swap.c, check_tcp.c, check_time.c, negate.c, netutils.c,
popen.c, utils.c, utils.h: replace "terminate" with "die" for
shorter name and better readability
2003-08-07 12:49 kdebisschop
* plugins/check_ping.c: cleanup for better readability
2003-08-07 10:51 kdebisschop
* plugins/check_ping.c: markup for translation
2003-08-07 02:23 kdebisschop
* tools/sfsnapshot: make must be run before make dist to creat
language files
2003-08-06 21:53 tonvoon
* doc/developer-guidelines.sgml: Added in that Nagios plugins are
written to GNU standards
2003-08-06 15:26 kdebisschop
* lib/.cvsignore: ignore ulonglong.m4
2003-08-06 13:13 kdebisschop
* plugins/check_overcr.c: markup for translation, move send_buffer
assignment to process_args so process_tcp_request can be moved
outside the conditional, replace if/esleif with switch, replace
#defines with enum
2003-08-06 13:11 kdebisschop
* plugins/check_nwstat.c: markup for translation
2003-08-05 20:20 tonvoon
* doc/developer-guidelines.sgml: Added dev platform requirements
2003-08-05 12:53 kdebisschop
* plugins/check_ssh.c: markup for translation
2003-08-05 10:56 stanleyhopcroft
* contrib/check_mssql.sh: Version 2.0 of MS SQL server plugin
(contrib/check_mssql.sh) from T De Blende.
2003-08-04 12:38 kdebisschop
* plugins/: check_users.c, urlize.c: markup for translation
2003-08-04 09:13 kdebisschop
* plugins/: check_time.c, check_udp.c: markup for translation
2003-08-04 08:42 kdebisschop
* plugins/: check_ldap.c, check_nagios.c, check_radius.c,
check_udp.c, check_ups.c, negate.c: markup for translation
2003-08-03 15:24 kdebisschop
* plugins/: check_ldap.c, check_mrtg.c, check_mrtgtraf.c: markup
for translation
2003-08-03 07:19 kdebisschop
* plugins/check_load.c: markup for translation
2003-08-03 07:05 kdebisschop
* plugins/: check_http.c, check_ldap.c, check_tcp.c: markup for
translation
2003-08-03 07:03 kdebisschop
* plugins/: Makefile.am, check_ide-smart.c: markup for translation,
use common.h, fix problems compiling
2003-08-03 07:02 kdebisschop
* plugins/check_ldap.c: markup for translation
2003-08-03 01:01 kdebisschop
* plugins/check_http.c: markup for translation
2003-08-02 23:19 kdebisschop
* plugins/check_hpjd.c: markup for translation
2003-08-02 23:08 kdebisschop
* plugins/check_mysql.c: markup for translation
2003-08-02 23:06 kdebisschop
* plugins/: check_fping.c, check_game.c, check_mysql.c,
check_snmp.c, utils.h: markupf for translation
2003-08-02 19:22 kdebisschop
* plugins/: utils.c, utils.h: ifdef so utils.h can be header for
utils.c
2003-08-02 19:22 kdebisschop
* plugins/: check_fping.c, check_snmp.c: markup for translation
2003-08-02 17:42 kdebisschop
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_pgsql.c, check_swap.c, check_tcp.c, utils.h:
establish "UT_" namespace for usage text in #defines
2003-08-02 17:42 kdebisschop
* plugins/check_snmp.c: markup for translation
2003-08-02 06:30 kdebisschop
* plugins/check_dns.c: restore informative output that was lost in
previous bug fix
2003-08-02 00:56 kdebisschop
* plugins/check_dns.c: terminate in error_scan() so meaningfull
errors can be sent
2003-08-01 07:04 kdebisschop
* plugins/check_dummy.c: mark for transaltion
2003-08-01 07:03 kdebisschop
* plugins/check_dns.c: do not translate the strings that will be
compared to utility output - LC_ALL is set to C so those strings
should be untranslated regardless of the system settings
2003-08-01 07:01 kdebisschop
* plugins/popen.c: set LC_ALL to C in execve environemnt
2003-08-01 03:11 kdebisschop
* plugins/: Makefile.am: 'ln -f -s ...' is not reliable/portable.
Use 'rm -f ...; ln -s ...'
2003-07-31 13:06 kdebisschop
* plugins/check_dns.c: mark for translation (note problem here - it
relies on tranalation in underlying utility, which has a high
chance of failing)
2003-07-31 12:02 kdebisschop
* plugins/: utils.h, check_disk.c: mark for translation
2003-07-30 12:39 kdebisschop
* plugins/check_by_ssh.c: mark up for translation
2003-07-30 05:07 kdebisschop
* plugins/: check_dig.c, check_pgsql.c, check_swap.c, check_tcp.c,
utils.h: markup for translation
2003-07-29 12:58 kdebisschop
* plugins/: check_pgsql.c, check_swap.c, check_tcp.c: mark for
translation
2003-07-29 12:57 kdebisschop
* plugins/utils.h: some shared text for internationalized help text
2003-07-29 06:49 kdebisschop
* plugins/utils.c: clean up warnings about ill-formed comment and
string concatenation
2003-07-29 06:43 kdebisschop
* .cvsignore, ChangeLog, README, configure.in, lib/Makefile.am:
bump to gettext 0.11.5 and cleanup GNU toolchain
2003-07-29 06:38 kdebisschop
* ABOUT-NLS, INSTALL: get from GNU files instead of storing in CVS
2003-07-29 06:03 kdebisschop
* tools/setup: move autopoint to start of gnu toolchain setup use
--force-missing instead on manually copying files (manual
process was broken on RedHat, and we should expect automake to do
its job right anyway)
2003-07-29 04:06 kdebisschop
* configure.in: look for getloadavg.c in $topdir/lib, not
$srcdir/lib
2003-07-29 04:04 kdebisschop
* plugins/: check_http.c: patch attempt to reference undefined
optarg (credit Paul Farrall)
2003-07-29 04:03 kdebisschop
* configure.in: look for getloadavg.c in $topdir/lib, not
$srcdir/lib
2003-07-28 12:36 tonvoon
* configure.in: - Specify srcdir so no confusion
2003-07-28 12:34 tonvoon
* configure.in, lib/getloadavg.m4: Fixes Redhat 6.2 compiles for
getloadavg.o
2003-07-28 12:30 tonvoon
* configure.in, lib/getloadavg.m4: Readded getloadavg.m4 as using
autoconf 2.50+. This fixes redhat 6.2 compiles
2003-07-26 13:15 kdebisschop
* plugins/check_pgsql.c: mark for translation
2003-07-26 13:13 kdebisschop
* plugins/common.h: add S_ macor to mark message for both
translation and inclusion into docbook SGML
2003-07-26 06:29 kdebisschop
* po/: de.po, fr.po: updated check_tcp
2003-07-26 06:25 kdebisschop
* plugins/check_tcp.c, po/ChangeLog: internationalization
2003-07-26 06:17 kdebisschop
* po/.cvsignore, intl/.cvsignore, lib/.cvsignore: skip gettext
files
2003-07-26 05:33 kdebisschop
* lib/: Makefile.am: checkins for internationalization
2003-07-26 05:25 kdebisschop
* po/Makevars: checkins for internationalization
2003-07-26 05:17 kdebisschop
* lib/gettext.h: checkins for internationalization
2003-07-26 05:14 kdebisschop
* tools/setup: checkins for internationalization
2003-07-26 05:09 kdebisschop
* configure.in, ABOUT-NLS, po/de.po, po/fr.po: checkins for
internationalization
2003-07-26 05:06 kdebisschop
* .cvsignore, ChangeLog, Makefile.am, configure.in,
nagios-plugins.spec.in, lib/Makefile.am, plugins/Makefile.am,
plugins/check_tcp.c, plugins/common.h, plugins/utils.c,
po/LINGUAS, po/POTFILES.in, tools/setup: checkins for
internationalization
2003-07-21 13:06 kdebisschop
* plugins/common.h: add stubs to allow markup for translation
2003-07-21 12:53 kdebisschop
* configure.in, plugins/common.h: test GNU_SOURCE and include
features.h if present to clear warning about asprintf definition
2003-07-20 15:40 kdebisschop
* doc/developer-guidelines.sgml: must use '&' in attribute
values instead of '&' id tokens (attibute values) must not have
embedded spaces
2003-07-20 15:01 kdebisschop
* nagios-plugins.spec.in: was needed for build on RH9
2003-07-17 13:14 tonvoon
* plugins-scripts/check_oracle.sh: - Cleanup comments
2003-07-17 10:35 tonvoon
* doc/developer-guidelines.sgml: Guidelines updated to use
Sourceforge tracker system
2003-07-11 23:20 tonvoon
* doc/developer-guidelines.sgml: - Fixed CVS commit comments
2003-07-11 14:06 tonvoon
* doc/developer-guidelines.sgml: Added in practice of prefixing
comments in CVS commits
2003-07-11 07:30 kdebisschop
* ChangeLog: Auto Update from CVS (includes both stabel and devel -
ugh)
2003-07-11 07:12 kdebisschop
* configure.in, plugins/Makefile.am: link check_spop and
check_simap if ssl libs are compiled into check_tcp
2003-07-04 11:42 kdebisschop
* configure.in, plugins/Makefile.am: only make links for check_spop
and check_simap when SSL is built into check_tcp
2003-07-03 17:49 tonvoon
* plugins/check_procs.c: Fixed seg fault on some Sol 7/8 servers
(Patch 764745 - Alexander Matey)
2003-07-03 16:00 tonvoon
* tools/setup: Changing $() to `` to be compatible with Solaris' sh
2003-07-03 04:23 kdebisschop
* autogen.sh, tools/setup: mv GNU toolchain check into tools/setup
2003-07-03 04:19 kdebisschop
* plugins/utils.c: remove LABELLEN
2003-07-02 17:20 tonvoon
* plugins-scripts/: check_oracle.sh: Check for ORA- errors for
tablespace and cache (patch 755456 - Sven Meyer)
2003-07-02 16:57 tonvoon
* plugins-scripts/check_disk_smb.pl: Update error message from
smbclient v2.2.7 (Patch 740132 - Cove Schneider)
2003-07-02 16:52 tonvoon
* plugins-scripts/check_disk_smb.pl: Update error message from
smbclient v2.2.7 (Patch 740132 - Cove Schneider)
2003-07-02 16:01 tonvoon
* contrib/check_file_age.pl, plugins-scripts/.cvsignore,
plugins-scripts/Makefile.am, plugins-scripts/check_file_age.pl,
plugins-scripts/subst.in: Moving check_file_age into core
2003-07-02 15:39 tonvoon
* configure.in: Fixed SUPPORT message
2003-07-01 10:27 tonvoon
* plugins/check_disk.c: Fix for large filesystems > 3TB (Stuart
Webster)
2003-06-30 20:47 undrgrid
* plugins/: check_http.c, check_ldap.c, check_smtp.c: Added -4 and
-6 command line options into check_http, check_ldap and
check_smtp
2003-06-30 19:52 undrgrid
* plugins/: check_ping.c, check_ssh.c, check_tcp.c, netutils.c:
Corrections to get code to compile on systems without IPv6
support
2003-06-30 19:52 undrgrid
* plugins/Makefile.am: Added check_simap & check_spop to
check_tcp_programs If someone knows how to make this conditional
in the Makefile only if being compiled with SSL I think this is
the only way to make it better
2003-06-30 18:02 tonvoon
* plugins/check_disk.c: Fixed support for "check_disk warn crit
[path]" with thresholds at used levels
2003-06-29 20:54 undrgrid
* configure.in, plugins/check_ldap.c: Included patch for check_ldap
from Patch #753621 by Ziya Suzen
2003-06-29 20:22 undrgrid
* plugins/: check_ping.c, check_tcp.c: Changed usage output to show
-4 and -6 are mutually exclusive. You can only use one or
the other but not both. The last one used will win out.
2003-06-29 20:17 undrgrid
* plugins/: check_ping.c, netutils.c: check_ping is now coded with
-4 & -6 options to call PING or PING6 command netutils modified
to verify hosts based on address_family setting when used with
-4 or -6 options. is_inet_addr() will not be tested if -6 is
used and is_inet6_addr() will not be tested if -4 is used. Also
the is_hostname() will use the address_family value to
resolve hostnames only if IPv6 support is available otherwise
defaults to AF_INET.
2003-06-29 07:36 undrgrid
* plugins/: check_ssh.c, check_tcp.c, netutils.c, netutils.h: Added
address_family extern int variable to netutils to allow for -4 &
-6 options for explicit connection protocol Added support
for -4 & -6 options to check_ssh and check_tcp for testing
2003-06-29 03:18 tonvoon
* plugins/check_nwstat.c: Added NLM test (Phil Randal)
2003-06-29 02:52 tonvoon
* plugins/check_swap.c: Corrected reported size for PROC_MEMINFO
systems
2003-06-29 02:36 tonvoon
* tools/sfwebcron: Fixed so goes to correct web area
2003-06-29 02:07 tonvoon
* tools/sfwebcron: New tool to run on shell.sf.net to update the
dev guidelines
2003-06-29 01:58 tonvoon
* doc/makefile: Fixed makefile
2003-06-27 19:47 undrgrid
* plugins/netutils.c: Modified my_connect to include ai_socktype in
the hints to be compliant with RFC3493 as pointed out by Janos
Mohacsi.
2003-06-27 15:43 tonvoon
* configure.in, plugins/check_swap.c: Support for swap -s for
solaris. Also changes size of swap to MBs through a conversion
amount in configure. Possible breakage on other OSes
2003-06-27 13:04 tonvoon
* doc/makefile: Remove if which check - done in tools/setup instead
2003-06-27 11:30 tonvoon
* tools/setup: Fiddling as Solaris' which command is broken
2003-06-27 00:33 tonvoon
* plugins/check_disk.c: Fixed different thresholds if using exclude
lists
2003-06-25 16:43 tonvoon
* plugins/check_disk.c: Support for different thresholds for
different filesystems
2003-06-25 14:38 tonvoon
* plugins/check_disk.c: Removed -d option and just check against -p
parameter
2003-06-25 14:28 tonvoon
* plugins/check_disk.c: Report errors if path specified not found
2003-06-25 14:16 tonvoon
* plugins/check_disk.c: Problems compiling on SunOS 5.6 with gcc
2.8.1. Fixed by specifying floating variables, rather than
letting asprintf work it out
2003-06-25 13:38 tonvoon
* plugins/check_disk.c: Returns critical if fs missing. Only works
for single fs specified in -p, otherwise will return warning as
before (reported by Jim Carroll)
2003-06-21 06:49 kdebisschop
* plugins/Makefile.am: soalris 8 needs 'ln -s -f' instead of 'ln
-sf'
2003-06-21 06:48 kdebisschop
* plugins/Makefile.am: solaris 8 needs 'ln -s -f' instead of 'ln
-sf'
2003-06-21 06:31 kdebisschop
* plugins/check_http.c: fix character class for URI_PATH and
URI_PORT
2003-06-21 06:23 kdebisschop
* plugins/check_http.c: add remaining URI_PATH chars per RFC 2396
remove '-' from URI_PORT
2003-06-12 05:44 undrgrid
* command.cfg.in: Renamed duplicate check_snmp command definitions
to be unique
2003-06-12 05:14 undrgrid
* command.cfg.in, configure.in: Made the two check_ifoperstatus
commands unique to remove conflicts
2003-06-11 11:41 kdebisschop
* plugins/check_http.c: fix URI_PATH to allow ?&#: (more still
should be allowed) fix class to be POSIX compliant
2003-06-11 11:39 kdebisschop
* plugins/check_http.c: character classes were wrong for URI_PATH
etc: 1) must include ?&#; for PATH 2) POSIX states "If a '-' is
in the scanlist and is not the first character, nor the second
where the first character is a '^' , nor the last character, the
behavior is implementation-defined"
2003-06-10 06:04 kdebisschop
* contrib/urlize.pl: add comment about shell quote removal to
address
https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
2003-06-10 06:02 kdebisschop
* plugins/urlize.c: add note about shell quote removal to address
https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
2003-06-10 05:55 kdebisschop
* contrib/urlize.pl: add comment relating to
https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
2003-06-10 05:53 kdebisschop
* plugins/urlize.c: add note about effect of shell quote handling
to address
https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
2003-06-08 23:39 tonvoon
* configure.in: Fixed quoting on SWAP_FORMAT
2003-06-08 23:22 tonvoon
* configure.in: Support for OpenBSD 3.2 & 3.3 ps (Julien Touche)
2003-06-07 01:46 sghosh
* plugins/check_real.c: \r\n patch from Mathias
2003-06-07 01:36 sghosh
* plugins/check_real.c: \r\n patch from Mathias
2003-06-05 00:09 tonvoon
* configure.in: Display ps command used
2003-06-04 23:56 tonvoon
* configure.in: Stupid bug - what happens when you don't bother
testing
2003-06-04 23:37 tonvoon
* configure.in: Support for OpenBSD 3.2 & 3.3 ps (Julien Touche)
2003-06-04 23:17 tonvoon
* plugins/check_disk.c: Argument to asprintf in wrong order
2003-06-04 22:17 tonvoon
* pkg/solaris/solpkg: Remove /usr as well. Maybe this is best done
by changing BASEDIR to configure's prefix?
2003-06-02 15:46 kdebisschop
* plugins/check_tcp.c: finish recv() loop when stream GT or EQ
maxbytes (was GT)
2003-06-02 15:43 kdebisschop
* plugins/check_tcp.c: finish recv() loop when stream GT or EQ
maxbytes (was GT)
2003-06-01 06:38 kdebisschop
* plugins/check_tcp.c: typos in doco
2003-06-01 06:38 kdebisschop
* plugins/check_tcp.c: allow user to limit number of bytes fetched
fix some doco (wait is now delay, server_quit was not shown)
2003-06-01 06:19 kdebisschop
* plugins/check_tcp.c: allow user to limit the number of bytes to
be fetched
2003-05-31 15:39 kdebisschop
* plugins/check_dns.c: first revised patch failed to trap the
"break" in while()
2003-05-31 15:39 kdebisschop
* plugins/check_dns.c: first revised patch failed to trap the
"break" in while()
2003-05-31 15:22 kdebisschop
* plugins/check_dns.c: typo in args to terminate
2003-05-31 15:04 kdebisschop
* plugins/check_dns.c: trap null or empty returns from nslookup
2003-05-27 14:10 stanleyhopcroft
* contrib/check_sap.sh: check_sap.sh plugin to check SAP /R3
servers from Karel Salavec and Tom De Blende.
2003-05-26 11:09 stanleyhopcroft
* contrib/: check_axis.sh, check_mssql.sh: Revisions to Tom De
Blende contributed plugins: check_axis.sh and check_mssql.sh
2003-05-18 00:07 tonvoon
* plugins/t/: check_ftp.t: Fixed test (Mathew Ericson - 738609)
2003-05-17 18:58 tonvoon
* plugins/t/: check_load.t: Fixed tests (Mathew Ericson - 738607)
2003-05-17 18:50 tonvoon
* plugins/t/check_procs.t: Fixed test commands (Mathew Ericson -
738605)
2003-05-17 18:46 tonvoon
* plugins/t/check_procs.t: Fixed test commands (Mathew Ericson -
738605)
2003-05-17 18:38 tonvoon
* plugins/t/: check_http.t: Fixed tests (Mathew Ericson - 738608)
2003-05-17 18:36 tonvoon
* plugins/t/check_tcp.t: Fixed tests (Mathew Ericson - 738604) CV:
----------------------------------------------------------------------
2003-05-17 18:33 tonvoon
* plugins/t/check_tcp.t: Fixed tests (Mathew Ericson - 738604)
2003-05-16 18:32 sghosh
* plugins-scripts/: check_ntp.pl: bug fix
2003-05-15 00:17 tonvoon
* plugins/negate.c: Added examples
2003-05-14 22:59 tonvoon
* plugins-scripts/check_mailq.pl: Added postfix support (Thomas
Nilsen - 735218)
2003-05-14 22:51 tonvoon
* plugins/check_nwstat.c: Added DSVER and UPTIME checks (Phil
Randal - 737617)
2003-05-14 22:49 tonvoon
* pkg/solaris/solpkg: Typo
2003-05-14 22:44 tonvoon
* doc/.cvsignore: Ignore developer-guidelines.html as generated
from docbook
2003-05-14 22:39 tonvoon
* Makefile.am, pkg/solaris/pkginfo.in, pkg/solaris/solpkg: Remove
dependency on gnu make
2003-05-14 00:20 tonvoon
* doc/developer-guidelines.sgml: Updated docs to include comments,
contrib->main, getopts_long and verbose output levels
2003-05-13 23:23 tonvoon
* tools/sfsnapshot: Calls tools/setup and creates a README for the
snapshot directory
2003-05-13 23:03 tonvoon
* doc/developer-guidelines.html, doc/makefile, tools/setup: The
developer-guidelines.html file is now generated from the sgml
file by docbook2html at tools/setup time
2003-05-13 13:14 stanleyhopcroft
* contrib/tarballs/hopcroft-plugins.tar.gz: Removed
contrib/tarballs/hopcroft-plugins.tar.gz. This is archaic,
anachronistic, unmaintained and humblingly embarrassing.
2003-05-13 13:13 stanleyhopcroft
* contrib/check_mssql.sh: check_mssql.sh. A new plugin from Mr T DE
BLENDE to check MS SQLServer databases.
2003-05-09 04:22 kdebisschop
* plugins/check_http.c: fix error when server closes connection
immediately
2003-05-09 04:22 kdebisschop
* plugins/check_http.c: fix error when server closes connection
immediately
2003-05-09 03:59 kdebisschop
* plugins/: check_snmp.c: cause snmpget try try for 1 second less
than the timeout (allowing plugin to force close if needed)
2003-05-07 19:01 undrgrid
* plugins/check_ping.c: Modified check_ping to handle IPv6 as well
as IPv4 ICMP checks using the PING6_COMMAND determined during the
configure script execution. As USE_IPV6 may be defined and
PING6_COMMAND is not defined if there is not IPv6 TCP stack
available when configure is run I condition it off PING6_COMMAND
existing to remove build errors for being undefined.
2003-04-25 10:05 sghosh
* plugins-scripts/: check_ntp.pl: corrected output units
2003-04-23 05:57 kdebisschop
* plugins/: check_http.c, utils.c: update to RFC1123 hostname specs
2003-04-17 06:56 kdebisschop
* nagios-plugins.spec.in: add check_nt, drop check_vsz
2003-04-17 06:55 kdebisschop
* plugins/: check_dig.c, check_tcp.c, check_users.c: code cleanup
to clear strict compiler warnings
2003-04-17 06:36 kdebisschop
* plugins/: check_dig.c, check_tcp.c, netutils.c: code cleanup to
clear strict compiler warnings
2003-04-16 16:31 sghosh
* plugins/check_real.c: old behavior - no stream check unless -u
2003-04-16 16:06 sghosh
* plugins/check_real.c: reset to old behavior of not checking
stream by default
2003-04-13 05:49 sghosh
* plugins/check_hpjd.c: reduce compiler warning between gcc3 and
gcc2.96
2003-04-13 05:28 sghosh
* configure.in: update for check_mailq - qmail support
2003-04-13 05:25 sghosh
* plugins-scripts/utils.pm.in: update for check_mailq - qmail
support
2003-04-13 05:23 sghosh
* plugins-scripts/check_mailq.pl: Added sendmail multi-queue
support (Canau), merged qmail support (Schmid)
2003-04-12 01:02 tonvoon
* plugins/check_procs.c: Match -a STRING anywhere in ps args
(Laurent Vaslin - 719783)
2003-04-12 00:47 tonvoon
* plugins/check_procs.c: Match -a STRING anywhere in ps args
(Laurent Vaslin - 719783)
2003-04-11 23:36 sghosh
* plugins-scripts/check_ifstatus.pl: added feature -u (list of
unused ifIndex)
2003-04-11 23:09 sghosh
* plugins-scripts/check_ifstatus.pl: bug 691412, added feature -x
(list of excluded ifTypes)
2003-04-11 19:44 sghosh
* plugins/check_hpjd.c: patch 698384 - order of args to snmpget +
print a bit of stderr
2003-04-11 17:27 sghosh
* plugins/check_hpjd.c: patch 698384 - order of args to snmpget
2003-04-09 04:46 kdebisschop
* plugins/: check_http.c, check_hpjd.c, check_nt.c: cleanup to
suppress various strict compiler warnings
2003-04-09 04:44 kdebisschop
* plugins/common.h: rewrite #elif to be compatible with traditional
C
2003-04-09 03:09 kdebisschop
* plugins/Makefile.am: check_game needs popen.c now
2003-04-08 21:49 tonvoon
* plugins/: check_nt.c, check_hpjd.c: Changed // to /* */ comments
as some compilers do not like them
2003-04-08 21:38 tonvoon
* command.cfg.in: Updated command for new check_procs
2003-04-08 21:37 tonvoon
* plugins/: check_hpjd.c, check_nt.c: Changed // to /* */ comments
as some compilers do not like them
2003-04-08 01:00 stanleyhopcroft
* contrib/check_axis.sh: check_axis.sh (Axis 5xx print servers)
from Tom De Blende
2003-04-08 00:40 tonvoon
* plugins/check_procs.c: Fixed zombie processes
2003-04-08 00:16 tonvoon
* configure.in: Missed some PS_FORMAT strings
2003-04-07 23:53 tonvoon
* configure.in, plugins/Makefile.am, plugins/check_nagios.c,
plugins/check_procs.c, plugins/check_vsz.c: Souped up check_procs
with different metrics
2003-04-07 22:23 tonvoon
* plugins/check_snmp.c: Removed unnecessary array for AIX compile
(reported by Alwyn Cherrington)
2003-04-07 22:21 tonvoon
* plugins/check_snmp.c: Removed unnecessary regex array
2003-04-07 12:39 kdebisschop
* plugins/check_http.c: ste timeout one second greater than
critical time
2003-04-07 12:38 kdebisschop
* plugins/check_game.c: had been grandfathered ibto core, finally
use normal getopts, add options for player, max-player array
positions
2003-04-03 22:21 tonvoon
* plugins-scripts/check_oracle.sh: Cleaned up cache output
2003-04-01 23:24 tonvoon
* plugins-scripts/check_oracle.sh: Fixed sqlplus calls and
rearranged parameters for --tablespace & --cache
2003-04-01 05:00 kdebisschop
* configure.in: remove PATH_PROG call for autoconf/automake
components
2003-03-31 13:49 kdebisschop
* plugins/check_disk.c: checkpoint supresses iso9660 adds option
for checking only local adds choice of scale factor
2003-03-27 22:53 tonvoon
* plugins/check_nwstat.c: Extra Netware checks (Patch 710247 -
Dietmar Ruzicka)
2003-03-26 05:37 tonvoon
* configure.in: ipv6 check requires unistd.h for Darwin
2003-03-26 03:57 tonvoon
* configure.in, plugins/check_procs.c: Removal of ps_raw and
ps_vars
2003-03-26 03:39 tonvoon
* plugins/check_nagios.c: Uses same ps command as check_procs
2003-03-25 06:33 kdebisschop
* .cvsignore: subst is no longer used
2003-03-24 19:05 undrgrid
* .cvsignore, Makefile.am: Better stripping of prefix for Solaris
package install needs to remove /usr/local as package
installs there by default
2003-03-24 17:44 undrgrid
* Makefile.am, pkg/solaris/.cvsignore, pkg/solaris/pkginfo.in,
plugins/check_disk.c: Minor changes to build for Solaris packages
2003-03-24 16:23 tonvoon
* plugins/check_procs.c: Use max_state
2003-03-24 02:57 tonvoon
* tools/: mail_error, sfsnapshot: PATH set in correct place and
extra comments
2003-03-24 02:44 tonvoon
* tools/: mail_error, sfsnapshot: Bug fixes
2003-03-24 02:21 tonvoon
* tools/mail_error: Sends email if non-zero return code from
command
2003-03-24 02:19 tonvoon
* tools/sfsnapshot: Error code depending on number of files
generated
2003-03-24 01:18 tonvoon
* lib/ls-mntd-fs.m4: Using coreutils 4.5.11 version to fix Darwin
problem
2003-03-24 00:40 tonvoon
* REQUIREMENTS: Add NSClient requirement for check_nt
2003-03-24 00:39 tonvoon
* plugins/check_nt.c: Reference to web site to get NSClient
2003-03-24 00:26 tonvoon
* plugins/check_nt.c: Reference to web site to get NSClient
2003-03-23 07:01 undrgrid
* Makefile.am, autogen.sh, configure.in, lib/Makefile.am,
pkg/solaris/pkginfo.in, pkg/solaris/solpkg: Solaris package build
system
2003-03-23 06:20 kdebisschop
* plugins/check_disk.c: can once again exclude indiviual
path/partitions
2003-03-23 06:11 kdebisschop
* plugins/check_disk.c: add -X to exclude FS type, now works with
more than one path/dev specified
2003-03-22 13:23 kdebisschop
* plugins/utils.c: declaration must precede printf
2003-03-21 20:21 tonvoon
* configure.in: Stupid bug!
2003-03-21 14:08 kdebisschop
* plugins/check_disk.c: checkpoint, allows selecting devices and
paths now
2003-03-21 14:04 kdebisschop
* configure.in: instructions for posting plugin version number
2003-03-19 23:44 kdebisschop
* plugins/check_by_ssh.c: allow to specify -1 and -2 for protocol
version
2003-03-19 22:42 tonvoon
* configure.in: Tru64 df support (Paul Clayton)
2003-03-19 13:01 kdebisschop
* plugins/: utils.c, utils.h: make state_text a function
2003-03-19 12:59 kdebisschop
* lib/mountlist.c, plugins/check_disk.c: check_disk working with
mountlist.c
2003-03-19 02:28 kdebisschop
* Makefile.am, configure.in: subst.* was replaced by dist-hook
2003-03-19 02:27 kdebisschop
* subst.in, subst.sh: these were replaced by dist-hook
2003-03-18 15:18 kdebisschop
* configure.in: running the AFS macro causes newer AC/AM to barf
2003-03-18 09:02 kdebisschop
* configure.in: afs checking
2003-03-18 08:50 kdebisschop
* lib/: ls-mntd-fs.m4, afs.m4: use AC_DEFINE_UNQOUTED
2003-03-18 08:47 kdebisschop
* lib/ls-mntd-fs.m4: stop warning on autoheader 2.13
2003-03-18 07:57 kdebisschop
* plugins/: netutils.c, netutils.h: common.h was doubly included
2003-03-18 07:57 kdebisschop
* plugins/common.h: use enum instead of define, remove some cruft
from old snprintf implementation
2003-03-18 07:48 kdebisschop
* configure.in, lib/Makefile.am, plugins/check_disk.c: use GNU
fileutils for check_disk
2003-03-18 07:47 kdebisschop
* lib/: afs.m4, fstypename.m4, fsusage.c, fsusage.h, fsusage.m4,
ls-mntd-fs.m4, mountlist.c, mountlist.h: from GNU fileutils for
check_disk
2003-03-17 22:22 tonvoon
* plugins-scripts/: check_oracle.sh: Allow default Oracle home from
oratab (reported by Walbert Oberngruber)
2003-03-16 23:54 undrgrid
* configure.in: Modified to automatically enable getaddrinfo
emulation if lwres is not used and getaddrinfo is not found in
the system.
2003-03-16 23:28 undrgrid
* plugins/: check_tcp.c, netutils.c, netutils.h: Applied patch
#660973 for tcp refusals
2003-03-15 01:28 undrgrid
* configure.in: Left over debug define
2003-03-15 01:25 undrgrid
* configure.in, lib/Makefile.am, lib/getaddrinfo.c,
lib/getaddrinfo.h, lib/gethostbyname.c, lib/gethostbyname.h,
plugins/Makefile.am, plugins/getaddrinfo.c,
plugins/getaddrinfo.h, plugins/gethostbyname.c,
plugins/gethostbyname.h, plugins/netutils.c, plugins/netutils.h,
plugins/utils.c, plugins/utils.h: Spent the day working on
backwards compatability using getaddrinfo() Moved getaddrinfo.?
and gethostbyname.? from lib/ to plugins/ due to problems with
compiling into the libnagiosplug.a as it required linking against
socket libraries which are unneeded except for network based
plugins. This code should hopefully happily work for all systems
and has been tested prior to commit on Debian GNU/Linux, SPARC
Solaris 7 and SPARC Solaris 9.
2003-03-14 13:28 kdebisschop
* plugins-scripts/check_ntp.pl: add timeout, fix taint chacking
diom
2003-03-13 22:20 undrgrid
* .cvsignore, configure.in, lib/Makefile.am: Working out issues
with getaddrinfo emulation build environment
2003-03-13 21:14 tonvoon
* plugins/: check_dns.c, check_http.c, check_tcp.c: Strip leading
spaces in perf data
2003-03-13 21:10 tonvoon
* plugins/check_smtp.c: Perf data without leading spaces and fix
ANSI C complaint about \n
2003-03-13 20:33 tonvoon
* plugins/check_tcp.c: Fix compiler warnings re progname
2003-03-13 06:52 undrgrid
* depcomp: Removed auto-tools script that automake adds
2003-03-13 06:51 undrgrid
* .cvsignore, configure.in, install-sh, missing, mkinstalldirs,
plugins/.cvsignore, plugins/Makefile.am, plugins/common.h,
plugins/common.h.in, plugins/netutils.h, plugins/netutils.h.in,
plugins/popen.h, plugins/popen.h.in, plugins/utils.c,
plugins/utils.h, plugins/utils.h.in, plugins/version.h.in:
Updated cvs ignore files to reflect changes Moved header files
from being ran through configure to standard Removed auto-tools
scripts that get added by automake
2003-03-13 06:00 kdebisschop
* plugins/negate.c: negate must be POSIXly correct in handling
options, else wrapped options get passed to it
2003-03-13 05:59 undrgrid
* configure.in: Removed --with-ipv6 configure option so it
determines IPv6 availablity completely on it's own per suggestion
by Karl
2003-03-13 05:29 kdebisschop
* plugins/negate.c: negate must be POSIXly correct in handling
options, else wrapped options get passed to it
2003-03-12 22:13 undrgrid
* plugins/check_tcp.c: doco standarization
2003-03-12 19:50 undrgrid
* configure.in, plugins-scripts/subst.in: Just a lil namespace
clean-up
2003-03-12 17:42 undrgrid
* configure.in: Minor fix to --with-ipv6 behavior
2003-03-12 17:11 undrgrid
* autogen.sh, configure.in, plugins/utils.c, plugins/utils.h.in:
Added autogen.sh script that rebuilds using autotools and runs
configure Modified configure.in to include some debug build
option info at the end of the scripts execution. Can be removed
by release time. Modified configure.in to include a --with-ipv6
option Default build is without IPv6 support now to enable you
need to use the --with-ipv6 command line option to configure.
Modified plugins/utils.* to use USE_IPV6
2003-03-12 07:05 kdebisschop
* plugins/check_disk.c: doco standarization
2003-03-12 06:44 kdebisschop
* plugins/check_disk.c: errors for statfs
2003-03-12 06:41 kdebisschop
* plugins/check_smtp.c: comment/doco cleanup for embeeded doc work,
control STMP command via options instead of defines
2003-03-12 06:38 kdebisschop
* configure.in: version increase, statfs work
2003-03-12 02:47 undrgrid
* plugins/.cvsignore: Add some more extra plugins
2003-03-12 02:29 undrgrid
* plugins/check_dig.c: Code clean-up
2003-03-12 02:29 undrgrid
* plugins/check_http.c: Clean up of output from plugin
2003-03-12 02:24 undrgrid
* plugins/: check_udp.c, check_ldap.c, check_http.c: Code clean-up
2003-03-12 02:23 undrgrid
* plugins/check_tcp.c: Code cleanup
2003-03-12 00:45 tonvoon
* plugins/check_dns.c: Removed is_host checks to speed up code.
Fixed timings so no spaces
2003-03-12 00:08 tonvoon
* plugins/check_dns.c: Timings in milliseconds and nicer output
2003-03-11 22:51 tonvoon
* plugins-scripts/.cvsignore: Add script ignores
2003-03-11 22:36 tonvoon
* plugins/negate.c: Remove getopt_long checks
2003-03-11 22:34 tonvoon
* plugins/negate.c: Fixed reading too many argv parameters and
changed to asprintf
2003-03-11 22:29 tonvoon
* plugins/negate.c: Fixed reading too many argv parameters and
changed to asprintf
2003-03-11 22:22 tonvoon
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_fping.c, check_hpjd.c, check_http.c, check_ide-smart.c,
check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
check_mysql.c, check_nagios.c, check_nt.c, check_nwstat.c,
check_overcr.c, check_pgsql.c, check_ping.c, check_procs.c,
check_radius.c, check_real.c, check_smtp.c, check_snmp.c,
check_ssh.c, check_swap.c, check_tcp.c, check_time.c,
check_udp.c, check_ups.c, check_users.c, check_vsz.c: Remove
getopt_long checks
2003-03-11 22:09 undrgrid
* configure.in: Fixed some ping6 variables
2003-03-11 18:32 undrgrid
* configure.in: Minor change to Karl's statfs check Inclusion of
ICMPv6 ping tests to define PING6_COMMAND Minor fix to ps syntax
checking to fix bug I introduced last nite
2003-03-11 07:04 undrgrid
* Makefile.am, configure.in: Removed acconfig.h from EXTRA_DIST
Fixed problem with test in SWAP_FORMAT and SWAP_COMMAND
2003-03-11 06:44 kdebisschop
* configure.in, plugins/check_disk.c: use statfs for check_disk
(still needs fs scan)
2003-03-11 06:03 undrgrid
* acconfig.h, configure.in: Finishing clean-up of configure.in
Removing acconfig.h as it's no longer needed
2003-03-10 23:58 undrgrid
* acconfig.h, configure.in: Cleaned up configure for PS and PING to
produce cleaner config.h
2003-03-09 18:13 undrgrid
* plugins/common.h.in: Make sure sys/socket.h is explicitly
included if HAVE_SYS_SOCKET_H is defined
2003-03-09 10:39 tonvoon
* plugins/check_disk.c: Implement error-only option for check_disk
(Ian Duggan)
2003-03-09 10:36 tonvoon
* plugins/check_disk.c: Implement error-only option for check_disk
(Ian Duggan)
2003-03-08 12:08 tonvoon
* plugins/check_disk.c: Fix AIX /proc filesystem (Ian Duggan)
2003-03-08 12:05 tonvoon
* plugins/check_disk.c: Fix AIX /proc filesystem (Ian Duggan)
2003-03-08 11:44 tonvoon
* configure.in: snprintf checks in configure.in like samba
2003-03-08 02:27 undrgrid
* plugins/check_dns.c: Modified code to call is_addr() rather than
is_dotted_quad() with the new AF indepdent function routines
2003-03-08 02:26 undrgrid
* plugins/: netutils.c, netutils.h.in, utils.c, utils.h.in: AF
indepedent routines introduced. Modifed process_request() &
my_connect() parameters to make 'proto' type 'int' rather
than 'char *' and use IPPROTO_* POSIX values. Removed
is_dotted_quad() & my_inet_aton() functions Added is_addr(),
is_inet_addr(), is_inet6_addr() and resolve_host_or_addr()
functions to check whether it is a valid IP address Modified
is_host() to call is_addr() and is_hostname()
2003-03-08 02:02 tonvoon
* tools/sfsnapshot: Need to remove configure.in
2003-03-08 01:59 tonvoon
* lib/Makefile.am, lib/snprintf.c, plugins/Makefile.am,
plugins/snprintf.c: Move snprintf into lib
2003-03-08 01:48 tonvoon
* tools/sfsnapshot: Have to run through whole automake procedure as
datestamp in RELEASE variable
2003-03-08 01:13 tonvoon
* tools/sfsnapshot: Added automake parameters for config.sub and
config.guess
2003-03-08 00:57 tonvoon
* tools/sfsnapshot: Fixed production OUT variable
2003-03-08 00:55 tonvoon
* tools/sfsnapshot: Adds MD5SUM file, creates multiple branch
snapshots and doesn't rerun configure/automake/autoconf
unnecessarily
2003-03-08 00:21 tonvoon
* Makefile.am: Use Makefile's variables (to support a shortcut in
sfsnapshot)
2003-03-07 22:11 undrgrid
* configure.in, lib/Makefile.am, lib/getaddrinfo.c,
lib/getaddrinfo.h, lib/gethostbyname.c, lib/gethostbyname.h,
plugins/check_pgsql.c, plugins/common.h.in, plugins/netutils.c,
plugins/netutils.h.in, tools/setup: Added getaddrinfo.[ch] &
gethostbyname.[ch] to provide RFC2553 functions if missing in
system libs and lwres not present Moved all references to netdb.h
and sys/socket.h into common.h.in Modified automake call in
tools/setup to include adding missing files so config.sub
and config.guess will be available
2003-03-07 20:16 tonvoon
* plugins/check_nt.c: Make output for CPU load nicer
2003-03-07 07:45 kdebisschop
* plugins/check_smtp.c: millisecond timing and perf data
2003-03-07 07:15 kdebisschop
* plugins/: check_smtp.c: whole timer loop was on the wrong side of
connection close code
2003-03-07 06:43 kdebisschop
* plugins/check_udp.c: fix for -H invocation of hostname
2003-03-07 06:40 kdebisschop
* plugins/check_udp.c: fix for -H invocation of hostname
2003-03-06 06:40 undrgrid
* acinclude.m4, configure.in: Adds --with-lwres and
--enable-emulate-getaddrinfo but are not used in any of the code
at this time. Has a check for IPv6 support but only runs if using
the emulate-getaddrinfo routines, this needs to be modified. !!!
I need input from results of this run on various platforms to see
what results are seen in plugins/config.h so please help test !!!
2003-03-05 07:27 kdebisschop
* plugins-scripts/check_ntp.pl: add "m" to regex for minutes
2003-03-05 05:59 sghosh
* plugins/check_smtp.c: remove race condition for a long HELO
2003-03-05 04:38 sghosh
* command.cfg.in: corrected snmp commands
2003-03-05 04:37 sghosh
* plugins-scripts/check_ntp.pl: regex fix per Marc Poulin
2003-03-05 00:17 tonvoon
* plugins/check_http.c: check_http min size option (680467 - Dave
Viner)
2003-03-04 23:56 tonvoon
* plugins/check_nt.c: Make output message for CPU Load a bit nicer
2003-03-04 23:35 tonvoon
* tools/sfsnapshot: To create nagiosplug daily snapshots on SF
2003-03-03 03:49 kdebisschop
* plugins/check_ping.c: accept comma-delimted list of hosts for
checking if a multihomed host is alive
2003-03-02 06:01 kdebisschop
* plugins/check_ping.c: add logic to check multiple servers
2003-03-02 04:59 kdebisschop
* ChangeLog: update from CVS
2003-03-02 04:58 kdebisschop
* configure.in, nagios-plugins.spec.in: adjustments to remove beta
tagging
2003-03-02 04:32 kdebisschop
* ChangeLog: update from CVS
2003-03-01 05:09 kdebisschop
* nagios-plugins.spec.in: we were missing some docs in the RPM
2003-02-23 17:11 sghosh
* REQUIREMENTS: Novell requirements
2003-02-23 17:10 sghosh
* contrib/check_bgpstate.pl: removed community string in CRIT
message
2003-02-22 19:06 tonvoon
* configure.in: Solaris and Unixware labels round the wrong way for
swap command
2003-02-22 13:01 kdebisschop
* Makefile.am: provide target for nagios-plugins.spec
2003-02-22 07:27 kdebisschop
* Makefile.am: add CODING FAQ LEGAL to distribution tarball
2003-02-21 21:59 tonvoon
* plugins/check_http.c: Fixed coredump with unallocated string
2003-02-21 21:46 tonvoon
* plugins/check_dns.c: Strip leading spaces on dns return value
(689563 - Simon L Nielsen)
2003-02-20 03:16 kdebisschop
* plugins-scripts/check_disk_smb.pl: option regexs need to include
^ and $
2003-02-19 22:56 tonvoon
* lib/Makefile.am: Removing getloadavg.m4 from dist
2003-02-19 08:36 kdebisschop
* INSTALL, configure.in, lib/getloadavg.m4, tools/setup: remove
getloadavg.m4
2003-02-19 00:45 tonvoon
* Makefile.am, configure.in, getloadavg.m4, lib/Makefile.am,
lib/getloadavg.c, lib/getloadavg.m4, plugins/Makefile.am,
plugins/getloadavg.c: Move getloadavg to lib directory. Must run
"aclocal -I lib"
2003-02-18 23:00 kdebisschop
* plugins/check_pgsql.c: spurious backslash escape
2003-02-18 22:56 kdebisschop
* configure.in: set tag for beta3, fix pgsql detection
2003-02-18 22:24 kdebisschop
* plugins/check_udp.c: never exited getopt loop
2003-02-18 22:20 kdebisschop
* plugins/check_tcp.c: failed if header was more than 1023 bytes
2003-02-18 22:10 tonvoon
* plugins/check_load.c: Fixed the output messages (Bug 688729 -
Jayjay)
2003-02-18 21:58 tonvoon
* Makefile.am: Add SUPPORT file to distribution
2003-02-18 21:56 tonvoon
* plugins/check_http.c: Fixed compiler warning and increased the
SSL random key for a Solaris PRNG problem
2003-02-18 05:38 kdebisschop
* configure.in: remainder of ps fix for UnixWare, and move [] in
if/elif to indicate m4 quoting instead of test invocation
2003-02-18 04:05 sghosh
* contrib/check_appletalk.pl: Appletalk ping plugin
2003-02-18 04:04 sghosh
* plugins/check_snmp.c: OID type prefix patch [Patches-679403]
2003-02-18 03:46 sghosh
* plugins/check_swap.c: support for Large swap sizes
2003-02-18 03:17 sghosh
* configure.in: regex fix to catch *BSD swapinfo and not HP-UX
error and memory/file swap in addition to device for HP-UX
2003-02-17 22:01 kdebisschop
* configure.in: typo in testing uname output
2003-02-17 21:57 kdebisschop
* configure.in: ping and swap for unixware
2003-02-17 21:04 kdebisschop
* configure.in: library search dirs are part of LDFLAGS
2003-02-17 19:11 sghosh
* REQUIREMENTS: location updates
2003-02-16 08:41 tonvoon
* plugins/Makefile.am: Fixed dependencies for check_nt
2003-02-16 08:25 tonvoon
* plugins/check_nt.c: Coredump if no variable set (reported by Marc
C. Poulin)
2003-02-16 02:46 egalstad
* contrib/check_dhcp.c: Interface patch byor Clemens Resen
2003-02-16 02:18 sghosh
* plugins-scripts/check_ntp.pl: all alphanumeric accepted for refid
on ntpq
2003-02-12 22:32 tonvoon
* plugins/.cvsignore: Added extra plugins
2003-02-12 22:30 tonvoon
* lib/.cvsignore: Add ignore files
2003-02-12 22:29 tonvoon
* plugins/negate.c: Remove unnecessary \ and fix coredump with no
parameters specified
2003-02-12 22:27 tonvoon
* plugins/check_http.c: Remove unnecessary \ - complaints from
Tru64's cc compiler
2003-02-12 22:21 tonvoon
* configure.in: Inadequate quoting for PS_FORMAT & removal of grep
"*** for Tru64
2003-02-12 04:36 sghosh
* command.cfg.in: forced ntpq jitter check
2003-02-12 04:32 sghosh
* plugins-scripts/check_ifoperstatus.pl: added timeout alarm
2003-02-12 04:30 sghosh
* plugins-scripts/check_ntp.pl: fixed regex for stratum1 peer,
added logic for failed ntpq call(e.g. sntp host)
2003-02-11 00:47 tonvoon
* plugins/check_mysql.c: Patch by Dave Viner for seg fault on RH
7.3 (655903)
2003-02-10 23:59 tonvoon
* configure.in: Update with references to REQUIREMENTS
2003-02-10 23:58 tonvoon
* Requirements: Remove file, superceded by REQUIREMENTS
2003-02-10 23:34 tonvoon
* plugins/: getopt.c, getopt.h, getopt1.c: Removing getopt files -
now in new lib directory
2003-02-10 23:32 tonvoon
* lib/: Makefile.am, getopt.c, getopt.h, getopt1.c: New directory
for common library files
2003-02-10 23:28 tonvoon
* plugins/common.h.in: Added in a define for HAVE_GETOPT_H for
backwards compatibility
2003-02-10 23:27 tonvoon
* plugins/Makefile.am: Remove unnecessary getopt references and
link in lib directory
2003-02-10 23:26 tonvoon
* configure.in: Removing checks for getopt.h - now always
available. Also support lib dir
2003-02-10 23:24 tonvoon
* Makefile.am: Adding lib directory for getopts change
2003-02-10 23:08 tonvoon
* configure.in: Fixed Tru64 ps command (Bug 669585 - Paula Arnold)
2003-02-10 18:36 undrgrid
* plugins/check_ssh.c: Added argc checks before attempting to
access argv[]
Corrected return codes and output
2003-02-10 14:18 undrgrid
* plugins/check_ssh.c: Revised code to use resolving and connection
code in utils.c and netutils.c rather than its own functions.
Corrected code to properly handle input of server hostname and
port on commandline without option flags.
2003-02-10 04:49 kdebisschop
* contrib/check_fping_in.c: this plugin is in core as check_fping
2003-02-09 18:59 undrgrid
* tools/setup: Reordered program calls so autoheader was called
before automake thus getting rid of errors for header files not
being present when automake was called. Also puts it inline with
documentation in INSTALL & INSTALLING
2003-02-09 14:20 sghosh
* contrib/: check_adptraid.sh, check_compaq_insight.pl,
check_file_age.pl: new plugins
2003-02-09 14:18 sghosh
* contrib/: README.TXT, readme.txt: file rename
2003-02-09 14:16 sghosh
* contrib/: check_remote_nagios_status.pl, check_wins.pl,
sched_downtime.pl: more contribs
2003-02-09 14:03 sghosh
* contrib/tarballs/: fetchlog-0.92.tar.gz, fetchlog-0.94.tar.gz:
new version
2003-02-09 12:54 kdebisschop
* CODING, README: spell check
2003-02-09 12:36 kdebisschop
* FAQ: spell check
2003-02-09 12:17 sghosh
* SUPPORT: ispell
2003-02-08 06:00 kdebisschop
* plugins/check_pgsql.c: use enum instead of define
2003-02-08 05:58 kdebisschop
* FAQ: add item on submitting new plugins
2003-02-08 05:57 kdebisschop
* SUPPORT: suggest minimum standards for support requests
2003-02-08 05:32 kdebisschop
* plugins/check_http.c: submit request with one send
2003-02-05 05:59 kdebisschop
* configure.in: fix for SSL build on RedHat rawhide
2003-02-05 05:58 kdebisschop
* plugins/check_dns.c: allow check to proceed using servers from
resolv.conf
2003-02-05 05:57 kdebisschop
* plugins/check_http.c: fix segfault due to bad asprintf invocation
2003-02-04 06:24 sghosh
* plugins-scripts/Makefile.am: install user:grp perms [patch
679703 -Detlef Boehm]
2003-02-04 06:16 sghosh
* plugins-scripts/check_flexlm.pl: lmstat output update
2003-02-04 05:54 sghosh
* plugins-scripts/check_ntp.pl: corrected ntpdate offset to seconds
2003-02-03 21:43 tonvoon
* plugins/check_snmp.c: Avoid core dump with null or invalid data
(679400 - Mathieu Masseboeuf)
2003-02-03 21:33 tonvoon
* plugins/Makefile.am: Patch for Mac OS X compile (652080 - Ton
Voon)
2003-02-03 20:43 sghosh
* contrib/tarballs/check_cit.tgz: Citrix plugin
2003-02-03 20:35 sghosh
* command.cfg.in: more sample command configurations
2003-02-03 20:29 sghosh
* configure.in, plugins-scripts/check_ntp.pl,
plugins-scripts/utils.pm.in: change ntpdc to ntpq (Jonathan
Rozes,Thomas Schimpke, bug-656237 )
2003-02-03 15:47 sghosh
* plugins-scripts/check_ntp.pl: patch for desync peer and ntpdate
(James Fidell)
2003-02-03 05:29 sghosh
* plugins-scripts/check_ifstatus.pl: bugfix [bug 651021 mperry2]
2003-02-03 05:07 sghosh
* plugins/check_hpjd.c: added default community [bug-patch #600349
jbaumgartner]
2003-01-31 18:40 tonvoon
* plugins/check_procs.c: Fix for zombie processes on Solaris (Bug
677803 - Matthew Brown)
2003-01-31 18:36 tonvoon
* plugins/check_nt.c: Reapply all asprintf calls. Fix for %%
problem with -l flag.
2003-01-31 01:26 tonvoon
* plugins/check_nt.c: Removed all unnecessary asprintf calls.
Replaced with original check_nt.c to minimise amount of changes
(reported by Reuben Farrelly)
2003-01-30 23:18 tonvoon
* plugins/check_nt.c: Added reference to the official NSClient web
site
2003-01-30 22:57 tonvoon
* plugins/check_swap.c: Fixed long --allswap option
2003-01-30 22:55 tonvoon
* plugins/check_procs.c: Fixed progname
2003-01-29 20:57 tonvoon
* plugins/check_mrtgtraf.c: Fixed error and success codes (638656 -
Paul Dlug)
2003-01-29 20:47 tonvoon
* plugins-scripts/check_oracle.sh: Added cache and tablespace check
(621567 - John Marquart)
2003-01-29 20:33 tonvoon
* plugins/: Makefile.am, check_nt.c: Added in check_nt for bug
646516
2003-01-29 06:38 kdebisschop
* plugins/check_mysql.c: remove incorrect check_disk() declaration
2003-01-29 06:16 kdebisschop
* plugins/check_ldap.c: fix segfault when argc>=2 and the -H or -b
options are not supplied
2003-01-29 06:15 kdebisschop
* plugins/check_by_ssh.c: 1.8
2003-01-29 05:55 tonvoon
* plugins/check_http.c: Better error if server requests client
based certificate (609382 - Olaf Greis)
2003-01-29 05:27 tonvoon
* contrib/check_dns_random.pl: Exit code added (604837 - Lachlan
Cameron-Smith)
2003-01-29 05:10 tonvoon
* plugins-scripts/check_oracle.sh: Added dummy login test (650970 -
Ton Voon)
2003-01-29 04:28 tonvoon
* plugins/check_vsz.c: Error when no params passed, better invalid
params message (652086 - Ton Voon)
2003-01-29 04:11 tonvoon
* plugins/check_procs.c: Fixed NULL status in Solaris (644783 -
Fabian Pehla) Fixed -p options (652082 - Ton Voon)
2003-01-28 07:44 kdebisschop
* contrib/checkciscotemp.pl: typo: had commented use Net::SNMP for
testing
2003-01-28 07:42 kdebisschop
* plugins/check_real.c: make sure host_name is set and remove NULL
string inits that can lead to segfaults
2003-01-28 07:26 kdebisschop
* plugins/check_mysql.c: missed argc check on port parameter
2003-01-28 07:17 kdebisschop
* contrib/checkciscotemp.pl: split and validate input more robustly
2003-01-28 07:15 kdebisschop
* plugins/check_http.c: remove NULL string inits that can lead to
segfaults
2003-01-28 00:32 tonvoon
* configure.in: ps support for Darwin / MacOSX
2003-01-27 11:53 kdebisschop
* plugins/check_http.c: do not pass host if none is provided
2003-01-27 06:04 kdebisschop
* plugins/check_http.c: we were sending extra CRLF
2003-01-19 06:34 kdebisschop
* plugins-scripts/check_rpc.pl: indicate new default state in
get_rpcinfo, also fix a bunch of indents for consistent format
2003-01-17 05:56 sghosh
* plugins-scripts/check_rpc.pl: bug fix for state and opt_c
initialization
2003-01-17 05:37 sghosh
* plugins/check_snmp.c: Counter32 tag parsing added
2003-01-16 06:42 kdebisschop
* plugins/: check_mysql.c, check_pgsql.c: semicolon needed where
progname define was replaced
2003-01-16 06:29 kdebisschop
* plugins/check_http.c: add option to let regex span newlines
2003-01-16 06:28 kdebisschop
* plugins/check_game.c: progname and print_usage need to be defined
2003-01-16 06:22 kdebisschop
* plugins/check_radius.c: semicolon needed where praogname define
was replced
2003-01-16 06:10 kdebisschop
* plugins/check_hpjd.c: semicolon needed where praogname define was
replced
2003-01-16 05:22 kdebisschop
* configure.in: find kerberos libs in latest Red Hat beta
2003-01-16 05:21 kdebisschop
* plugins/utils.c: restore max() macro
2003-01-16 05:20 kdebisschop
* plugins/check_tcp.c: cleanup progname assignment
2003-01-16 05:19 kdebisschop
* plugins-scripts/check_disk_smb.pl: accept $ for share and \\ for
users
2003-01-16 05:17 kdebisschop
* plugins/check_by_ssh.c: avoid segfault when host is not given
2003-01-13 12:21 kdebisschop
* contrib/: check_dhcp.c, check_fping_in.c, check_rbl.c: convert
PROGANE from a define to a const char
2003-01-13 12:15 kdebisschop
* plugins/: check_by_ssh.c, check_dig.c, check_disk.c, check_dns.c,
check_dummy.c, check_fping.c, check_hpjd.c, check_http.c,
check_ldap.c, check_load.c, check_mrtg.c, check_mrtgtraf.c,
check_mysql.c, check_nagios.c, check_nwstat.c, check_overcr.c,
check_pgsql.c, check_ping.c, check_procs.c, check_radius.c,
check_real.c, check_smtp.c, check_snmp.c, check_ssh.c,
check_swap.c, check_tcp.c, check_time.c, check_udp.c,
check_ups.c, check_users.c, check_vsz.c, negate.c, urlize.c,
utils.c, utils.h.in: convert PROGANE from a define to a const
char
2003-01-13 12:13 kdebisschop
* plugins/popen.c: change exit status to be POSIX compliant
2003-01-13 12:09 kdebisschop
* plugins/check_nagios.c: check for a few null strings, change
PROGNAME from #define to const *char
2003-01-13 04:50 kdebisschop
* plugins/check_disk.c: add options for excluding devices and for
skipping OK devices in summary
2003-01-03 03:24 kdebisschop
* plugins/utils.c: protect against some null strings, make formats
more uniform
2002-12-19 19:30 kdebisschop
* plugins/check_tcp.c: expect is +OK for SPOP too
2002-12-19 19:29 kdebisschop
* plugins/check_tcp.c: server expect not getting set, expect is +OK
for POP
2002-12-19 19:20 kdebisschop
* plugins/check_http.c: remove spurious CRLF
2002-11-29 12:02 stanleyhopcroft
* contrib/check_citrix:
New plugin to check the ICA browse service (used by Citrix
Metaframe servers) from Ed Rolison and Tom De Blende.
2002-11-25 12:00 kdebisschop
* plugins/check_tcp.c: was segfaulting if no dtat was returned
2002-11-24 13:43 kdebisschop
* tools/snapshot: some fixes needed to move off old devel box
2002-11-24 13:09 kdebisschop
* tools/snapshot: make routine snapshots of nagios and plugin CVS
to expand testing
2002-11-22 10:52 kdebisschop
* plugins/check_ups.c: add replace battery condition, replace
unchecked strcat calls with asprintf (I do not think buffer
overflow was possible here, but lets be consistent)
2002-11-22 02:46 kdebisschop
* configure.in: get long args output to work on check_procs by
putting incantations with -w ahead of others
2002-11-22 02:33 kdebisschop
* configure.in: get long args output to work on linux check_procs,
actually works this time (needs OpenBSD testing)
2002-11-22 01:33 kdebisschop
* plugins/check_procs.c: add a few comments, trap a few place where
a NULL string might have been handled
2002-11-22 01:31 kdebisschop
* configure.in: get long args output to work on linux check_procs
(needs OpenBSD testing)
2002-11-21 12:40 kdebisschop
* plugins/check_dig.c: fix empty output on errors
2002-11-20 11:56 kdebisschop
* plugins/check_swap.c: add switch to evaluate each swap
individually
2002-11-20 11:28 kdebisschop
* plugins/check_dig.c: fix solaris SEGV, still need to print
meaningful error text
2002-11-20 01:19 kdebisschop
* plugins/check_by_ssh.c: in short options, t no no argument
2002-11-20 01:09 kdebisschop
* plugins/check_dig.c: replace some strcpy with strscpy
2002-11-19 19:13 kdebisschop
* plugins/Makefile.am: another try at portable symlinking
2002-11-19 19:07 kdebisschop
* plugins/Makefile.am: another try at portable symlinking
2002-11-19 19:06 kdebisschop
* plugins/check_time.c: explicitly cast recv() arg2 for SunOS5.6
2002-11-19 07:13 kdebisschop
* plugins/Makefile.am: rewrite of install-exec-hook for solaris
2002-11-18 21:58 sghosh
* contrib/: check_javaproc.pl, nagios_sendim.pl: javaproc, sendim
2002-11-18 14:46 sghosh
* contrib-reporting/process_perfdata.pl: New directory to for
perfdata and reporting scripts
2002-11-18 11:24 kdebisschop
* plugins/check_swap.c: test total swap instead of individual disks
2002-11-18 07:23 kdebisschop
* plugins/check_disk.c: failed to handle multple disks
2002-11-18 07:22 kdebisschop
* plugins/utils.c: more readable max_state() code
2002-11-16 12:57 kdebisschop
* plugins/Makefile.am: fix too many sources problem for programs
tha are symlinks to check_tcp
2002-11-16 04:59 kdebisschop
* plugins/check_snmp.c: my take on Subhendu's patches, plus a few
comments for clarity
2002-11-15 17:47 sghosh
* plugins/check_snmp.c: memory bounds in options, no output
comparison case
2002-11-15 04:51 kdebisschop
* nagios-plugins.spec.in: make spec work again, now that release is
in source name again
2002-11-15 00:51 kdebisschop
* configure.in: release numbering fix
2002-11-15 00:50 kdebisschop
* plugins/check_snmp.c: fix label handling, replace accidentally
deleted elseif l.310
2002-11-14 18:25 kdebisschop
* Makefile.am, acconfig.h, configure.in, nagios-plugins.spec.in,
plugins/utils.c: fix bug with gettimeofday test, improve
version/release handling, update rpm spec
2002-11-14 18:23 kdebisschop
* plugins/Makefile.am: fix typo in snprintf build
2002-11-14 05:36 kdebisschop
* plugins/Makefile.am: can't drop these sources -- neded for dist
2002-11-14 05:27 kdebisschop
* plugins/Makefile.am: fix build rule for snprintf
2002-11-14 05:25 kdebisschop
* plugins/check_http.c: pagesize count off by one
2002-11-14 04:45 kdebisschop
* plugins/check_http.c: clean up NULL from status on Solaris
2002-11-14 04:00 kdebisschop
* configure.in: typo in AC_DEFINE of PS_FORMAT for solaris
2002-11-14 03:37 kdebisschop
* plugins/Makefile.am: remove check_nt again
2002-11-14 03:09 kdebisschop
* plugins/Makefile.am: back out last change -- it was only work in
progress
2002-11-14 02:26 kdebisschop
* plugins/: Makefile.am, check_dns.c, check_ldap.c, check_mrtg.c,
check_mrtgtraf.c, check_nwstat.c, check_radius.c, utils.c,
version.h.in: remove call_getopt and ssprintf
2002-11-13 11:50 kdebisschop
* plugins/: check_disk.c, check_dns.c, check_fping.c, check_hpjd.c,
check_mrtg.c, check_nwstat.c, check_ping.c, check_vsz.c,
urlize.c, utils.c: remove call_getopt and asprintf
2002-11-12 11:28 kdebisschop
* plugins/check_dig.c: cleanup asprintf, old function decls
2002-11-12 11:26 kdebisschop
* plugins/: check_mysql.c, check_real.c, check_ups.c: remove
call_getopt
2002-11-11 22:15 sghosh
* plugins/check_snmp.c: should use asprintf
2002-11-11 20:19 sghosh
* plugins/check_snmp.c: more snmpv3 patches
2002-11-11 19:29 sghosh
* plugins/check_snmp.c: long opt for miblist, snmpv3 support
(rosenauer)
2002-11-11 16:04 sghosh
* plugins/check_snmp.c: option to specify a miblist - llow
2002-11-11 15:43 sghosh
* plugins/check_snmp.c: misc doc fix, missing verbose option
2002-11-09 11:37 kdebisschop
* plugins/: check_ups.c, check_users.c: remove call_getopt
2002-11-09 04:22 kdebisschop
* plugins/: check_by_ssh.c, check_dig.c, check_ping.c,
check_time.c: remove call_getopt
2002-11-09 04:21 kdebisschop
* plugins/check_snmp.c: cleaner handling of DEFAULT_PORT
2002-11-09 03:43 kdebisschop
* configure.in: add HPUX swap, try to cleanup getopt processing
2002-11-09 03:39 kdebisschop
* plugins/: check_pgsql.c, check_ping.c, check_snmp.c, negate.c,
utils.h.in: define and use usage3 where second part of message is
a an int/char
2002-11-09 03:16 kdebisschop
* plugins/snprintf.c: HAVE_C99_SNPRINTF is not tested, so remove
from ifdef
2002-11-08 08:07 kdebisschop
* plugins/check_snmp.c: user reports NULL still getting into
asprintf
2002-11-08 08:06 kdebisschop
* plugins/check_vsz.c: remove call_getopt
2002-11-08 07:20 kdebisschop
* acconfig.h, configure.in, plugins/common.h.in, plugins/utils.c,
plugins/utils.h.in: patches required to build on solaris with
asprintf and gettimeofday
2002-11-08 07:18 kdebisschop
* plugins/: check_http.c, check_load.c, check_ping.c,
check_procs.c, check_smtp.c, check_tcp.c: remove unused variables
2002-11-08 07:17 kdebisschop
* tools/oneliners: some useful onliners
2002-11-07 14:30 kdebisschop
* plugins/check_snmp.c: bugfixes to command format and (null) text
created by asprintf switch
2002-11-07 07:07 kdebisschop
* plugins/check_by_ssh.c: remove call_getopt, add [] arougn time
2002-11-07 07:06 kdebisschop
* configure.in: test snprintf function family for ifdefs in
snprintf.c
2002-10-30 18:47 kdebisschop
* plugins/check_tcp.c: replace fixed-lentgh buffer with asprintf
2002-10-30 18:46 kdebisschop
* plugins/check_udp.c: forgot to remove call_getopt
2002-10-30 18:44 kdebisschop
* plugins/: check_ssh.c, check_swap.c: forgot to remove call_getopt
declaration
2002-10-30 18:29 kdebisschop
* plugins/check_smtp.c: remove call_getopt, fix several buffer
overruns possible due to use of fixed size buffers
2002-10-30 18:22 kdebisschop
* tools/setup: debian builds not actively maintained, so suppress
error in setup script
2002-10-30 05:07 sghosh
* acconfig.h, configure.in, plugins-scripts/Makefile.am,
plugins-scripts/check_mailq.pl, plugins-scripts/utils.pm.in:
monitor mailq
2002-10-28 13:05 kdebisschop
* plugins-scripts/: check_breeze.pl, check_disk_smb.pl,
check_flexlm.pl, check_log.sh, check_ntp.pl, check_rpc.pl,
check_sensors.sh, check_wave.pl: remove pspace in shebang since
no sequent users replied
2002-10-26 14:30 kdebisschop
* nagios-plugins.spec.in: release should not be in tarball name
2002-10-25 14:58 kdebisschop
* nagios-plugins.spec.in: tweak source macro
2002-10-25 13:35 kdebisschop
* plugins/Makefile.am: remove check_nt
2002-10-25 03:31 kdebisschop
* Makefile.am, plugins/Makefile.am: include getloadavg sources, add
some Solaris pkg build support
2002-10-22 10:13 kdebisschop
* plugins/check_ssh.c: remove call_getopt, replace ssprintf with
asprintf,better server version reporting
2002-10-22 09:54 kdebisschop
* plugins/check_tcp.c: add check_spop
2002-10-22 09:19 kdebisschop
* plugins/check_procs.c: remove call_getopt, replace ssprintf with
asprintf
2002-10-22 03:57 sghosh
* contrib/check_procr.sh: From: Jerome Tytgat - checks to see if
named process is running
2002-10-22 02:31 sghosh
* README, plugins/check_nt.c: check_nt is downloadable from
nsclient.ready2run.nl
2002-10-21 06:04 kdebisschop
* plugins/check_swap.c: use asprintf instead of ssprintf
2002-10-21 05:36 kdebisschop
* plugins/Makefile.am: need to define SOURCES for check_tcp to also
build as check_ftp,check_imap,check_nntp,check_pop
2002-10-21 05:05 kdebisschop
* plugins/utils.c: use asprintf to do strscpy
2002-10-21 05:04 kdebisschop
* plugins/Makefile.am: roll check_ftp, check_imap, check_pop, and
check_nntp into check_tcp
2002-10-21 05:03 kdebisschop
* plugins/: check_ftp.c, check_imap.c, check_nntp.c, check_pop.c:
these are all combined into check_tcp now
2002-10-21 04:55 kdebisschop
* plugins/check_load.c: remove broken call_getopt
2002-10-21 04:43 kdebisschop
* plugins/check_snmp.c: cleanup process_arguments, print_help, and
print_usage
2002-10-21 04:40 kdebisschop
* plugins/check_pgsql.c: now we provide long opts if they do not
exist
2002-10-20 21:22 kdebisschop
* plugins/check_snmp.c: fixed scanning for multiple OIDs, which was
not working
2002-10-20 19:49 kdebisschop
* plugins/check_snmp.c: change ssprintf to asprintf back out change
at line 225 in r1.4 (values were mismatched to format string,
so output was nonsense) (I left a comment showing a construct
that should work, but it fails for PHBs: if my disk gets
nearly full, they want 'CRITICAL - 99%' not 'CRITICAL - Gauge32:
99') (If someine has a rationale for the change, maybe it could
be done as an option? - it seems fairly clear that the Web
display should be sensible to PHBs so long as there's no real
loss)
2002-10-18 07:41 kdebisschop
* plugins/check_swap.c: remove old call_getopt
2002-10-18 06:55 kdebisschop
* plugins/check_load.c: remove old call_getopt code, fix bug taking
single float, allow colon as separators in additin to commas
2002-10-18 05:41 kdebisschop
* plugins/utils.c: handle null src in strscat
2002-10-18 04:48 kdebisschop
* plugins/check_tcp.c: millisecond timing
2002-10-18 04:46 kdebisschop
* plugins/utils.h.in: refine STD_LONG_OPTS
2002-10-18 04:46 kdebisschop
* plugins/check_http.c: provide on more decimal point printing time
2002-10-18 04:45 kdebisschop
* plugins/check_ping.c: remove broken call_getopt stuff
2002-10-17 07:09 kdebisschop
* plugins/check_tcp.c: using asprintf
2002-10-17 07:06 kdebisschop
* INSTALL, INSTALLING, tools/setup: revise now that aclocal is
remved from CVS
2002-10-16 23:26 kdebisschop
* configure.in: need some quoting on ifdef
2002-10-16 23:17 kdebisschop
* acinclude.m4, configure.in: finally a working fix for
AM/AC_FUNC_STRTOD nightmare
2002-10-16 23:01 kdebisschop
* configure.in: mismatched quote
2002-10-16 22:54 kdebisschop
* configure.in: missing commas
2002-10-16 22:46 kdebisschop
* configure.in: complains on paren in comment
2002-10-16 22:43 kdebisschop
* acinclude.m4: lost a paren
2002-10-16 22:41 kdebisschop
* acinclude.m4: old auto???? has AM_FUNC_STRTOD, now renamed
AC_FUNC_STRTOD
2002-10-16 22:32 kdebisschop
* plugins/: check_http.c, utils.c, utils.h.in: millisecond timimg
where supported
2002-10-16 22:31 kdebisschop
* configure.in, missing: build cleanly on RedHat 8.0
2002-10-16 11:46 kdebisschop
* .cvsignore: ignore aclocal.m4
2002-10-16 11:34 kdebisschop
* configure.in: AM_STRTOD was a typo
2002-10-16 11:31 kdebisschop
* aclocal.m4: automake invokes acloacl on each run - it cannot be
right to include this
2002-10-16 11:18 kdebisschop
* acconfig.h: better checks for vsnprintf stuff
2002-10-16 11:14 kdebisschop
* plugins/check_http.c, configure.in: use asprintf
2002-10-16 11:14 kdebisschop
* plugins/utils.c: use asprintf to construct strscat
2002-10-16 05:57 kdebisschop
* plugins/popen.h.in: timeout interval is extern
2002-10-16 05:56 kdebisschop
* plugins/: utils.h.in, utils.c: start support for gettimeofday and
tv_usec
2002-10-16 05:54 kdebisschop
* aclocal.m4: generated with automake 1.6 / autoconf 2.53 (maybe
should not be in CVS, however)
2002-10-16 05:52 kdebisschop
* plugins/snprintf.c: newer snprintf from samba.org
2002-10-16 05:43 kdebisschop
* Makefile.am: cosmetic line wrap before 80 chars
2002-10-16 05:42 kdebisschop
* depcomp, .cvsignore: needed for automake 1.6 / autoconf 2.53
2002-10-16 05:41 kdebisschop
* configure.in: work with newer automake, begin swithc to asprintf
2002-10-15 07:23 sghosh
* plugins-scripts/check_ifoperstatus.pl: new exit states, more
conditional checking
2002-10-07 20:05 sghosh
* plugins/check_dns.c: patch for expected IP address
2002-10-07 02:34 kdebisschop
* plugins/popen.c: make sure we do not run past the end of an
unterminated string
2002-10-07 02:19 kdebisschop
* plugins/negate.c: use asprintf, inhibit splint warning
2002-10-05 12:08 kdebisschop
* getloadavg.m4, plugins/getloadavg.c: lets use library instead od
inconsistent command line interfaces
2002-09-26 03:17 kdebisschop
* plugins/urlize.c: use ssprintf instead of sprintf
2002-09-25 09:01 kdebisschop
* plugins/check_http.c: incorporate comment on my_recv from Russell
Scibetti
2002-09-25 08:58 kdebisschop
* plugins/check_http.c: incorporate comments from Russell Scibetti
2002-09-24 06:16 kdebisschop
* plugins/check_http.c: replace remaining occurences of sprintf
with snprintf
2002-09-16 01:47 kdebisschop
* INSTALL: needed for latest autoconf
2002-09-16 01:47 kdebisschop
* Makefile.am, aclocal.m4, configure.in, nagios-plugins.spec.in:
finish ckleanup of rpm spec porcessing
2002-09-14 22:11 kdebisschop
* nagios-plugins.spec, nagios-plugins.spec.in: complete spec based
on confugure.in
2002-09-14 22:06 kdebisschop
* make-tarball, rpm: automake makes the dist tarball, rpmbuild -ta
makes the rpm
2002-09-14 03:27 kdebisschop
* plugins/check_tcp.c: time data in performance string
2002-09-14 03:23 kdebisschop
* plugins/check_http.c: time data in performance string
2002-09-14 03:13 kdebisschop
* plugins-scripts/check_log.sh: patch from Matthew Peters
<mattp@esec.com.au>, plus turned up a few bugs on my own
2002-09-12 03:43 kdebisschop
* plugins/Makefile.am: negate wrapper
2002-09-08 13:05 kdebisschop
* plugins/negate.c: wrapper to invert return status
2002-09-08 13:05 kdebisschop
* plugins/utils.c: clears up warnings in splint
2002-09-06 03:25 kdebisschop
* plugins-scripts/check_rpc.pl: case on key to ERRORS hash
2002-09-04 07:00 sghosh
* configure.in: more Mysql patches
2002-09-04 03:12 sghosh
* plugins-scripts/check_ntp.pl: dispersion check now controlled by
warn and crit
2002-09-04 03:11 sghosh
* configure.in: Mysql dir fix
2002-09-04 03:10 sghosh
* contrib/: check_ifoperstatus.pl, check_ifstatus.pl: moved to
supported plugins-scripts
2002-09-02 19:47 sghosh
* plugins/check_smtp.c: new -f option for adding a FROM address for
RFC correctness
2002-09-01 17:22 sghosh
* INSTALL, INSTALLING: file rename for MacOS X
2002-09-01 17:18 sghosh
* plugins/check_smtp.c: Valid MAIL command
2002-08-22 23:08 sghosh
* contrib/check_snmp_process_monitor.pl: updates
2002-08-22 15:43 sghosh
* command.cfg.in: smsclient config
2002-08-22 15:42 sghosh
* contrib/: check_snmp_disk_monitor.pl,
check_snmp_process_monitor.pl: new plugins contrib
2002-08-18 19:03 kdebisschop
* plugins/check_by_ssh.c: typo in options passed to ssh for ipv6.
fix by setting a generic hook for 1-char pasthhru options
2002-08-14 20:17 sghosh
* plugins-scripts/check_disk_smb.pl: patch for admin shares
2002-08-14 20:07 sghosh
* command.cfg.in: qpage definitions
2002-08-14 20:06 sghosh
* plugins-scripts/check_ifstatus.pl: skip PPP interfaces
2002-08-14 20:04 sghosh
* plugins/check_smtp.c: added HELO command
2002-08-14 20:04 sghosh
* plugins/check_by_ssh.c: ipv4/ipv6 switch added
2002-08-14 20:03 sghosh
* plugins/check_hpjd.c: net-snmp v5x fix
2002-08-14 20:02 sghosh
* contrib/check_apc_ups.pl: fix for ePN
2002-08-14 20:01 sghosh
* contrib/: check_linux_raid.pl, check_nagios_db.pl: new plugins
2002-08-14 20:00 sghosh
* contrib/check_inodes-freebsd.pl: check inodes - freebsd -
candidate for merge with check_inodes
2002-08-14 16:29 sghosh
* contrib/check_smb.sh: new smb check - users
2002-08-13 04:18 egalstad
* plugins/check_game.c: Mod to display current/max number of
players in a game (Frank Kannemann)
2002-08-13 00:09 egalstad
* contrib/check_disk_snmp.pl: Updated to use getopt (Christoph
Maser)
2002-08-01 06:06 sghosh
* plugins/check_snmp.c: re-patched exit state comparison
2002-08-01 05:54 sghosh
* plugins/check_snmp.c: port option added, -c support net-snmpv5,
complete response string output
2002-08-01 05:46 egalstad
* contrib/check_digitemp.pl: Add Brian Lane's Digitemp (1-wire temp
sensor) plugin
2002-07-16 05:13 egalstad
* contrib/check_disk_snmp.pl: Christoph Maser's plugin to check
disk usage via SNMP3
2002-07-16 01:04 stanleyhopcroft
* contrib/check_ms_spooler.pl: Primitive and in need of refinement
test of MS spooler (with smbclient)
2002-07-04 23:02 sghosh
* contrib/check_procl.sh: Jerome Tytgat - accumulated/percentage
CPU/MEM per process - bash plugin
2002-07-04 05:05 sghosh
* INSTALL: doc update
2002-06-28 22:08 sghosh
* INSTALL: note about autoconf/automake version
2002-06-25 22:32 sghosh
* contrib/check_rbl.c: Check if IP address is specified on RBL -
Tim Bell
2002-06-25 14:55 sghosh
* contrib/check_lmmon.pl: check motherboard/cpu temp via lmmon
2002-06-24 22:29 sghosh
* plugins/check_http.c: ignore return status codes if user
specified status line check
2002-06-24 21:41 sghosh
* plugins/check_snmp.c: printf bug for large numbers - Jeff Murray
2002-06-20 05:27 sghosh
* plugins-scripts/check_disk_smb.pl: logic fix for disk space
thresholds
2002-06-19 06:11 sghosh
* plugins/: check_dig.c, check_dns.c, check_fping.c, check_hpjd.c,
check_nagios.c, check_ping.c, check_snmp.c, check_vsz.c,
urlize.c, utils.c, utils.h.in: more POSIX return value comparison
related code fixes
2002-06-19 04:09 sghosh
* plugins/: check_disk.c, check_ping.c, check_procs.c: fixes for
using POSIX return codes
2002-06-18 02:06 sghosh
* plugins/common.h.in: updated to POSIX return codes
2002-06-18 02:05 sghosh
* contrib/check_cluster.c: Ethan's check_cluster
2002-06-13 21:49 sghosh
* plugins/check_smtp.c: conformance to RFC 821 <CRLF>
2002-06-13 04:03 sghosh
* configure.in: use xntpdc on Solaris for check_ntp
2002-06-10 04:24 sghosh
* plugins/check_smtp.c: patch to stop NOQUEUE syslog messages -
Karl Ewald
2002-06-08 01:33 sghosh
* plugins-scripts/check_ntp.pl: xntpdc/ntpdc patch - John Koyle
2002-06-06 05:16 sghosh
* plugins-scripts/: subst.in, utils.sh.in: corrected result codes -
for sh; corrected substition for libexec - Tom Bertelson
2002-06-06 05:15 sghosh
* plugins/check_disk.c: added option for mount point - Tom
Bertelson
2002-06-06 05:15 sghosh
* plugins-scripts/check_oracle.sh: Add test for Oracle name server,
can dynamicall determine ORACLE_HOME - tom Bertelson
2002-06-06 05:14 sghosh
* plugins-scripts/check_flexlm.pl: conditional on lmstat
2002-06-06 05:13 sghosh
* plugins-scripts/check_ntp.pl: conditional on ntpdc
2002-05-29 01:57 sghosh
* command.cfg.in: notes added
2002-05-28 04:14 sghosh
* command.cfg.in: option updates, more examples
2002-05-28 03:41 sghosh
* command.cfg.in: option updates, more examples
2002-05-27 03:10 sghosh
* plugins-scripts/check_ntp.pl: checked in too quickly
2002-05-27 03:05 sghosh
* doc/: README, developer-guidelines.html,
developer-guidelines.sgml: added developer guidelines.
2002-05-27 03:03 sghosh
* configure.in: typo, AIX 4.3 ps, smbclient, Net::SNMP fixes
2002-05-27 03:01 sghosh
* acconfig.h, plugins-scripts/utils.pm.in: new var - smbclient
2002-05-27 02:56 sghosh
* plugins-scripts/check_ntp.pl: logic reorg, ePN fix and support
for utils.pm
2002-05-27 02:55 sghosh
* plugins-scripts/check_disk_smb.pl: ePN fix and support for
utils.pm
2002-05-23 17:39 sghosh
* contrib/: check_log2.pl, check_vcs.pl: New plugins from Aaron
Bostick - Veritas Cluster, logfile
2002-05-10 04:51 sghosh
* plugins-scripts/check_rpc.pl: updates for ePN, patch for multiple
version check
2002-05-10 04:49 sghosh
* configure.in, plugins-scripts/utils.pm.in: added programs to
autoconf
2002-05-10 04:49 sghosh
* acconfig.h: Added programs for autoconf
2002-05-09 20:03 sghosh
* plugins-scripts/: Makefile.am, check_ifoperstatus.pl: migrated
check_ifoperstatus to standard plugin
2002-05-08 16:35 sghosh
* plugins/check_ping.c: patch for Suse 8.0 loss output
2002-05-08 06:10 sghosh
* plugins-scripts/utils.pm.in: is_hostname added, update CODES to
POSIX
2002-05-08 06:07 sghosh
* plugins/: check_hpjd.c, check_ups.c: updated notes
2002-05-08 06:04 sghosh
* configure.in: updated messages and check for host command
2002-05-08 05:58 sghosh
* plugins-scripts/: Makefile.am, check_ifstatus.pl: moved updated
check_ifstatus to standard plugin
2002-05-07 06:35 sghosh
* plugins-scripts/: check_breeze.pl, check_flexlm.pl,
check_ircd.pl, check_netdns.pl, check_ntp.pl, check_wave.pl: 2nd
fix for ePN
2002-05-02 17:43 sghosh
* plugins-scripts/: check_breeze.pl, check_disk_smb.pl,
check_flexlm.pl, check_ircd.pl, check_netdns.pl, check_ntp.pl,
check_rpc.pl, check_wave.pl: fix for embedded perl
2002-05-02 17:22 sghosh
* tools/: README, mini_epn.c, p1.pl: updated mini_epn and p1.pl
added to plugins distribution
2002-05-01 22:12 sghosh
* contrib/tarballs/fetchlog-0.92.tar.gz: remote log check (via snmp
possible) by Alexander Haderer
2002-04-29 03:58 kdebisschop
* plugins/getopt.h: failed to carry over from old plugins, listed
in EXTRA_DIST, needed for build
2002-04-23 13:50 sghosh
* plugins/check_ping.c: corrected program name and added rtt patch
for RH7.2+beta
2002-04-18 22:59 egalstad
* contrib/check_inodes.pl: add check_inodes contrib plugin by John
Jolet
2002-04-18 05:38 egalstad
* configure.in: configure script patch for ping syntax
2002-04-07 06:13 sghosh
* contrib/: check_backup.pl, check_dl_size.pl: plugins from Patrick
Greenwell
2002-04-05 23:22 sghosh
* acconfig.h: added HOST_COMMAND
2002-04-05 23:19 sghosh
* contrib/tarballs/check_spread.tar: plugin to check spread
messaging toolkit
2002-04-03 03:58 sghosh
* contrib/check_oracle_instance.pl: from Sven Dolderer - check
oracle instance
2002-04-03 03:56 sghosh
* plugins-scripts/check_nfs.pl: check_nfs functionality exists in
check_rpc
2002-03-18 05:15 sghosh
* plugins-scripts/subst.in: function to update perl plugin scripts
to find utils.pm
2002-03-01 02:53 egalstad
* plugins/: .cvsignore, config.h.in: Fix for stupid me
2002-03-01 02:42 egalstad
* contrib/check_breeze.pl, contrib/check_dhcp.c,
contrib/check_flexlm.pl, contrib/check_hltherm.c,
contrib/check_hprsc.pl, contrib/check_ipxping.c,
contrib/check_memory.tgz, contrib/check_mysql.c,
contrib/check_uptime.c, contrib/check_wave.pl,
contrib/readme.txt, contrib/tarballs/berger-ping.tar.gz,
contrib/tarballs/bowen-langley_plugins.tar.gz,
contrib/tarballs/check_bgp-1.0.tar.gz,
contrib/tarballs/check_breeze.tar.gz,
contrib/tarballs/check_flexlm.tar.gz,
contrib/tarballs/check_hltherm.tar.gz,
contrib/tarballs/check_hprsc.tar.gz,
contrib/tarballs/check_memory.tgz,
contrib/tarballs/check_radius.tar.gz,
contrib/tarballs/check_wave.tar.gz,
contrib/tarballs/hopcroft-plugins.tar.gz,
contrib/tarballs/radius.tar.gz, plugins/.cvsignore,
plugins/config.h.in: Contrib plugin cleanup
2002-02-28 06:42 egalstad
* .cvsignore, AUTHORS, CODING, COPYING, ChangeLog, FAQ, Helper.pm,
INSTALL, Makefile.am, NEWS, README, REQUIREMENTS, ROADMAP,
Requirements, acconfig.h, aclocal.m4, command.cfg.in, LEGAL,
configure.in, install-sh, make-tarball, missing, mkinstalldirs,
nagios-plugins.spec, opttest.pl, package.def, rpm, subst.in,
subst.sh, test.pl.in, contrib/check_apache.pl,
contrib/check_apc_ups.pl, contrib/check_bgpstate.pl,
contrib/check_dhcp.c, contrib/check_dlswcircuit.pl,
contrib/check_dns_random.pl, contrib/check_email_loop.pl,
contrib/check_fping_in.c, contrib/check_ftpget.pl,
contrib/check_ifoperstatus.pl, contrib/check_ifstatus.pl,
contrib/check_pop3.pl, contrib/check_qmailq.pl,
contrib/check_timeout.c, contrib/checkciscotemp.pl,
contrib/check_ipxping.c, contrib/check_joy.sh,
contrib/check_maxchannels.pl, contrib/check_maxwanstate.pl,
contrib/check_mem.pl, contrib/check_memory.tgz,
contrib/check_mysql.c, contrib/check_mysql.pl,
contrib/check_netapp.pl, contrib/check_nmap.py,
contrib/check_nwstat.pl, contrib/check_ora_table_space.pl,
contrib/check_rrd_data.pl, contrib/check_sap.sh,
contrib/check_sockets.pl, contrib/check_uptime.c,
contrib/maser-oracle.pl, contrib/mrtgext.pl, contrib/readme.txt,
contrib/restrict.pl, contrib/utils.py, contrib/check_nagios.pl,
contrib/urlize.pl, contrib/aix/check_crit_dsk,
contrib/aix/check_dsk, contrib/aix/check_failed,
contrib/aix/check_io, contrib/aix/check_kerberos,
contrib/aix/check_ping, contrib/aix/check_queue,
contrib/aix/pg_stat, contrib/tarballs/berger-ping.tar.gz,
contrib/tarballs/bowen-langley_plugins.tar.gz,
contrib/tarballs/check_bgp-1.0.tar.gz,
contrib/tarballs/check_breeze.tar.gz,
contrib/tarballs/check_flexlm.tar.gz,
contrib/tarballs/check_hltherm.tar.gz,
contrib/tarballs/check_hprsc.tar.gz,
contrib/tarballs/check_radius.tar.gz,
contrib/tarballs/check_wave.tar.gz,
contrib/tarballs/hopcroft-plugins.tar.gz,
contrib/tarballs/radius.tar.gz, plugins/.cvsignore,
plugins/Makefile.am, plugins/check_by_ssh.c, plugins/check_dig.c,
plugins/check_disk.c, plugins/check_dns.c, plugins/check_dummy.c,
plugins/check_fping.c, plugins/check_ftp.c, plugins/check_game.c,
plugins/check_hpjd.c, plugins/check_http.c,
plugins/check_ide-smart.c, plugins/check_imap.c,
plugins/check_ldap.c, plugins/check_load.c, plugins/check_mrtg.c,
plugins/check_mrtgtraf.c, plugins/check_mysql.c,
plugins/check_nntp.c, plugins/check_nt.c, plugins/check_nwstat.c,
plugins/check_overcr.c, plugins/check_pgsql.c,
plugins/check_ping.c, plugins/check_pop.c, plugins/check_procs.c,
plugins/check_radius.c, plugins/check_real.c,
plugins/check_smtp.c, plugins/check_snmp.c, plugins/check_ssh.c,
plugins/check_swap.c, plugins/check_tcp.c, plugins/check_time.c,
plugins/check_udp.c, plugins/check_ups.c, plugins/check_users.c,
plugins/check_vsz.c, plugins/common.h.in, plugins/getopt.c,
plugins/getopt1.c, plugins/netutils.c, plugins/netutils.h.in,
plugins/popen.c, plugins/popen.h.in, plugins/snprintf.c,
plugins/urlize.c, plugins/check_nagios.c, plugins/utils.c,
plugins/utils.h.in, plugins/version.h.in, plugins/t/check_disk.t,
plugins/t/check_dns.t, plugins/t/check_fping.t,
plugins/t/check_ftp.t, plugins/t/check_hpjd.t,
plugins/t/check_http.t, plugins/t/check_imap.t,
plugins/t/check_load.t, plugins/t/check_mysql.t,
plugins/t/check_ping.t, plugins/t/check_pop.t,
plugins/t/check_procs.t, plugins/t/check_smtp.t,
plugins/t/check_snmp.t, plugins/t/check_swap.t,
plugins/t/check_tcp.t, plugins/t/check_time.t,
plugins/t/check_udp.t, plugins/t/check_users.t,
plugins/t/check_vsz.t, plugins/tests/check_disk,
plugins/tests/check_dns, plugins/tests/check_ftp,
plugins/tests/check_hpjd, plugins/tests/check_http,
plugins/tests/check_load, plugins/tests/check_ping,
plugins/tests/check_procs, plugins/tests/check_swap,
plugins/tests/check_users, plugins/tests/check_vsz,
plugins-scripts/.cvsignore, plugins-scripts/Makefile.am,
plugins-scripts/check_breeze.pl,
plugins-scripts/check_disk_smb.pl,
plugins-scripts/check_flexlm.pl, plugins-scripts/check_ircd.pl,
plugins-scripts/check_log.sh, plugins-scripts/check_netdns.pl,
plugins-scripts/check_nfs.pl, plugins-scripts/check_ntp.pl,
plugins-scripts/check_oracle.sh, plugins-scripts/check_rpc.pl,
plugins-scripts/check_sensors.sh, plugins-scripts/check_wave.pl,
plugins-scripts/subst.in, plugins-scripts/utils.pm.in,
plugins-scripts/utils.sh.in, plugins-scripts/t/check_rpc.t,
tools/setup, tools/tango: Initial import of existing plugin code
2002-02-28 06:42 egalstad
* .cvsignore, AUTHORS, CODING, COPYING, ChangeLog, FAQ, Helper.pm,
INSTALL, Makefile.am, NEWS, README, REQUIREMENTS, ROADMAP,
Requirements, acconfig.h, aclocal.m4, command.cfg.in, LEGAL,
configure.in, install-sh, make-tarball, missing, mkinstalldirs,
nagios-plugins.spec, opttest.pl, package.def, rpm, subst.in,
subst.sh, test.pl.in, contrib/check_apache.pl,
contrib/check_apc_ups.pl, contrib/check_bgpstate.pl,
contrib/check_dhcp.c, contrib/check_dlswcircuit.pl,
contrib/check_dns_random.pl, contrib/check_email_loop.pl,
contrib/check_fping_in.c, contrib/check_ftpget.pl,
contrib/check_ifoperstatus.pl, contrib/check_ifstatus.pl,
contrib/check_pop3.pl, contrib/check_qmailq.pl,
contrib/check_timeout.c, contrib/checkciscotemp.pl,
contrib/check_ipxping.c, contrib/check_joy.sh,
contrib/check_maxchannels.pl, contrib/check_maxwanstate.pl,
contrib/check_mem.pl, contrib/check_memory.tgz,
contrib/check_mysql.c, contrib/check_mysql.pl,
contrib/check_netapp.pl, contrib/check_nmap.py,
contrib/check_nwstat.pl, contrib/check_ora_table_space.pl,
contrib/check_rrd_data.pl, contrib/check_sap.sh,
contrib/check_sockets.pl, contrib/check_uptime.c,
contrib/maser-oracle.pl, contrib/mrtgext.pl, contrib/readme.txt,
contrib/restrict.pl, contrib/utils.py, contrib/check_nagios.pl,
contrib/urlize.pl, contrib/aix/check_crit_dsk,
contrib/aix/check_dsk, contrib/aix/check_failed,
contrib/aix/check_io, contrib/aix/check_kerberos,
contrib/aix/check_ping, contrib/aix/check_queue,
contrib/aix/pg_stat, contrib/tarballs/berger-ping.tar.gz,
contrib/tarballs/bowen-langley_plugins.tar.gz,
contrib/tarballs/check_bgp-1.0.tar.gz,
contrib/tarballs/check_breeze.tar.gz,
contrib/tarballs/check_flexlm.tar.gz,
contrib/tarballs/check_hltherm.tar.gz,
contrib/tarballs/check_hprsc.tar.gz,
contrib/tarballs/check_radius.tar.gz,
contrib/tarballs/check_wave.tar.gz,
contrib/tarballs/hopcroft-plugins.tar.gz,
contrib/tarballs/radius.tar.gz, plugins/.cvsignore,
plugins/Makefile.am, plugins/check_by_ssh.c, plugins/check_dig.c,
plugins/check_disk.c, plugins/check_dns.c, plugins/check_dummy.c,
plugins/check_fping.c, plugins/check_ftp.c, plugins/check_game.c,
plugins/check_hpjd.c, plugins/check_http.c,
plugins/check_ide-smart.c, plugins/check_imap.c,
plugins/check_ldap.c, plugins/check_load.c, plugins/check_mrtg.c,
plugins/check_mrtgtraf.c, plugins/check_mysql.c,
plugins/check_nntp.c, plugins/check_nt.c, plugins/check_nwstat.c,
plugins/check_overcr.c, plugins/check_pgsql.c,
plugins/check_ping.c, plugins/check_pop.c, plugins/check_procs.c,
plugins/check_radius.c, plugins/check_real.c,
plugins/check_smtp.c, plugins/check_snmp.c, plugins/check_ssh.c,
plugins/check_swap.c, plugins/check_tcp.c, plugins/check_time.c,
plugins/check_udp.c, plugins/check_ups.c, plugins/check_users.c,
plugins/check_vsz.c, plugins/common.h.in, plugins/getopt.c,
plugins/getopt1.c, plugins/netutils.c, plugins/netutils.h.in,
plugins/popen.c, plugins/popen.h.in, plugins/snprintf.c,
plugins/urlize.c, plugins/check_nagios.c, plugins/utils.c,
plugins/utils.h.in, plugins/version.h.in, plugins/t/check_disk.t,
plugins/t/check_dns.t, plugins/t/check_fping.t,
plugins/t/check_ftp.t, plugins/t/check_hpjd.t,
plugins/t/check_http.t, plugins/t/check_imap.t,
plugins/t/check_load.t, plugins/t/check_mysql.t,
plugins/t/check_ping.t, plugins/t/check_pop.t,
plugins/t/check_procs.t, plugins/t/check_smtp.t,
plugins/t/check_snmp.t, plugins/t/check_swap.t,
plugins/t/check_tcp.t, plugins/t/check_time.t,
plugins/t/check_udp.t, plugins/t/check_users.t,
plugins/t/check_vsz.t, plugins/tests/check_disk,
plugins/tests/check_dns, plugins/tests/check_ftp,
plugins/tests/check_hpjd, plugins/tests/check_http,
plugins/tests/check_load, plugins/tests/check_ping,
plugins/tests/check_procs, plugins/tests/check_swap,
plugins/tests/check_users, plugins/tests/check_vsz,
plugins-scripts/.cvsignore, plugins-scripts/Makefile.am,
plugins-scripts/check_breeze.pl,
plugins-scripts/check_disk_smb.pl,
plugins-scripts/check_flexlm.pl, plugins-scripts/check_ircd.pl,
plugins-scripts/check_log.sh, plugins-scripts/check_netdns.pl,
plugins-scripts/check_nfs.pl, plugins-scripts/check_ntp.pl,
plugins-scripts/check_oracle.sh, plugins-scripts/check_rpc.pl,
plugins-scripts/check_sensors.sh, plugins-scripts/check_wave.pl,
plugins-scripts/subst.in, plugins-scripts/utils.pm.in,
plugins-scripts/utils.sh.in, plugins-scripts/t/check_rpc.t,
tools/setup, tools/tango: Initial revision
|