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
|
monit (1:5.27.2-1) unstable; urgency=medium
* New upstream version 5.27.2
* Bump up Standards-Version (to 4.5.1)
* Drop unused override
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 25 Jan 2021 08:47:12 +0300
monit (1:5.27.1-1) unstable; urgency=medium
* New upstream version 5.27.1
* Refresh patches
* Add lintian override for debian-watch-does-not-check-gpg-signature
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 25 Oct 2020 07:20:12 +0300
monit (1:5.27.0-2) unstable; urgency=medium
* Restore cross-build compatibility. Closes: #968482,
thanks to Helmut Grohne.
* Update debhelper-compat version
* Drop obsoleted (in bullseye) DEB_LDFLAGS_MAINT_APPEND
* Fix Forwarded header in 07_cross.patch
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 23 Sep 2020 08:43:03 +0300
monit (1:5.27.0-1) unstable; urgency=medium
* Support for monitoring the ecdsa and ed25519 ssh keys (Closes: #961030)
* New upstream version 5.27.0 (Closes: #966185)
* Adapt patches (11_enable_hurd.patch wasn't tested)
* Override dh_autoreconf (suggested by Christian Göttsche)
* Drop README
* Remove support for START option in default (lintian
init.d-script-should-always-start-service)
* Add Pre-Depends (fix skip-systemd-native-flag-missing-pre-depends)
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 31 Jul 2020 14:12:44 +0300
monit (1:5.26.0-6) unstable; urgency=medium
* Fix superfluous alerts when the link is down (Closes: #902204)
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 28 Apr 2020 08:32:19 +0300
monit (1:5.26.0-5) unstable; urgency=medium
[ Debian Janitor ]
* Trim trailing whitespace.
* Bump debhelper from old 10 to 12.
* Set debhelper-compat version in Build-Depends.
* Set upstream metadata fields: Bug-Submit (from ./configure),
Repository.
[ Christian Göttsche ]
* Correct printf format arguments in hurd patch
* Add Rules-Requires-Root: no
* Create /var/log/monit.log with correct SELinux context
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 20 Apr 2020 12:23:50 +0300
monit (1:5.26.0-4) unstable; urgency=medium
* Bump up Standards-Version (to 4.5.0)
* Fix FTBFS for Hurd
* Add lintian override for missing-systemd-service-for-init.d-script
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 05 Feb 2020 17:54:14 +0300
monit (1:5.26.0-3) unstable; urgency=medium
* Trigger new release to fix binary upload.
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 12 Dec 2019 23:01:49 +0300
monit (1:5.26.0-2) unstable; urgency=medium
* Clean trailing spaces in old changelog entries
* Use https in copyright urls
* Add debian/gbp.conf
* Add missing sshd_dsa_key definition. Closes: #932778, thanks
to Joseph Nahmias.
* Bump up Standards-Version (to 4.4.1)
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 11 Oct 2019 01:47:33 +0300
monit (1:5.26.0-1) unstable; urgency=medium
* New upstream version 5.26.0
* Refresh patches
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 07 Jul 2019 08:57:16 +0300
monit (1:5.25.3-1) unstable; urgency=medium
* New upstream version 5.25.3. Closes: #927775 (CVE-2019-11454
and CVE-2019-11455).
* Refresh patches
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 04 Jun 2019 00:35:25 +0300
monit (1:5.25.2-3) unstable; urgency=medium
* Spelling fixes in manpage
* Bump up Standards-Version (to 4.3.0)
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 17 Feb 2019 13:56:09 +0300
monit (1:5.25.2-2) unstable; urgency=medium
* Fix postfix master binary path in a template (Closes: #913097) Thanks to
Joseph Nahmias.
* Bump up Standards-Version (to 4.2.1)
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 21 Dec 2018 11:32:54 +0300
monit (1:5.25.2-1) unstable; urgency=medium
* Update Vcs-* fields for salsa.
* New upstream version 5.25.2
* Bump up Standards-Version (to 4.1.4)
* Refresh patches
* Add default-mta to suggests, remove exim4
* Don't check for DSA keys (not created by default). Closes: #877633.
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 01 Jun 2018 11:28:44 +0300
monit (1:5.25.1-1) unstable; urgency=medium
* New upstream version 5.25.1
* Refresh patches
* Drop inactive uploaders
* Bump up Standards-Version (to 4.1.1)
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 28 Nov 2017 14:02:23 +0300
monit (1:5.23.0-4) unstable; urgency=medium
* Drop dh-autoreconf deps (redundant for debhelper level 10)
* Drop quotation marks from arguments of mv_conffile (Closes: #873539)
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 29 Aug 2017 18:22:44 +0300
monit (1:5.23.0-3) unstable; urgency=medium
* Apply patches from Christian Göttsche: switch to debhelper compat level
10, strip unneeded linked libraries, use https addresses (Closes: #872715)
* Bump up Standards-Version (to 4.1.0)
* Detect rxvt as color terminal (Closes: #867669)
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 28 Aug 2017 14:57:38 +0300
monit (1:5.23.0-2) unstable; urgency=medium
* Add libdevstat-dev deps, which hopefully fix kFreeBSD builds
* Enable hardened build flags
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 08 Jul 2017 13:11:28 +0300
monit (1:5.23.0-1) unstable; urgency=medium
* Imported Upstream version 5.23.0
* Refresh patches
* Bump up Standards-Version (to 4.0.0)
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 08 Jul 2017 01:31:47 +0300
monit (1:5.22.0-1) unstable; urgency=medium
* Imported Upstream version 5.22.0
* Refresh patches
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 22 Apr 2017 02:08:01 +0300
monit (1:5.21.0-1) unstable; urgency=medium
* Imported Upstream version 5.21.0
* Refresh patches, drop 06_ssl.patch (fixed upstream)
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 13 Apr 2017 11:42:29 +0300
monit (1:5.20.0-6) unstable; urgency=medium
* Fix regression from #849886, test monit.log existence (Closes: #850829)
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 11 Jan 2017 16:48:27 +0300
monit (1:5.20.0-5) unstable; urgency=medium
* Fix VCS URL
* Cleanup logfile setup, use install (Closes: #849886)
* Ignore postfix deps for kfreebsd/hurd
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 09 Jan 2017 17:11:09 +0300
monit (1:5.20.0-4) unstable; urgency=medium
* Fix FTCBFS: 07_cross.patch: Fix build/host confusion (Closes: #844693)
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 02 Dec 2016 14:49:23 +0300
monit (1:5.20.0-3) unstable; urgency=medium
* Change openssl detection (fixes #828439 on i386?)
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 14 Nov 2016 12:27:58 +0300
monit (1:5.20.0-2) unstable; urgency=medium
* Fix FTBFS, add deps on zlib1g-dev (Closes: #843894)
* Bump up Standards-Version (to 3.9.8)
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 10 Nov 2016 17:35:09 +0300
monit (1:5.20.0-1) unstable; urgency=medium
* Imported Upstream version 5.20.0
* Refresh patches
* Add spelling fixes from lintian
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 22 Oct 2016 02:27:54 +0300
monit (1:5.19.0-1) unstable; urgency=medium
* Imported Upstream version 5.19.0
* Refresh patches
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 08 Aug 2016 17:34:34 +0300
monit (1:5.18-1) unstable; urgency=medium
* Imported Upstream version 5.18
* Drop 00_timeout_zombies.patch & refresh patches
* Revert "Fix Hurd patch: use /proc/uptime to get uptime in get_starttime()"
* More spelling fixes
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 01 Jun 2016 14:19:42 +0300
monit (1:5.17.1-2) unstable; urgency=medium
* Fix comment in debian/conf-available/rsyslog
* Change rsyslog config defaults: monitor
/var/log/syslog (Closes: #818290)
* Better cleanup (prevent zombies) after timeouts
trigger (Closes: #818478). Thanks to Guillem Jover.
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 22 Mar 2016 18:43:13 +0300
monit (1:5.17.1-1) unstable; urgency=medium
* Imported Upstream version 5.17.1
* Refresh patches
* Bump up Standards-Version (to 3.9.7)
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 08 Mar 2016 01:49:12 +0300
monit (1:5.16-2) unstable; urgency=medium
* Fix Hurd patch: use /proc/uptime to get uptime in get_starttime()
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 16 Feb 2016 18:49:22 +0300
monit (1:5.16-1) unstable; urgency=medium
* Remove unused patch for kfreebsd
* Fix debian/conf-available/snmpd: /sbin/service -> /etc/init.d/snmpd
* Imported Upstream version 5.16
* Refresh patches, drop (applied by upstream) 00_delay.patch
and 13_unrep_fix.patch
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 04 Feb 2016 17:03:34 +0300
monit (1:5.15-3) unstable; urgency=medium
* Make build reproducible (Closes: #807159), thanks to Chris Lamb.
* Disable FTBFS fix attempt (see #807611)
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 15 Dec 2015 15:22:29 +0300
monit (1:5.15-2) unstable; urgency=medium
* Document the start delay option (Closes: #806194)
* 01_spelling.patch: patch doc/monit.pod instead
* Rename monitrc.d/ -> conf-available/ (Closes: #791669)
* Fix (?) kfreebsd.patch
* Fix spelling errors in the delay.patch too...
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 05 Dec 2015 23:13:24 +0300
monit (1:5.15-1) unstable; urgency=medium
* Explain why sysvinit was suggested (Closes: #791668)
* Imported Upstream version 5.15
* Fix spelling in monit.1
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 26 Oct 2015 20:09:02 +0300
monit (1:5.14-2) unstable; urgency=medium
* Try to fix FTBFS on kfreebsd
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 15 Jul 2015 12:48:33 +0300
monit (1:5.14-1) unstable; urgency=medium
* Imported Upstream version 5.14
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 09 Jun 2015 16:52:39 +0300
monit (1:5.13-1) unstable; urgency=medium
* Imported Upstream version 5.13
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 17 May 2015 02:01:20 +0300
monit (1:5.12.2-1) unstable; urgency=medium
* Imported Upstream version 5.12.2
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 14 Apr 2015 16:43:20 +0300
monit (1:5.12.1-1) unstable; urgency=medium
* Correct HURD patch
* Imported Upstream version 5.12.1
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 16 Mar 2015 20:03:39 +0300
monit (1:5.12-1) unstable; urgency=medium
* Imported Upstream version 5.12
* Refresh patches
* Try to add network support for HURD
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 05 Mar 2015 13:02:49 +0300
monit (1:5.11-1) unstable; urgency=medium
* Imported Upstream version 5.11
* Refresh patches
* Comment for rsyslog plugin (Closes: #771322).
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 28 Dec 2014 17:32:53 +0300
monit (1:5.10-1) unstable; urgency=medium
* Imported Upstream version 5.10
* Refresh patches
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 03 Nov 2014 01:54:51 +0300
monit (1:5.9-2) unstable; urgency=medium
* Bump up Standards-Version (to 3.9.6)
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 25 Oct 2014 18:03:03 +0400
monit (1:5.9-1) unstable; urgency=medium
* Imported Upstream version 5.9
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 30 Sep 2014 13:55:49 +0400
monit (1:5.8.1-3) unstable; urgency=medium
* Add lintian override for init.d-script-depends-on-all-virtual-facility
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 30 Aug 2014 15:55:51 +0400
monit (1:5.8.1-2) unstable; urgency=low
* Fix FTBFS on kFreeBSD
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 20 May 2014 02:01:48 +0400
monit (1:5.8.1-1) unstable; urgency=low
* Imported Upstream version 5.8.1
* Refresh patches
* Fix HURD build, broken by upstream
* Install CONTRIBUTORS file
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 19 May 2014 13:33:44 +0400
monit (1:5.8-1) unstable; urgency=low
[ Sergey B Kirpichev ]
* Change recommends for sysvinit-core to suggests (Closes: #740803)
* Imported Upstream version 5.8
[ Salvatore Bonaccorso ]
* Change pid location for apache2 (Closes: #741016)
[ Victor Seva ]
* Add myself to Uploaders
* Refresh patches, remove 12_unixsocket_fix.patch.
* Update monit.examples, upstart files are now at
system/startup orig directory.
[ Sergey B Kirpichev ]
* Spelling fixes for manpage
* Change copyright years for Debian packaging
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 15 Apr 2014 00:56:23 +0400
monit (1:5.7-1) unstable; urgency=low
* Bump up Standards-Version (to 3.9.5)
* Fix/add Forwarded: headers
* Imported Upstream version 5.7
* Refresh patches, remove 06_contrib.patch,
09_pid_in_rundir.patch and 10_ssl_multiarch.patch
* Add notes about CLA
* Removed obsoleted dh_installinit override (thanks to Christian Dröge)
* Cleanup 11_enable_hurd.patch
* Actually use type UDP option for unixsocket's (Closes: #739622)
* Recommend sysvinit
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 21 Feb 2014 16:58:23 +0400
monit (1:5.6-2) unstable; urgency=low
* disable ssl patch for now & reformat patches/series
* Refresh 06_contrib.patch
* Document apt's configuration to enable monit's restart while
upgrade (Closes: #726658). Thanks to Michael Vogt.
* Fix lintian error: vcs-field-not-canonical
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 08 Oct 2013 15:47:02 +0400
monit (1:5.6-1) unstable; urgency=low
* Imported Upstream version 5.6
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 05 Sep 2013 17:03:07 +0400
monit (1:5.5.1-1) unstable; urgency=low
* Imported Upstream version 5.5.1
* Refresh patches, drop unused
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 16 Jun 2013 13:54:38 +0400
monit (1:5.5-6) unstable; urgency=low
* Include stdlib.h to fix blhc E: pointer-trouble-at-implicit in
FileTest.c
* Drop DMUA, fix lintian warning
* Bump up Standards-Version (to 3.9.4)
* Use autotools-dev helpers to update config.guess/config.sub (fix
lintian warning: outdated-autotools-helper-file)
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 27 Dec 2012 14:11:12 +0400
monit (1:5.5-5) unstable; urgency=low
* Fix FTBFS on ia64, a second attempt
* Revert back -c option in monit.init
* Implement sysdep_HURD.c
* Correct description for patch 11
* Add missing DEP3 "Forwarded" headers
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 13 Dec 2012 17:01:58 +0400
monit (1:5.5-4) unstable; urgency=low
* Fix (I think) FTBFS on ia64 due to installed automake
* Update patch 11: fix PATH_MAX issues for Hurd
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 12 Dec 2012 22:52:55 +0400
monit (1:5.5-3) unstable; urgency=low
* Fix FTBFS for i386 and kfreebsd-i386: patch 10
* Enable building on Hurd: patch 11
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 11 Dec 2012 16:06:27 +0400
monit (1:5.5-2) unstable; urgency=low
* Show error while doing an attempt to stop daemon as non-root user
(LP: #877667)
* Use /run as pidfile location, patch 09 was added
* Drop support for "startup" option and /etc/monit/monit_delay
* Update patch 08 from upstream
* Drop monit_check_config (monitrc now non-empty by default)
* Cleanup restart target in monit.init
* Drop -c $CONFIG argument from monit options in monit.init
* Drop multiarch workarround for libssl in debian/rules
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 09 Dec 2012 17:42:20 +0400
monit (1:5.5-1) unstable; urgency=low
* Bunch of config snippets (debian/monitrc.d/*)
* Imported Upstream version 5.5
* Unfuzz patches
* Add Forwarded: dep3 headers
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 10 Sep 2012 14:20:52 +0400
monit (1:5.4-2) unstable; urgency=low
* Chande dh compat to 9, enable hardening support
* Provide debian/monit.bug-script (Closes: #654450)
* Remove README.Debian from monit.docs (this file is automatically
installed if present)
* Install example config of systemd's service
* Refresh 07_spelling.patch
* Install optional configuration snippets to /etc/monit/monitrc.d/
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 01 Jun 2012 14:49:58 +0400
monit (1:5.4-1) unstable; urgency=low
* Reformat debian/copyright according to accepted DEP5 spec
* Bump up Standards-Version to 3.9.3 (no changes)
* Imported Upstream version 5.4
-- Sergey B Kirpichev <skirpichev@gmail.com> Sun, 13 May 2012 19:34:12 +0400
monit (1:5.3.2-2) unstable; urgency=low
* Drop TODO.Debian
* Fix bashism in monit.init (Closes: #654449)
* Removed example.monitrc
* Cleanup of dirs file
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 05 Jan 2012 16:04:39 +0400
monit (1:5.3.2-1) unstable; urgency=low
* Imported Upstream version 5.3.2 (Closes: #652715)
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 21 Dec 2011 03:20:22 +0400
monit (1:5.3.1-3) unstable; urgency=low
* Revert "Drop --with-ssl-lib-dir switch from ./configure arguments"
- Couple arch's (hurd-i386, i386, kfreebsd-i386) still needs
this workarround to prevent FTBS.
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 20 Dec 2011 13:14:13 +0400
monit (1:5.3.1-2) unstable; urgency=low
* Install monit binary to /usr/bin instead of /usr/sbin
* Don't install contrib/packages/* in docs
* Added LSB Description to init-script
* Removed override_dh_auto_install
* Install upstart conf in doc/package/examples
* Apply 07_spelling.patch
* Added override for lintian spelling-error-in-binary usr/bin/monit
* Droped --with-ssl-lib-dir switch from ./configure arguments
* Added missing legacy debian/* copyrights
* Apply 08_hide_low_priority_info_from_stderr.patch: Hide from stderr
output from LogInfo and LogDebug.
* Removed the state and id files on purge
* Cleanup for init script
* Introduce NEWS.Debian file, document binary path transition
* Removed deprecated stuff about /etc/monit/monit_delay from
README.Debian
* Fixed upstream license information in debian/copyright
-- Sergey B Kirpichev <skirpichev@gmail.com> Tue, 20 Dec 2011 00:50:07 +0400
monit (1:5.3.1-1) unstable; urgency=low
* Imported Upstream version 5.3.1
* Drop debian/patches/06_kfreebsd.patch,
debian/patches/07_bootstrap.patch (and autogenerated
debian/patches/99_autoreconf.patch), applied upstream
-- Sergey B Kirpichev <skirpichev@gmail.com> Sat, 29 Oct 2011 01:22:47 +0400
monit (1:5.3-3) unstable; urgency=low
* Added deps for libkvm-dev on kFreeBSD
* 06_kfreebsd.patch: fix FTBFS for kFreeBSD (Closes: #643019)
* 07_bootstrap.patch: Add -c option for libtoolize in bootstrap
scripts
* 99_autoreconf.patch: Run ./bootstrap
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 29 Sep 2011 16:45:26 +0400
monit (1:5.3-2) unstable; urgency=low
* Set --sysconfdir to /etc/monit and drop patches for relocation of
default /etc/monitrc path to /etc/monit/monitrc
* Properly use $(DEB_HOST_MULTIARCH) for --with-ssl-lib-dir (fix for
FTBFS in a couple of arch's)
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 28 Sep 2011 20:57:23 +0400
monit (1:5.3-1) unstable; urgency=low
* Bump up Standards-Version (to 3.9.2)
* Add minsize clause for logrotate script
* Imported Upstream version 5.3
* Fix patches for 5.3 version and drop
06_Fix_FTBFS_after_ssv2_removal.patch
* Exclude obsoleted docs (README.SSL, etc) and include doc/PLATFORMS
* Drop obsoleted automake1.9 deps
* Drop deps for byacc & flex (unneeded for monit 5.3)
* Set --with-ssl-lib-dir as a workarround
* Fix lintian warning: obsoleted field Format-Specification in
debian/copyright
-- Sergey B Kirpichev <skirpichev@gmail.com> Thu, 15 Sep 2011 03:03:30 +0400
monit (1:5.2.5-2) unstable; urgency=low
* Fix FTBFS (undefined reference to `SSLv2_client_method') after ssv2
removal (Closes: #621047).
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 06 Apr 2011 15:08:19 +0400
monit (1:5.2.5-1) unstable; urgency=low
* Imported Upstream version 5.2.5 (Closes: #617259)
* Removed patches, applied by upstream
* Unfuzz patches
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 06 Apr 2011 03:19:27 +0400
monit (1:5.2.4-4) unstable; urgency=low
* Use tiny debian/rules, bump up debhelper compat level
* Removed CHANGES.txt from monit.docs (this is a changelog already)
* Override init.d start/stop defaults
* Cleanup debian/monit.dirs
* Remove /var/log/monit.log in postrm script
* Add references to BTS in TODO.Debian
* Override dh_auto_configure - added argument --bindir=/usr/sbin
* Don't set initail delay for monit startup
* Quote dh_installinit params
* Set default $HOST to FQDN hostname (Closes: #613768)
* Add monit alias to /etc/aliases
* Add Forwarded: headers in debian/patches/
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 21 Mar 2011 15:50:39 +0300
monit (1:5.2.4-3) unstable; urgency=low
* Refresh patches with --diffstat
* Upstream fix for SMTP protocol (original test issues both EHLO and
HELO, regardless of server reply). Closes: #614984.
* Use @include common-* stanzas for monit PAM configuration (Thanks to
Paulo Ricardo Bruck)
-- Sergey B Kirpichev <skirpichev@gmail.com> Wed, 16 Mar 2011 23:55:26 +0300
monit (1:5.2.4-2) unstable; urgency=low
* Drop Build-Depends on quilt (not needed due to package format)
* Do set -e in postinst script explicitly (not in sha-bang) to make
lintian happy
* Cleanup description (thanks to lintian: description-synopsis-starts-
with-an-article)
* Update copyright year for upstream
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 04 Mar 2011 16:44:28 +0300
monit (1:5.2.4-1) unstable; urgency=low
* Create & rotate /var/log/monit.log with root:adm owner and group
(Closes: #613764)
* Adopt DEP5 (Machine-readable debian/copyright format)
* Suggest MTA (exim4, postfix, etc)
* Cleanup patch 05_monitrc.patch: disable "set alert root@localhost"
and "set mailserver localhost"
* Cleanup logrotate script
* Add eventqueue basedir
* New upstream release (5.2.4). Closes: #613770.
* Unfuzz 02_monit.1_debian_path.patch
* Added "DM-Upload-Allowed: yes" control field
-- Sergey B Kirpichev <skirpichev@gmail.com> Fri, 04 Mar 2011 14:21:01 +0300
monit (1:5.2.3-2) unstable; urgency=low
[ Sergey B Kirpichev ]
* Fix monit_not_configured () message text (see Ubuntu bug #666268)
* Add Vcs-* fields to debian/control
* Fix initscript dependencies to start after and stop before other
services (Closes: #606731, thanks to Joey Parrish <joey.parrish@gmail.com>)
* Add patch 04_LOGMASK.patch: set strict file mode creation mask for
logfile
* Allow monit to start by default, provide minimal monitrc file
(Closes: #583132, thanks to Thomas Clavier <tom@tcweb.org>)
* Use logging to file, instead of syslog by default, add logrotate
script
* Handle MONIT_OPTS configuration variable in initscript to pass
command line arguments at startup, eg. -d 180 (Closes: #589895)
* Cleanup /etc/default/monit file (Closes: #612767)
* Rewrote initscript using lsb-helpers, add depends on lsb-base
[ Jeremiah C. Foster ]
* Minor typo correction for debian/copyright
[ Sergey B Kirpichev ]
* Create TODO.Debian file, add item
* Fix some spelling errors (added patch 06)
* Merge monitrc patches
* Drop patch/unpatch logic from debian/rules
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 14 Feb 2011 16:59:02 +0300
monit (1:5.2.3-1) unstable; urgency=low
* New maintainer (Closes: #593941)
* change patch system: dpatch -> quilt
* Switch to dpkg-source 3.0 (quilt) format
* New upstream release (5.2.3)
* Include ${misc:Depends} in depends section of debian/control
* Bump up Standards-Version (to 3.9.1)
* Add lintian override for permissions of etc/monit/monitrc
* Bump up debhelper compatibility version (to 5)
* Declare versioned dependency on debhelper
* move direct source tree changes in monitrc to 03_monitrc.patch
* add Homepage header to debian/control
* minor fix for debian/copyright: refer to new maintainer, new
homepage and GPL-3
-- Sergey B Kirpichev <skirpichev@gmail.com> Mon, 17 Jan 2011 16:12:19 +0300
monit (1:5.2.1-1) unstable; urgency=low
* New upstream release
-- Stefan Alfredsson <alfs@debian.org> Sat, 25 Sep 2010 22:03:04 +0200
monit (1:5.2-1) unstable; urgency=low
* New upstream release
-- Stefan Alfredsson <alfs@debian.org> Thu, 23 Sep 2010 22:47:48 +0200
monit (1:5.1.1-1) unstable; urgency=low
* New upstream release (Closes: #573777)
* Added configurable statefile in /etc/default/monit (Closes: #569616)
* Verbose info when syntax errors are detected at start (Closes: #427922)
* Sample configuration adjustments (Closes: #427924)
* Removed pam_securityserver in pam config (Closes: #574120)
* An include-directory is supplied (Closes: #249933)
-- Stefan Alfredsson <alfs@debian.org> Fri, 19 Mar 2010 22:40:11 +0100
monit (1:5.1-1) unstable; urgency=low
* New upstream release
-- Stefan Alfredsson <alfs@debian.org> Sun, 21 Feb 2010 11:06:34 +0100
monit (1:5.0.3-3) unstable; urgency=low
* Daemon poll interval moved to rc-file instead of defaults
(Closes: #541425)
* Package upgraded (Closes: 453248)
* Configuration snippets are included from /etc/monit/conf.d/*
(Closes: #296479)
-- Stefan Alfredsson <alfs@debian.org> Tue, 18 Aug 2009 22:49:13 +0200
monit (1:5.0.3-2) unstable; urgency=low
* inet6 and getaddr() fix (Thanks to Michael Stapelberg!)
(Closes: #541139)
-- Stefan Alfredsson <alfs@debian.org> Wed, 12 Aug 2009 07:46:19 +0200
monit (1:5.0.3-1) unstable; urgency=low
* New upstream release
* CPU-count fix in upstream release (Closes: #517816)
* Full eventqueue bug fixed in upstream release (Closes: #514709)
* Non-md5sum password bug fix by upstream (Closes: #474009)
* Uses unique message id's (Closes: #498346)
* Typo in "monit status" fixed (Closes: #506923)
* New format of debian watch file (Closes: #529128)
* Enabled PAM functionality
-- Stefan Alfredsson <alfs@debian.org> Sat, 08 Aug 2009 10:21:37 +0200
monit (1:4.10.1-4) unstable; urgency=low
* Patch for config file location was not applied (Closes: #479357)
(thanks to DVZ-Team <dv-zentrum@fh-giessen.de>)
* The relocation patch created an unneccessary "file.c.orig", this
was removed from the patch.
-- Stefan Alfredsson <alfs@debian.org> Sun, 24 Aug 2008 23:44:46 +0000
monit (1:4.10.1-3) unstable; urgency=low
* SSL enabled as upstream provided GPL/OpenSSL
license exception (Closes: #466821)
-- Stefan Alfredsson <alfs@debian.org> Fri, 22 Feb 2008 07:25:01 +0100
monit (1:4.10.1-2) unstable; urgency=low
* Added build-dependency on dpatch (Closes: #463469)
-- Stefan Alfredsson <alfs@debian.org> Thu, 31 Jan 2008 22:22:59 +0100
monit (1:4.10.1-1) unstable; urgency=low
* New upstream release (Closes: #453248)
* Upstream has fixed pid testing since v4.8 (Closes: #364844)
* Event queue segfault problem patched by upstream (Closes: #399027)
* HTTP segfault patched by upstream (Closes: #433164)
* Added LSB formatted dependency to init-script (Closes: #460299)
* Removed bashism echo -e in init-script (Closes: #411886)
-- Stefan Alfredsson <alfs@debian.org> Tue, 29 Jan 2008 21:36:33 +0100
monit (1:4.9-1) unstable; urgency=low
* New upstream release
* Updated init-script to use printf instead of echo -e (Closes: #411886)
* Removed LFS patch because its integrated by upstream
-- Stefan Alfredsson <alfs@debian.org> Wed, 25 Jul 2007 00:05:35 +0200
monit (1:4.8.1-2.1) unstable; urgency=medium
* Non-maintainer upload.
* monit-lfs.patch: Add LFS support; patch adapted from upstream CVS by
Michael Mende. (Closes: #395164)
* Build-depend on automake and set some magical cdbs option to enable
re-automaking, as monit-lfs.patch touches configure.ac.
-- Steinar H. Gunderson <sesse@debian.org> Mon, 13 Nov 2006 13:38:47 +0100
monit (1:4.8.1-2) unstable; urgency=low
* Wait for daemon to stop before restart (Closes: #368700)
-- Stefan Alfredsson <alfs@debian.org> Wed, 24 May 2006 14:47:01 +0200
monit (1:4.8.1-1) unstable; urgency=low
* New upstream release
* AMD64 bugfix integrated in upstream (Closes: #367341) -- however
there may be additional issues with starting scripts. Please open
a new bug if this is the case.
-- Stefan Alfredsson <alfs@debian.org> Wed, 17 May 2006 23:50:46 +0200
monit (1:4.8-2) unstable; urgency=low
* Applied patch for AMD64 bug (hopefully solving Bug#367341)
-- Stefan Alfredsson <alfs@debian.org> Tue, 16 May 2006 07:04:58 +0200
monit (1:4.8-1) unstable; urgency=low
* New upstream release (Closes: #366860)
* Priority logging implemented by upstream (Closes: #353758)
-- Stefan Alfredsson <alfs@debian.org> Fri, 12 May 2006 07:30:58 +0200
monit (1:4.7-1) unstable; urgency=low
* New upstream release
* Applied NTP leap indicator patch (Closes: #352065) - should be
removed for next upstream release as they've embraced it.
-- Stefan Alfredsson <alfs@debian.org> Mon, 27 Feb 2006 23:35:16 +0100
monit (1:4.6-1) unstable; urgency=low
* New upstream release (Closes: #306259, #308369, #315638)
-- Stefan Alfredsson <alfs@debian.org> Fri, 11 Nov 2005 21:04:32 +0100
monit (1:4.5-1) unstable; urgency=low
* New upstream release (Closes: #303100)
* File 'files.c' renamed, causing a patch to fail. Patch patched to
use the new name 'file.c'
-- Stefan Alfredsson <alfs@debian.org> Tue, 5 Apr 2005 16:38:16 +0200
monit (1:4.4-4) unstable; urgency=low
* Updated to new standards-version
-- Stefan Alfredsson <alfs@debian.org> Sun, 27 Mar 2005 23:30:01 +0200
monit (1:4.4-3) unstable; urgency=low
* Handles race condition for slow-to-start processes, see README.Debian
(Contributed by David Greaves <david@dgreaves.com>)
-- Stefan Alfredsson <alfs@debian.org> Mon, 14 Mar 2005 18:24:22 +0100
monit (1:4.4-2) unstable; urgency=low
* Moved from priority extra to optional
* Removed coreutils dependency since its part of base and required (and is
thus installed).
* Removed stat dependency alltogether, sets correct perms instead
* init-script now references $CONFIG instead of /etc/monit/monitrc in
various places.
* Now configures with --without-accurate-mem-calcs (Closes: #298045)
-- Stefan Alfredsson <alfs@debian.org> Tue, 1 Mar 2005 12:23:36 +0100
monit (1:4.4-1) unstable; urgency=low
* New maintainer (Stefan Alfredsson, adoption agreed on IRC channel #kuf)
* New upstream release
* AMD64 compiles are fixed by upstream (please verify) (Closes: #287659)
* Added dependency on 'coreutils' because of stat-usage (Closes: #247226)
* Syntax checking from initscript, thanks to admin@cs.montana.edu
(Closes: #258148)
* Fixed spelling (Closes: #268530, #277252)
* buildd logs indicate good arm/ppc/s390 builds (Closes: #169439)
-- Stefan Alfredsson <alfs@debian.org> Mon, 28 Feb 2005 12:26:38 +0100
monit (1:4.2.1-2) unstable; urgency=low
* Changed defunct location of state file to /var/lib/monit (Closes:#231140)
* Removed old example monitrc
* Added examples from upstream
* Added README.SSL
* Added UPGRADE.txt
* Added doc/monit.html manual
* Changed /etc/monitrc references to /etc/monit/monitrc (Closes:#244646)
-- Fredrik Steen <stone@debian.org> Tue, 10 Aug 2004 12:39:29 +0200
monit (1:4.2.1-1) unstable; urgency=high
* New upstream release with security fix (Closes:#242515)
-- Fredrik Steen <stone@debian.org> Tue, 13 Apr 2004 15:34:54 +0200
monit (1:4.1.1-1) unstable; urgency=low
* New upstream release Closes:#222303
* Security update: There exists security vulnerabilites in the 4.0 version
of monit HTTP interface. This release fixes this.
* Some changes to init.d script to not exit with 1 when permissions
on monitrc is wrong. (breaks when removing the package)
* Fixed installation permissions on configuration file. Closes:#173348
* Added CHECK_INTERVAL configurable variable to /etc/default/monit
* This upload makes it easier to backport to woody because of change
of "stat" syntax. Closes:#198130
-- Fredrik Steen <stone@debian.org> Wed, 26 Nov 2003 13:12:08 +0100
monit (1:4.0-2) experimental; urgency=low
* Updated monit package to use cdbs
-- Fredrik Steen <stone@debian.org> Tue, 21 Oct 2003 13:34:31 +0200
monit (1:4.0-1) experimental; urgency=low
* New upstream release
* Patched original source for new location of monitrc (in
/etc/monit/monitrc)
* Added stat line in init.d script making it easier for backports of monit
to woody. (Closes:#198130)
* Now compiled with SSL-support (LICENSE now permits linking with OpenSSL)
* The startup is now denied via /etc/default/monit configuration.
-- Fredrik Steen <stone@debian.org> Wed, 24 Sep 2003 15:46:31 +0200
monit (1:3.2-1) unstable; urgency=low
* New upstream release
* Now changing permission on configfile when installing/configuring
- (Closes:#173348)
* This relase has a new license which grant linking with OpenSSL.
- Message-ID: <m2znmhrzzk.fsf@tildeslash.com>
-- Fredrik Steen <stone@debian.org> Tue, 22 Apr 2003 10:14:19 +0200
monit (1:3.1-1) unstable; urgency=low
* New upstream release
* Disabled beta SSL support. (Need to check the legal stuff)
-- Fredrik Steen <stone@debian.org> Wed, 15 Jan 2003 10:26:12 +0100
monit (1:3.0-2) unstable; urgency=low
* Check implemented in /etc/init.d/monit for checking permissions
on configfile /etc/monit/monitrc, Upstream will probably make all
error messages go to syslog and this is not needed anymore.
Unfortunately the startup messages of monit is too chatty
until that is fixed upstream the need to redirect stderr,stdout
to devnull from init-script is still needed. (Closes:#173348)
* /etc/init.d/monit is now a conffile.
* No need for conffiles file when using debhelper 3 or greater.
-- Fredrik Steen <stone@debian.org> Tue, 17 Dec 2002 13:09:02 +0100
monit (1:3.0-1) unstable; urgency=low
* New upstream release (Closes:#166058)
* Changed permission on configfile /etc/monit/monitrc
-- Fredrik Steen <stone@debian.org> Tue, 29 Oct 2002 16:09:44 +0100
monit (1:2.5.1-3) unstable; urgency=low
* Fixes the old bug wich made monit start/stop to
early/late (#158388)
-- Fredrik Steen <stone@debian.org> Wed, 16 Oct 2002 12:14:21 +0200
monit (1:2.5.1-2) unstable; urgency=low
* Fixed dumb package bug changed clean target config to do a
distclean instead of clean Closes:#159295
* Changed example monitrc
-- Fredrik Steen <stone@debian.org> Mon, 2 Sep 2002 15:51:05 +0200
monit (1:2.5.1-1) unstable; urgency=low
* New upstram release
* Upstream now do correct rfc 821 envelopes Closes:#153520
* Controlfiles updated so monit will start late and stop early in the
init-process Closes:#158388, thanks to Mark Ferlatte.
* Updated Standards-Version.
* Fixed the "restart" target in monit init.d script.
-- Fredrik Steen <stone@debian.org> Tue, 27 Aug 2002 18:59:23 +0200
monit (2.5-2) unstable; urgency=low
* Spelling error in init-script fixed.
-- Fredrik Steen <stone@debian.org> Fri, 16 Aug 2002 15:05:40 +0200
monit (2.5-1) unstable; urgency=low
* New upstream release
* TODO removed from upstream
* Spelling
-- Fredrik Steen <stone@debian.org> Thu, 18 Jul 2002 18:05:15 +0200
monit (2.4-1) unstable; urgency=low
* New upstream release
* FAQ changed to FAQ.txt upstream
* Upload to Debian Closes:#147642
-- Fredrik Steen <stone@debian.org> Wed, 29 May 2002 09:04:50 +0200
monit (2.3-2) unstable; urgency=low
* fixed /etc/init.d/monit
* Added example monitrc
* Addedd missing build-dep on flex and byacc
-- Fredrik Steen <stone@debian.org> Tue, 21 May 2002 13:48:18 +0200
monit (2.3-1) unstable; urgency=low
* Initial Release.
-- Fredrik Steen <stone@debian.org> Tue, 21 May 2002 09:52:55 +0200
|