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
|
heartbeat (1:3.0.6-11+deb11u1) bullseye; urgency=medium
* Use tmpfiles.d to create /run/heartbeat (Closes: #1002037)
-- Valentin Vidic <vvidic@debian.org> Mon, 20 Dec 2021 23:51:42 +0100
heartbeat (1:3.0.6-11) unstable; urgency=medium
[ Debian Janitor ]
* Drop no longer supported add-log-mailing-address setting from
debian/changelog.
* Bump debhelper from old 11 to 12.
* Set debhelper-compat version in Build-Depends.
* Fix misspelling of Close => Closes.
* Fix day-of-week for changelog entry 0.4.9.0l-1.
[ Valentin Vidic ]
* Enable Salsa CI
* Use debhelper 13
* Try to fix unreproducible ping timeout option
* Debug reprotest failure with ping timeout option
* Use -w1 as default in case ping does not work
* Use Standards-Version 4.5.1
-- Valentin Vidic <vvidic@debian.org> Wed, 20 Jan 2021 21:59:42 +0100
heartbeat (1:3.0.6-10) unstable; urgency=medium
[ Rafael David Tinoco ]
* Force use python3 (Closes: #883150) [Dimitri John Ledkov]
[ Valentin Vidic ]
* Use libsensors-dev in Build-Depends (Closes: #917438)
-- Valentin Vidic <vvidic@debian.org> Mon, 18 Nov 2019 21:51:50 +0100
heartbeat (1:3.0.6-9) unstable; urgency=medium
* Fix FTBR on merged-usr vs non-merged systems (Closes: #915312)
* Update my email in Uploaders
* Update Standards-Version to 4.2.1
* Add Build-Depends-Package to libheartbeat2.symbols
* Use /run instead of /var/run
-- Valentin Vidic <vvidic@debian.org> Sun, 09 Dec 2018 14:59:17 +0100
heartbeat (1:3.0.6-8) unstable; urgency=medium
* Drop unused patch fix-ftbfs-lp1188428.patch
* Update Vcs URLs to use salsa
* Update Standards-Version to 4.1.4
* Remove unused variables from debian/rules
* Enable hardening for binaries
* Strip static libraries
* Replace Conflicts with Breaks
* Fix spelling errors reported by lintian
* Add symbols file for libheartbeat2
* Add missing patch descriptions
* Convert debian/copyright to DEP-3 format
* Add Documentation to systemd service
* Include logcheck ignore file (Closes: #564063)
-- Valentin Vidic <Valentin.Vidic@CARNet.hr> Tue, 01 May 2018 20:00:13 +0200
heartbeat (1:3.0.6-7) unstable; urgency=medium
[ Christoph Berg ]
* Remove myself from Uploaders
[ Valentin Vidic ]
* d/t/heartbeat: pick only one test device (Closes: #883061)
* Create /var/run/resource-agents in postinst (Closes: #883527)
* Update Standards-Version to 4.1.3
* Skip installing drbd files on kfreebsd
* Cleanup trailing spaces in debian/changelog
* Cleanup trailing spaces in debian/rules
* Switch to debhelper v11
-- Valentin Vidic <Valentin.Vidic@CARNet.hr> Fri, 05 Jan 2018 10:41:11 +0100
heartbeat (1:3.0.6-6) unstable; urgency=medium
* Replace Depends on iproute with iproute2 (Closes: #862850)
* Drop Depends on libcurl4-openssl-dev (Closes: #810977)
* Prefer gawk instead of mawk (Closes: #647174)
* Update debhelper version to 10
* Ignore missing manpage for cl_respawn
* Update Standards-Version to 4.0.0
* Clean autogenerated files
* Add patch for portblock resource agent (Closes: #538987)
* Make iproute2 a linux-any dependency
* Start heartbeat after drbd (Closes: #537982)
* Add package test using IPaddr2
-- Valentin Vidic <Valentin.Vidic@CARNet.hr> Sat, 26 Aug 2017 17:02:04 +0200
heartbeat (1:3.0.6-5) unstable; urgency=medium
* Compile python modules in postinst
* Add Valentin Vidic to Uploaders.
-- Valentin Vidic <Valentin.Vidic@CARNet.hr> Mon, 23 Jan 2017 11:24:30 +0100
heartbeat (1:3.0.6-4) unstable; urgency=medium
* Team upload.
* Add iputils-ping and ping to (Build-)Depends.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 11 Jan 2017 11:50:39 +0100
heartbeat (1:3.0.6-3) unstable; urgency=medium
* Remove B-D on transitional libcluster-glue-dev package.
* Install heartbeat.service instead of trying heartneat.service.
* Update Uploaders list.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 07 Apr 2016 13:09:28 +0200
heartbeat (1:3.0.6-2) unstable; urgency=medium
* Build-Depends: resource-agents instead of -dev.
* Update Vcs URLs.
-- Christoph Berg <myon@debian.org> Fri, 05 Feb 2016 23:22:37 +0100
heartbeat (1:3.0.6-1) unstable; urgency=medium
* New upstream release
* improved interoperability with pacemaker (>= 1.1.12)
* we are now systemd aware
-- Lars Ellenberg <lars.ellenberg@linbit.com> Mon, 09 Feb 2015 17:01:31 +0100
heartbeat (1:3.0.5+hg12629-1.2) unstable; urgency=medium
* Non-maintainer upload.
* Check for libtoolize rather than libtool. Closes: #761759
-- Johannes Schauer <j.schauer@email.de> Tue, 07 Oct 2014 22:26:43 +0200
heartbeat (1:3.0.5+hg12629-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Rebuild against GnuTLS v3. Closes: #753096
-- Andreas Metzler <ametzler@debian.org> Sat, 23 Aug 2014 19:21:44 +0200
heartbeat (1:3.0.5+hg12629-1) unstable; urgency=medium
* New upstream checkout
* debian/patches/fix-shlibdeps.patch: Drop, as this is fixed in the
original upstream code now
* debian/patches/heartbeat-init-script.patch: Make the heartbeat init
script standard compliant
* debian/control: Bump Standards-Version to 3.9.5
-- Martin Loschwitz <madkiss@debian.org> Fri, 21 Feb 2014 13:32:22 +0000
heartbeat (1:3.0.5-3.2) unstable; urgency=low
* Non-maintainer upload.
* Fix "FTBFS: ucast.c:468:6: error: conflicting types for 'i'":
add patch fix-ftbfs-lp1188428.patch from Ubuntu / Andres Rodriguez:
- Fix FTBFS by renaming a duplicated var name 'i' (struct and int), for
the struct.
(Closes: #713662, LP: #1188428)
-- gregor herrmann <gregoa@debian.org> Wed, 13 Nov 2013 21:28:58 +0100
heartbeat (1:3.0.5-3.1) unstable; urgency=low
* Non-maintainer upload.
* Complete transition to dh_python2 (Closes: #616841).
-- Luca Falavigna <dktrkranz@debian.org> Thu, 30 May 2013 20:19:40 +0200
heartbeat (1:3.0.5-3) unstable; urgency=low
* Adopted numerous changes from the Ubuntu packages, implemented by Andres
Rodriguez to make co-maintaining these packages in Ubuntu and Debian a
bit easier.
* Updated the Standards-Version to 3.9.2, no changes necessary.
-- Martin Loschwitz <madkiss@debian.org> Thu, 20 Oct 2011 13:22:59 +0000
heartbeat (1:3.0.5-2) unstable; urgency=low
* Fix the dh_python2 call in debian/rules to avoid python madness
-- Martin Loschwitz <madkiss@debian.org> Thu, 25 Aug 2011 07:24:12 +0000
heartbeat (1:3.0.5-1) unstable; urgency=low
* New upstream version (3.0.5)
* Change dependency from cluster-agents to resource-agents
* Build-Depend on resource-agents-dev
-- Martin Loschwitz <madkiss@debian.org> Wed, 24 Aug 2011 11:09:08 +0000
heartbeat (1:3.0.4-1.1) unstable; urgency=low
* Non-maintainer upload.
* Remove references to other libraries from dependency_libs field
Closes: #619553
-- Luk Claes <luk@debian.org> Mon, 30 May 2011 08:01:35 +0200
heartbeat (1:3.0.4-1) unstable; urgency=low
* New Upstream
Closes: 487167
Closes: 582874
* Update standards version from 3.8.4 to 3.9.1
* Added Homepage to debian/control
Closes: 594031
* Depend on new cluster-agent library packages
Closes: 593321
-- Simon Horman <horms@debian.org> Thu, 16 Dec 2010 22:53:53 +0900
heartbeat (1:3.0.3-2) unstable; urgency=low
* Add build dependency on docbook-xml.
-- Frederik Schüler <fs@debian.org> Mon, 03 May 2010 20:09:52 +0200
heartbeat (1:3.0.3-1) unstable; urgency=low
* New upstream version 3.0.3
* Disable strict warnings (Closes: #577550)
-- Martin Loschwitz <madkiss@debian.org> Fri, 16 Apr 2010 07:13:15 +0000
heartbeat (1:3.0.2+hg12555-1) unstable; urgency=low
* New Mercurial checkout
* Adopt patch by Florian Haas to delete libnet build dependency
-- Martin Loschwitz <madkiss@debian.org> Tue, 30 Mar 2010 07:40:29 +0000
heartbeat (1:3.0.2+hg12547-2) unstable; urgency=low
[ Martin Loschwitz ]
* Re-add dh_installinit but delete heartbeat.init
* Deleted some ancient files from debian-subdirectory
-- Martin Loschwitz <madkiss@debian.org> Wed, 03 Mar 2010 08:49:00 +0100
heartbeat (1:3.0.2+hg12547-1) unstable; urgency=low
[ Martin Loschwitz ]
* Update to latest HG version
* New copyright-file by Ante Karamatic
* Use heartbeat standard init script instead of the old one
-- Martin Loschwitz <madkiss@debian.org> Tue, 02 Mar 2010 17:11:00 +0100
heartbeat (1:3.0.2-2) UNRELEASED; urgency=low
[ Simon Horman ]
* Build-depend on libsensors4-dev | libsensors-dev.
* remove ldconfig from heartbeat.{postrm,postinst}.
[ Frederik Schüler ]
* Add myself to uploaders.
* Drop duplicate priority and section fields from debian/control.
* Bump standards version to 3.8.4, no changes needed.
* Switch to debhelper 7.
* Switch to source version 3.0 "quilt", drop dpatch dependency.
* Use dh_prep instead of dh_clean -k.
* Depend on cluster-agents.
-- Frederik Schüler <fs@debian.org> Fri, 26 Feb 2010 19:20:44 +0100
heartbeat (1:3.0.2-1) unstable; urgency=low
* New upstream release.
-- Martin Loschwitz <madkiss@debian.org> Wed, 03 Feb 2010 08:05:00 +0100
heartbeat (1:3.0.2~rc2+hg20100127-0test1) unstable; urgency=low
* Incorporating a whole lot of change introduced by Ante Karamatic
from Ubuntu; thank you very much!
* New heartbeat source checkout
-- Martin Loschwitz <madkiss@debian.org> Wed, 27 Jan 2010 13:11:00 +0200
heartbeat (3.0.2~rc2-0ubuntu0ppa3) lucid; urgency=low
* Drop hard dep on pacemaker for heartbet; moved to Recommends
-- Ante Karamatic <ivoks@ubuntu.com> Wed, 06 Jan 2010 19:41:16 +0000
heartbeat (3.0.2~rc2-0ubuntu0ppa2) lucid; urgency=low
* debian/heartbeat.install:
- follow upstream changes
* debian/control:
- added dpatch, docbook-xsl and xsltproc to build depends
* debian/rules:
- (un)apply patches
* debian/patches/01_docbook_path.dpatch:
- use local docbook-xsl
-- Ante Karamatic <ivoks@ubuntu.com> Wed, 06 Jan 2010 11:33:21 +0000
heartbeat (3.0.2~rc2-0ubuntu0ppa1) lucid; urgency=low
* New upstream release
-- Ante Karamatic <ivoks@ubuntu.com> Wed, 06 Jan 2010 10:57:33 +0000
heartbeat (3.0.beta1+hg20091102-2~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
-- Martin Loschwitz <madkiss@debian.org> Tue, 03 Nov 2009 08:37:01 +0000
heartbeat (3.0.beta1+hg20091102-2) unstable; urgency=low
* Added pacemaker-dependency to heartbeat as heartbeat would be
pretty useless otherwise.
-- Martin Loschwitz <madkiss@debian.org> Tue, 03 Nov 2009 08:04:15 +0000
heartbeat (3.0.beta1+hg20091102-1) unstable; urgency=low
[ Martin Loschwitz ]
* New upstream checkout
* heartbeat: Provide cluster-messaging-framework
-- Martin Loschwitz <madkiss@debian.org> Mon, 02 Nov 2009 13:22:43 +0000
heartbeat (3.0.beta1+hg20091012-1) unstable; urgency=low
[ Martin Loschwitz ]
* New upstream version
-- Martin Loschwitz <madkiss@debian.org> Mon, 12 Oct 2009 14:37:00 +0200
heartbeat (3.0.beta1+hg20090915-1) unstable; urgency=low
[ Martin Loschwitz ]
* Removed huge parts of debian/ due to upstream package split up
-- Martin Loschwitz <madkiss@debian.org> Tue, 15 Sep 2009 09:53:00 +0200
heartbeat (2.99.2+sles11r9-5) unstable; urgency=low
[ Martin Loschwitz ]
* fix binary-arch/binary-indep handling in debian/rules, REALLY fixing the
duplicate file problem this time.
-- Martin Loschwitz <madkiss@debian.org> Tue, 02 Jun 2009 11:45:00 +0200
heartbeat (2.99.2+sles11r9-4) unstable; urgency=low
[ Martin Loschwitz ]
* Fix bug introduced in -3 where some LRM regression documentation would
be both in heartbeat and in heartbeat-common
-- Martin Loschwitz <madkiss@debian.org> Mon, 01 Jun 2009 18:42:00 +0200
heartbeat (2.99.2+sles11r9-3) experimental; urgency=low
[ Martin Loschwitz ]
* More tweaking for the heartbeat/heartbeat-common split, based
on the advise by Andrew Beekhof (Thank you very much!)
-- Martin Loschwitz <madkiss@debian.org> Wed, 27 May 2009 13:16:00 +0200
heartbeat (2.99.2+sles11r9-2) experimental; urgency=low
[ Martin Loschwitz ]
* include send_arp as things might get troublesome otherwise
-- Martin Loschwitz <madkiss@debian.org> Wed, 27 May 2009 00:00:00 +0200
heartbeat (2.99.2+sles11r9-1) experimental; urgency=low
[ Martin Loschwitz ]
* Updated to latest upstream version
-- Martin Loschwitz <madkiss@debian.org> Fri, 22 May 2009 08:51:00 +0200
heartbeat (2.99.2+sles11r7-1) experimental; urgency=low
[ Martin Loschwitz ]
* Redid package structure, adding the following new packages:
libheartbeat2
libheartbeat2-dev
heartbeat-common
heartbeat-common-dev
This makes the packages as compatible as possible with the according
SLES packages; additionally, it allows to have a nearly openais-only
pacemaker.
* Changed Maintainer to the Debian HA-Maintainers
* New Upstream version
-- Martin Loschwitz <madkiss@debian.org> Sat, 21 Mar 2009 00:04:00 +0100
heartbeat (2.99.2-1) experimental; urgency=low
[ Anibal Monsalve Salazar ]
* New Upstream
* Add myself to uploaders
[ Simon Horman ]
* Change distribution from sid to experimental
* Add conflicts with pacemaker-dev (<< 1.0.1-1) to heartbeat-dev
as older versions of pacemaker-dev need cl_malloc.h to be present
in heartbeat-dev
* Make sure configure and py-compile are executable if present
* Don't run configure for clean targets.
This causes multiple builds of the tree which takes a long time.
Upstream commit:
"Medium (LF 2018): Debian: build: revert changeset ddfb560ba135"
* The correct include path for termio.h on Debian is <termio.h>
not <sys/termio.h> - This needs to be fixed more cleanly upstream.
* heartbeat dependancy on mawk
With this change heartbeat now depends on both gawk and mawk.
Clearly there is roome for improvment here. I will try and
get things cleaned-up in upstream and unstable.
(See: #512403)
-- Simon Horman <horms@debian.org> Fri, 30 Jan 2009 16:16:45 +0900
heartbeat (2.1.4-3) unstable; urgency=high
* heartbeat-gui: depend on uuid-runtime rather than
uuid-runtime | e2fsprogs as uuidgen, which is needed by hb_gui, is
included in uuid-runtime but not e2fsprogs on Lenny. That is, a system
(default install I think) that has e2fsprogs installed but not
uuid-runtime would satisfy the old dependancy, but hb_gui would not
work correctly.
I beleive that the reason for the alternate dependancy was to allow the
package to be built for both sarge and newer systems. Sarge being the
stable release. But when Lenny becomes the stable release most of the
motivation for this will be removed.
If this becomes a problem then a versioned dependancy could be
intorduced. Based on the e2fsprogs ChangeLog I believe that should be
as follows. Howerver, I have decided to take the simpler single
dependancy option for now.
uuid-runtime | e2fsprogs (< 1.40.4-1)
(closes: #503177)
-- Simon Horman <horms@debian.org> Fri, 16 Jan 2009 13:03:55 +1100
heartbeat (2.1.4-2) unstable; urgency=low
* Dependancy on uuid-runtime for heartbeat-gui
Unfortuantely the 2.1.3-7 of this fix made it into upstream 2.1.4
but not the 2.1.3-8 version of the fix. This should rectify this
problem, again...
Patch: medium_debian_uuid-duntime__e2fsprogs_dependancy_for_heartbeat-gui.patch
Upstream-status: Pending
(closes: #484868)
* Dependancy on ${shlibs:Depends} for heartbeat-gui
As per lintian error "missing-dependency-on-libc"
* Pass --enable-libc-malloc to configure.
--enable-glib-malloc was a typo.
Upstream-satatus: Pending
* Don't ignore errors in clean target of debian/rules
As per lintian warning "debian-rules-ignores-make-clean-error"
-- Simon Horman <horms@debian.org> Fri, 29 Aug 2008 04:34:10 +0000
heartbeat (2.1.4-1) unstable; urgency=low
* New Upstream
-- Simon Horman <horms@debian.org> Thu, 07 Aug 2008 15:57:52 +1000
heartbeat (2.1.3-8) unstable; urgency=low
* The dependancy on uuid-runtime added in 2.1.3-7 was not a build dependacy,
it was a regular dependancy for heartbeat. However, it should have been
a dependancy for heartbeat-gui.
(closes: #484868)
* Update standards version from 3.7.3 to 3.8.0
* Remove bashisms from character clases
Patch: dash-case.patch
Upsteram-Status: commit 5aea0e314a77c15437765593a7b4f3f13c829f83
"Low: Remove bashisms from character classes"
Ubuntu bug #248737
-- Simon Horman <horms@debian.org> Thu, 07 Aug 2008 15:46:35 +1000
heartbeat (2.1.3-7) unstable; urgency=low
* Remove some bashisms from ocf, xen and filesystem plugins
Thanks to Luca Falavigna
Patch: remove-some-bashisms-from-the-ocf-xen-and-filesystem-plugins.patch
Upstream-Status: commit 055ffbfe69b2b3810f9c71c491c30684fd67b669
"Remove some Bashisms from the OCF Xen and Filesystem
resources"
Note that upstream commit ed0972c7aa43699ae2ec31f68cac3b9cbcc5d5c5
"removing bashisms from stonith external plugins"
is not required as it applies to changes made after 2.1.3. At this
point no post-2.1.3 packages have been made available in Debian.
(closes: #487167)
* Remove some bashisms from STONITHBasicSanityCheck and BasicSanityCheck
Patch: remove-bashisms-from-STONITHDBasicSanityCheck.patch
Upstream-Status: submitted to pocemaker mailing list
as this code has move from heartbeat to pacemaker
Patch: use-mktemp.patch
Upstream-Status: commit 82e3625e0198af52eb22ef8a42cebf5050ab69e3
"Medium: safely create tempoary files"
(closes: #489607)
* dopd: fix basic failover; fix hb message corruption by fprintf(stderr)
Patch: fix-basic-failover-fix-hb-message-corruption-by-fprintf.patch
Upstream-Status: commit 47f60bebe7b25abd88ea7b5488e66dfe187416ae
"dopd: fix basic failover; fix hb message corruption by
fprintf(stderr)"
(closes: #486071)
* safely handle $RANDOM being empty, as the case under dash
Patch: cope-with-empty-random.patch
Upstream-Status: commit 597cfd99deee5128d77022c53112dfc1f8686889
"Low: Cope with empty $RANDOM"
* Update series to allow using the "3.0 (quilt)" package format
Thanks to Raphael Hertzog
Upstream-Status: commit 70e9df3f594d73efe4336c9f74a689d6955abac8
"Debian: Use quilt for patching which is supported by dpkg"
(closes: #485103)
* Add build dependancy on uuid-runtime
Thanks to Joshua Hutchins
Upstream-Status: commit 597cfd99deee5128d77022c53112dfc1f8686889
"Medium: Debian: Build dependancy on uuid-runtime"
(closes: #484868)
-- Simon Horman <horms@debian.org> Thu, 07 Aug 2008 00:55:37 +0000
heartbeat (2.1.3-6) unstable; urgency=low
* Run confgure before clean in debian/rules to handle the
bizzare case where targets exist but Makefiles don't -
This is actually the case in 2.1.3-5, I'm not sure when or
how this occured.
Thanks to Andrew Suffield for pointing this out
(closes: #476700)
* Recompile using a version of debhelper that doesn't feature
a bug whereby manpages aren't compressed.
(closes: #475667)
-- Simon Horman <horms@debian.org> Wed, 23 Apr 2008 05:18:45 +0000
heartbeat (2.1.3-5) unstable; urgency=high
* ldirectord: Define $rows in check_sql()
Upstream-Status: commit 600697207ff573913787d78ee56a1c6e458f08eb
Patch: ldirectord-rows.patch
(closes: #472663)
-- Simon Horman <horms@debian.org> Wed, 26 Mar 2008 11:52:35 +0900
heartbeat (2.1.3-4) unstable; urgency=low
* Add LSB tags to ldirectord init script
Upstream-Status: commit 34212491d1e069d99c0339e0479145af5d480711
Patch: ldirectord-init-lsb.patch
(closes: #469764)
-- Simon Horman <horms@debian.org> Fri, 07 Mar 2008 10:52:51 +0900
heartbeat (2.1.3-3) unstable; urgency=low
* Updated syslog related recommends
ldirectord: from: sysklogd | syslog-ng
to: rsyslog | system-log-daemon
(closes: #464011)
heartbeat: from: sysklogd | syslog-ng | system-log-daemon
to: rsyslog | system-log-daemon
* Remove bashisms in ocf-tester, hb_report and heartbeat's init script
Upstream-Status: commit 2b3a34dc4257b65761f1ba021623d59f15944ae5
(closes: #464985)
* ldirectord: allow sql select checks to work
Thanks to Geoff Harrison
Upstream-Staus: commit eaa43842608caf75552e9f755c91e35b7a2ff6d1
Patch: bashisms.patch
* ldirectord: clear memory config on reload
Thanks to Geoff Harrison
Upstream-Status: c01c9790d2b83f493a4aa5f86e1a5b1233d7daa2
Patch: ldirectord-clear-config-in-memory-on-reload.patch
* lrm: Don't list complted opperations as failed
Linux Foundation Bug #1822
http://developerbugs.linux-foundation.org/show_bug.cgi?id=1833
Upstream-Status: Pending
Patch: lrm-dont-revise-op_status.patch
-- Simon Horman <horms@debian.org> Mon, 18 Feb 2008 12:37:47 +0900
heartbeat (2.1.3-2) unstable; urgency=low
* Update standards version from 3.7.2 to 3.7.3
* Add should-start/stop $remote_fs to init script (closes: #459497)
* Add should-start/stop openhpid to init scrpt (see: #459497)
* Remove should-stop ntp to init script (see: #459497)
* Rebase tree against tarball - its almost as if the 2.1.3-1 upload
was based on another tree
- Update
+ /usr/lib/libpe_rules.so.1.0.0 to libpe_rules.so.2.0.0
+ /usr/lib/libpe_status.so.1.0.0 to libpe_status.so.2.0.0
- Move
+ /usr/lib/heartbeat/ha_logd.cf to /usr/share/doc/heartbeat/logd.cf
- Add
+ /usr/lib/heartbeat/utillib.sh
+ /usr/lib/ocf/resource.d/heartbeat/iscsi
+ /usr/lib/stonith/plugins/external/ibmrsa-telnet
+ /usr/lib/stonith/plugins/external/ipmi
+ /usr/include/clplumbing/cl_reboot.h
+ /usr/share/heartbeat/utillib.sh
+ /usr/share/doc/heartbeat/hb_report.html
+ /usr/share/doc/heartbeat/hb_report.txt
+ /usr/sbin/hb_report
+ /usr/sbin/ciblint
- A host of other changes as per the 2.1.3 changelog
* Add SphinxSearchDaemon OCF resource that was missing from the distribution
* Build notes:
- Unpacked tarball from linux-ha.org
- Applied changes detaile above
- Applied debian patches: ./debian/rules patch
- Affected changes to configure.in
+ Backed up libltdl.tar, haclient.zh_CN.mo
+ Ran ./ConfigureMe bootstrap to effect changes to configure.in
+ Removed symlinks created by ./ConfigureMe:
- autoconf, automake, autoheader
+ Restored libltdl.tar, haclient.zh_CN.mo
- Built package
-- Simon Horman <horms@debian.org> Tue, 08 Jan 2008 11:58:03 +0900
heartbeat (2.1.3-1) unstable; urgency=low
* New Upstream (closes: #457577)
* Add Debian patches that were missing in the tarball
* Add dependacy on to heartbeat gawk as it is required by
the OCF IPaddr resource (closes: #447932)
* Updated check to enable build of IPv6Addr
- hopefully this one can be merged upstream
- The old check was applied to configure.in but configure had not been
updated
(closes: #455255)
* Add a prerm to heartbeat-2 to remove stale .pyc files (closes: #455050)
* Add dependancy on libxml2-utils to hartbeat as the BasicSanityCheck
needs xmllint
* Use -common files in hbmgmtd's pam file (closes: #444371)
- Add dependancy on libpam-runtime (>= 0.76-14) to heartbeat to ensure
that common-* files exist
* Don't include .pyc and .pyo files in heartbeat package
- As per section 2.6 of the Debian Python Policy
* Add tomcat OCF module
* Build notes:
- Unpacked tarball from linux-ha.org
- Applied changes detaile above
- Applied debian patches: ./debian/rules patch
- Affected changes to configure.in
+ Backed up libltdl.tar, haclient.zh_CN.mo
+ Ran ./ConfigureMe bootstrap to effect changes to configure.in
+ Removed symlinks created by ./ConfigureMe:
- autoconf, automake, autoheader
+ Restored libltdl.tar, haclient.zh_CN.mo
- Built package
-- Simon Horman <horms@debian.org> Wed, 26 Dec 2007 11:07:17 +0900
heartbeat (2.1.2+hg.11310.702e4f418ca8-2) unstable; urgency=low
* Add patches in debian/patches/ which went missing in action somewhere
-- Simon Horman <horms@debian.org> Sat, 29 Sep 2007 11:16:33 +0900
heartbeat (2.1.2+hg.11310.702e4f418ca8-1) unstable; urgency=low
* New Upstream:
- Snapshot of: http://hg.linux-ha.org/dev/shortlog/702e4f418ca8
- See: http://www.gossamer-threads.com/lists/linuxha/users/42476
- Dowloaded: http://hg.linux-ha.org/dev/archive/obs-2.1.2-4.tar.bz2
- Ran ./ConfigureMe configure && make dist
- Used resulting tarball as orig.tar.gz for this release
- The downloaded STABLE-2.1.0.tar.bz2 could not be used as
bootstraping it to the point where the code could be built
resulted in changes that could not be represented in the diff.gz
- Added the contents of lrm/test/testcases/ from obs-2.1.2-4.tar.bz2.
These was not included in the tarball due to an error
in the Makefile.am in that directory which has subsequently
been fixed by http://hg.linux-ha.org/dev/shortlog/b0b696766097
- Added the files in lrm/test/ from obs-2.1.2-4.tar.bz2.
These was not included in the tarball due to an error
in the Makefile.am in that directory which has subsequently
been fixed by http://hg.linux-ha.org/dev/shortlog/7c31795636db and
http://hg.linux-ha.org/dev/shortlog/e7a4ddfa7cd6
(closes: #444278)
* Make package binMMU safe. Thanks to Lior Kaplan.
(closes: #435974)
* Remove ipmilan stonith module as it seems to be cronically broken
- Remove the build dependancy on libopenipmi-dev (>= 2.0.1) accordingly
* Add dependancy on libperl-dev as libperl is needed
(though I am not sure why)
* Remove duplicate changelog
(closes: #443163)
-- Simon Horman <horms@debian.org> Fri, 28 Sep 2007 12:27:58 +0900
heartbeat (2.1.2-1) unstable; urgency=low
* New Upstream
- Fix file relocation problems
(closes: #434829)
- Fix IPaddr's handling of CIDR netmasks
- Ran ./ConfigureMe bootstrap && make distclean &&
rm ltdl.m4 libtool.m4 autoconf automake autoheader
to effect changes made to configure.in
* Add openhpi stonith module
- Add build dependancy on libopenhpi-dev
- Add usr/lib/stonith/plugins/stonith2/bladehpi.so to heartbeat.files
* IPv6 configure check
- For the ipv6 check to work Debian ia64 currently needs to check
"sys/types.h", a patch went into the tree a while ago to fix this.
However, at the 11th hour a patch went into 2.1.2 to reverse this
change as it breaks the build on RHEL4. So for now, until a proper
fix is made, just reverse that change in Debian packages.
- Ran ./ConfigureMe bootstrap && make distclean &&
rm ltdl.m4 libtool.m4 autoconf automake autoheader
to effect changes made to configure.in
- Patch: ipv6-check.patch
-- Simon Horman <horms@debian.org> Tue, 31 Jul 2007 11:01:16 +0900
heartbeat (2.1.1-1) unstable; urgency=low
* New Upstream
* Remove merged patches
- README.config-heartbeat-2.patch
- README.config-heartbeat.patch
- ipaddr2-bashism.patch
- ipv6addr-21-char-devname.patch
- ipv6addr-find_if-overflow.patch
- ipv6addr-scanf-return.patch
- ldirectord-init.patch
- configure-sys-types.h.patch
* After unpacking apply patches and run autoconf to effect
changes to configure.in
* Update files included in heartbeat, heartbeat-dev and ldirectord packages
* Update rules file to reflect that /usr/lib/heartbeat/cts/README
has been moved to usr/share/heartbeat/cts/README.
This README is installed as /usr/share/doc/heartbeat/README.cts
-- Simon Horman <horms@debian.org> Wed, 25 Jul 2007 14:15:38 +0900
heartbeat (2.0.8-10) unstable; urgency=low
* Remove apparently bogus build-dependacy on modutils
Thanks to Russell Coker for spotting this.
A bug was subsequently filed as the result of some automated testing.
(closes: #432441)
* Build dependancy on libsnmp-dev rather than libsnmp10-dev | libsnmp-dev
as libsnmp10-dev does not seem to exist (any more?)
* Change heartbeat-gui's dependancy on heartbeat to a suggests,
as heartbat-gui can access heartbeat remotely
(closes: #430082)
-- Simon Horman <horms@debian.org> Thu, 19 Jul 2007 13:38:35 +0900
heartbeat (2.0.8-9) unstable; urgency=low
* Run autoconf so that the FTBFS on ia64 fix included in
2.0.8-8 actually takes effect. Bahh!
-- Simon Horman <horms@debian.org> Thu, 31 May 2007 19:37:43 +0900
heartbeat (2.0.8-8) unstable; urgency=low
* Use sys/types.h instead of asm/types.h when trying to detect
the preseance of linux/icmpv6.h. Resolves FTBFS on ia64
Patch: configure-sys-types.h.patch
* Remove linux-kernel-headers for ia64 added in 2.0.8-7 as
a) it didn't resolve the problem and b) the types.h change
above does.
* Use << instead of < for dependancy relations
* Add --enable-glib-malloc to configure's arguments
on advice from Andrew Beekhof
-- Simon Horman <horms@debian.org> Thu, 31 May 2007 18:26:10 +0900
heartbeat (2.0.8-7) unstable; urgency=low
* Add a (tempoary) build dependancy on linux-kernel-headers for ia64
to get around a curious autobuild problem.
See: http://lists.debian.org/debian-ia64/2007/05/msg00003.html
-- Simon Horman <horms@debian.org> Fri, 25 May 2007 16:07:22 +0900
heartbeat (2.0.8-5) unstable; urgency=low
* The heartbeat-2-dev.dirs and friends change in 2.0.8-4 closes
#424192, not #424053 (which is also fixed by a different change
in 2.0.8-4)
* Add missing dummy package for stonith
-- Simon Horman <horms@debian.org> Thu, 17 May 2007 15:43:55 +0900
heartbeat (2.0.8-4) unstable; urgency=low
* Create a Debian init script for ldirectord
Thanks to Ratiu Petru Iulius
Patch: ldirectord-init.patch
(closes: #391974)
* Documentation path of ldirectord should be /usr/share/doc/ldirectord,
not /usr/share/doc/ldirectord-2
* Change priority of ldirectord to extra to match the lowest priority
of any of its dependancies
* Add versioned conflicts on old pils and stonith packages to heartbeat and
heartbeat-dev, which include those old package's files.
(closes: #424053)
* Have the clean target of debian rules remove the following files that
are priovided by the orig.tar.gz - Debian packages can't delete files
- heartbeat-2-dev.dirs heartbeat-2-dev.files heartbeat-2.dirs
heartbeat-2.files heartbeat-2.postinst heartbeat-2.postrm
heartbeat-2.preinst ldirectord-2.files ldirectord-2.postinst
ldirectord-2.postrm
(closes: #424053)
-- Simon Horman <horms@debian.org> Wed, 16 May 2007 13:58:24 +0900
heartbeat (2.0.8-3) unstable; urgency=low
* Rename source package from heartbeat-2 to heartbeat.
Previously the heartbeat source package was used to package
up the 1.2.X series of releases, and heartebat-2 was used
for the newer 2.0.X series of releases. The idea being to offer
stable "heartbeat" packages when the 2.0.X stuff was all
new. It turns out that the 2.0.X tree has been at least as
stable as the 1.2.X tree for quite a while now, and the 1.2.X doesn't
get much attention any more, so there seems little advantage in
having the separate source packages, except perhaps to create confusion
and extra work.
* Update curl build dependancy for libcurl4
Thanks to Christian Marillat
(closes: #423655)
* 2.0.8 (and probably earilier) includes the corrected scsi command syntax
Thanks to Christoph Martin
(closes: #350586)
-- Simon Horman <horms@debian.org> Mon, 14 May 2007 12:13:03 +0900
heartbeat-2 (2.0.8-2) unstable; urgency=low
* Update build debendancy and rebuild against libsnmp10.
Somehow libsnmp9 has been removed from the distribution,
rendering heartbeat uninstallable.
Thanks to Steinar H. Gunderson
(closes: #422320)
* IPaddr2: Remove bashisms
Patch: ipaddr2-bashism.patch
Upstream: http://hg.linux-ha.org/dev/rev/165a9a897e3b
Thanks to Erich Schuebert
(closes: #420206)
* Fix up documentation location in /etc/ha.d/README.config
Thanks to Russell Coker
(closes: #418206)
* IPv6addr: Fix potential stack overflow in use of devname in scan_if
Patch: ipv6addr-21-char-devname.patch
Upstream: http://hg.linux-ha.org/dev/rev/37271ae7f117
* IPv6addr: Fix potential buffer overflow when a 128bit prefix is used
Patch: ipv6addr-find_if-overflow.patch
Upstream: http://hg.linux-ha.org/dev/rev/b4bc188b4ebe
* IPv6addr: Handle scanf failures in scan_if()
Patch: ipv6addr-scanf-return.patch
Upstream: http://hg.linux-ha.org/dev/rev/31d19acfd1b9
* Run autoconf to incoporate the chown-check-2.patch workaround
to allow the configure script to work under fakeroot.
I have no idea how this was not applied for 2.0.8-1 and yet
the build still worked.
* Change priority of ldirecord from optional to extra to
match the priority of its dependancies ipvsadm and libauthen-radius-perl
-- Simon Horman <horms@debian.org> Sat, 05 May 2007 13:36:36 +0900
heartbeat-2 (2.0.8-1) unstable; urgency=low
* New Upstream
Thanks to Peter Clapham for his assistance
* errata: CVE-2006-3121 was incorrectly refered to as CVE-2006-3821 in
the changelog for 2.0.6-2 and 2.0.7-1
* Dropped the following patches as they are now upstream
- ldirectord-1.141-emailalert-2-global.patch (introduced in 2.0.6-2)
* Remove alternate dependancy on netkit-ping as it is being removed
from Debian (closes: #383987)
-- Simon Horman <horms@debian.org> Tue, 30 Jan 2007 12:43:09 +0900
heartbeat-2 (2.0.7-2) unstable; urgency=low
* Add dependancy and build dependancy on psmisc for fuser
Thanks to Hans-Joachim Baader
(Closes: #400958)
* Acknowldge NMU by Roger Leigh (Closes: #383987)
-- Simon Horman <horms@debian.org> Thu, 30 Nov 2006 02:26:24 +0000
heartbeat-2 (2.0.7-1) unstable; urgency=low
* New Upstream
* Dropped the following patches as they are now upstream
- ldirectord-1.141-emailalert-1-quiet.patch (introduced in 2.0.6-2)
- ldirectord-1.141-readline_workaround.patch (introduced in 2.0.6-2)
- CVE-2006-3821.patch (introduced in 2.0.6-2)
-- Simon Horman <horms@debian.org> Mon, 14 Aug 2006 19:00:13 +0900
heartbeat-2 (2.0.6-2) unstable; urgency=high
* ldirectord-1.141-emailalert-1-quiet.patch
Don't send email alerts if the alert address is not configured
(closes: #378450)
* ldirectord-1.141-emailalert-2-global.patch
Allow emailalert and emailalertfreq directives to be global
as well as per-virtual service
* ldirectord-1.141-readline_workaround.patch
readline doesn't seem to return lines after Net::FTP
has been called, so split them up by hand.
* Added recommends iptables to heartbeat-2, as it is needed
for the portblock resource to function correctly
* Added /var/lib/heartbeat/pengine directory
(closes: #379071)
* Replace 02-chown-check.patch with chown-check-2.patch
- use the environement variable FAKED_MODE instead of FAKEROOTKEY to check
if code is runing in fakeroot. At some stage around fakeroot 1.5.10
FAKEROOTKEY disapeared. Ran autoconf manually to effect this change
after repatching.
- Updated 02-chown-check.patch: fix typos in comment
* CVE-2006-3821.patch
Fix remote denial of causes caused by insufficient bounds checking
on data read from the network.
CVE-2006-3821
* Python transition - http://wiki.debian.org/DebianPython/NewPolicy
(closes: #380842)
- Update build dependancy on debhelper from (>= 4.0.0) to (>= 5.0.37.2)
- Add dh_python call to debian/rules
- created debian/pycompat with contents of "2"
- heartebeat: deplaced depenancy on python with one on ${python:Depends}
- Added XB-Python-Version: ${python:Versions} to each package
- Replace build dependancy on python2.3-dev with one on python-dev
- Use python-central
+ Add build depends on python-central (>= 0.5)
+ Add dh_pycentral call right before dh_python in debian/rules
+ Add XS-Python-Version: current in the source stanza of debian/control
-- Simon Horman <horms@debian.org> Tue, 8 Aug 2006 18:49:00 +0900
heartbeat-2 (2.0.5-8) unstable; urgency=low
* ldirectord-2: Add missing dependancy on libmailtools-perl
(Mail::Send)
(closes: #376722)
* ldirectord-2: Add missing dependancy on libnet-perl
(Net::SMTP, Net::FTP, Net::POP3)
* ldirectord-2: Remove unneccesary dependancy on adduser
* Automake transition: http://wiki.debian.org/AutomakeTransition
- Remove unneccesary build-depends on automake1.9 | automaken
- Remove unneccesary build-conflicts on automake1.4
-- Simon Horman <horms@debian.org> Wed, 5 Jul 2006 10:55:00 +0900
heartbeat-2 (2.0.5-7) unstable; urgency=low
* Don't run deluser and delgroup in postrm
- These commands may not be available at this time (closes: #375941)
- If there are any files left that belong to this user or group
then they will be left unowned and get inhereited by the
next user that comes along that happens to have hacluster's
old userid or the old haclient groupid respectively.
-- Simon Horman <horms@debian.org> Thu, 29 Jun 2006 15:13:26 +0900
heartbeat-2 (2.0.5-5) unstable; urgency=low
* Reverse the change made in 2.0.5-4
It turns out that in heartbeat-2 (as opposed to heartbeat)
is a script which calls a binary that is located in
/usr/lib/ocf/resource.d/heartbeat/
-- Simon Horman <horms@debian.org> Mon, 12 Jun 2006 17:19:52 +0900
heartbeat-2 (2.0.5-4) unstable; urgency=low
* Move IPv6addr from /etc/ha.d/resource.d/ into /usr/lib/heartbeat,
and then symlink that back into /etc/ha.d/resource.d/ as binaries
are not allowed in /etc (closes: #372850)
-- Simon Horman <horms@debian.org> Mon, 12 Jun 2006 16:23:59 +0900
heartbeat-2 (2.0.5-3) unstable; urgency=low
* Fix libgnutls binary dependancy
- Build-Depends on libgnutls-dev instead of libgnutls13-dev
- Recompile against libgnutls13 in place of libgnutls11
- (closes: #370423)
-- Simon Horman <horms@debian.org> Mon, 5 Jun 2006 17:57:23 +0900
heartbeat-2 (2.0.5-2) unstable; urgency=low
* Make use of invoke-rc.d (closes: #367761)
* Update from standards versoin from 3.6.2 to 3.7.2
-- Simon Horman <horms@debian.org> Fri, 19 May 2006 10:39:07 +0900
heartbeat-2 (2.0.5-1) unstable; urgency=low
* New Upstream
* Removed build depenancy on openssl-devel,
as heartbeat no longer uses openssl directly.
(Libraries that heartbeat depends on may in turn
depend on openssl creating an indirect depenancy
or build-dependancy).
-- Simon Horman <horms@debian.org> Tue, 9 May 2006 11:55:52 +0900
heartbeat-2 (2.0.4-1) unstable; urgency=low
* New Upstream
* Don't try and stop heartbeat in preinst on the first install
(closes: #355719)
-- Simon Horman <horms@debian.org> Wed, 8 Mar 2006 09:46:46 +0900
heartbeat-2 (2.0.3-2) unstable; urgency=low
* Add build dependancy on libncurses-dev to allow crm_mon to work
Thanks to Guy Coates
* Move hacluster user and haclient group creation (don't ask me why the
user and group names are different) from preinst to postinst.
Once upon a time there might have been a need for it in preinst,
but the current packaging changes files to have the hacluster user
and haclient group as neccessary in the postinst. So there is
no need to create them before postinst.
This is a better fix to #352158, and the pre-depends on adduser
has been changed to a depends accordingly.
(closes: #352158)
* Stop heartbeat in preinst
-- Simon Horman <horms@debian.org> Tue, 14 Feb 2006 13:42:37 +0900
heartbeat-2 (2.0.3-1) unstable; urgency=low
* New Upstream
* Make sure adduser is passed the --system flag
(closes: #336580)
* Slightly Enhanced package descriptions
(closes: #337030)
* Add build dependancy on swig
* As PYTHON_PATH has been added to configure.in it seems that autoconf1.4
can no longer build this tree. Currently autoconf is provided by
autoconf1.4, and autoconfn is a virtual package provided by autoconf1.7,
1.8 and 1.9. Accordingly, replace the autoconf build dependancy with
autoconf1.9 | autoconfn. And add a build conflict on autoconf1.4. This
way the autoconf command should be autoconf1.7, 1.8 or 1.9, but not 1.4
as was previously the case.
* Don't apply 00-ssh_scp_path.patch as it should no longer be needed,
instead add a build dependancy on openssh-client.
Also removed call to relevant configure options.
* Removed configure option that no longer exists
--enable-checkpointd
* Removed configure options that are now on by default
--enable-crm --enable-lrm
* Add build dependancy on libgnutls11-dev, as 1.0 probably doesn't
compile as _t types don't exist.
http://lists.gnu.org/archive/html/help-gnutls/2004-08/msg00001.html
* Fix insonsistency between hb_stanby(1) man page, an the wiki
(closes: #339016)
* Make /usr/bin/cl_status setgid
(closes: #351178)
* Make sure that /var/run/heartbeat/{ccm,crm} exist on install
else postinst, and thus the install will abort.
(closes: #351181)
* Fix inconsistency between hb_standb(1) man page and wiki
(closes: #339016)
* Add Pre-Depends on adduser
(closes: #352158)
* Add management tool
./confgure --enable-mgmt
Build-Depends: python2.3-dev, libpam0g-dev
-- Simon Horman <horms@debian.org> Sat, 11 Feb 2006 09:41:17 +0000
heartbeat-2 (2.0.2-5) unstable; urgency=low
* Change libcurl3-dev dependancy to libcurl3-openssl-dev
(closes: #334622)
-- Simon Horman <horms@debian.org> Wed, 19 Oct 2005 19:09:51 +0900
heartbeat-2 (2.0.2-4) unstable; urgency=low
* Include /var/lib/heartbeat/ccm and /var/run/heartbeat/crm
(closes: #330634)
-- Simon Horman <horms@debian.org> Thu, 29 Sep 2005 12:16:03 +0900
heartbeat-2 (2.0.2-3) unstable; urgency=low
* Get rid of bogus touching of config.status and friends in clean target,
which if run as root causes build failures.
-- Simon Horman <horms@debian.org> Tue, 27 Sep 2005 22:28:01 +0900
heartbeat-2 (2.0.2-2) unstable; urgency=low
* Add build dependancy on libltdl3-dev
(closes: #330194)
-- Simon Horman <horms@debian.org> Tue, 27 Sep 2005 20:38:12 +0900
heartbeat-2 (2.0.2-1) unstable; urgency=low
* New upstream
-- Simon Horman <horms@debian.org> Mon, 26 Sep 2005 15:11:23 +0900
heartbeat-2 (2.0.1-4) unstable; urgency=low
* Add /var/run/heartbeat directory to package
http://www.osdl.org/developer_bugzilla/show_bug.cgi?id=900
-- Simon Horman <horms@debian.org> Sat, 24 Sep 2005 14:56:51 +0900
heartbeat-2 (2.0.1-3) unstable; urgency=low
* Restrurctured provides, conflicts and replaces
* Made heartbeat-2-dev depend on heartbeat-2, not heartbeat
-- Simon Horman <horms@debian.org> Thu, 22 Sep 2005 17:24:19 +0900
heartbeat-2 (2.0.1-2) unstable; urgency=low
* Uptream initally made the wrong tar ball avaliable for
2.0.1 and this was used to build 2.0.1-1.
I have asked 2.0.1-1 not to be accepted into the Debian Archive
for this reason. 2.0.1-2 uses the updated, correct tarball from
upstream.
* Note that this package has a binary dependancy on libssl
only because of linking against libsnmp9 (5.2.1.2-3)
* Add build dependancy on libsensors-dev (for libsnmp9)
-- Simon Horman <horms@debian.org> Thu, 22 Sep 2005 12:56:11 +0900
heartbeat-2 (2.0.1-1) unstable; urgency=low
* New upstream
* Add /var/lib/heartbeat/cores/root, /var/lib/heartbeat/cores/hacluster
and /var/lib/heartbeat/cores/nobody
* Remove usr/lib/stonith/plugins/stonith2/riloe.so, its
no longer in the tree
* Enable snmp_agent
* Added new libplumbgpl
* Added new ha_logd.cf
* Added new iso8601 executable
* Temporarly remove the drac3 module as GPL code that links
against OpenSSL is not acceptable to Debian.
- http://lists.community.tummy.com/pipermail/linux-ha-dev/2005-August/011266.html
- http://www.osdl.org/developer_bugzilla/show_bug.cgi?id=853
* Update build dependncy from libsnmp5-dev to libsnmp9-dev
* Make configure chown test fakeroot aware to avoid build hang
* Fix syntax error in db OCF resource
* Make crm/test/helper.sh have #! /bin/bash
* Make resources/OCF/ocf-shellfuncs.in have #! /bin/bash
* Update FSF address
* Zero config.status, libltdl/config.log and libltdl/config.status on clean
-- Simon Horman <horms@debian.org> Thu, 15 Sep 2005 20:24:52 +0900
heartbeat-2 (2.0.0-2) unstable; urgency=low
* Add /var/lib/heartbeat/ccm and /var/lib/heartbeat/cores
-- Simon Horman <horms@debian.org> Wed, 3 Aug 2005 22:54:35 +0900
heartbeat-2 (2.0.0-1) unstable; urgency=low
* New upstream
* Added dependancy on libnet-dns-perl to ldirectord
* Added --enable-checkpointd to configure arguments
* Added --disable-snmp-subagent to configure arguments
* Added --disable-swig to configure arguments
* Add build dependancy on uuid-dev
* Readranged packages to allow heartbeat 1.2.X to exist in debian
and heartebat 2.X to be heartbeat-2 until heartbeat-2 gets
a bit more testing in the wild. Also consoldidated binary
packages into heartbaet-2, and development packages into
heartbeat-2-dev, ldirectord is still in its own package,
ldirectord2, as it drags in a lot of dependancies that
no other part of the system uses.
-- Simon Horman <horms@debian.org> Sat, 30 Jul 2005 16:20:55 +0900
heartbeat (1.2.3-12) unstable; urgency=high
* 11-tmpfile-problems.patch, 12-tmpfile-problems-2.patch
Don't use predictable temp files
[heartbeat/lib/BasicSanityCheck.in, heartbeat/resource.d/WAS.in
lib/plugins/stonith/meatware.c, lib/stonith/meatclient.c,
cts/CM_hb.py.in, cts/CTStests.py.in CAN-2005-2231] (closes: #318287)
* debian/apply
Apply patches in the correct order.
* 12-tmpfile-problems-2.patch
Added CTS back in with security fix
[usr/lib/heartbeat/cts/CM_fs.py, usr/lib/heartbeat/cts/CM_hb.py,
usr/lib/heartbeat/cts/CTS.py, usr/lib/heartbeat/cts/CTSaudits.py,
usr/lib/heartbeat/cts/CTSlab.py, usr/lib/heartbeat/cts/CTStests.py
CAN-2005-2231]
* 13-confdir.patch
Change CONF_D defined (and missing) in some resources
to HA_CONFDIR in shelfuncs, allowing arp_config to function
correctly in IPaddr2 and SendArp. (closes: #318266)
* debian/rules
Include cts documentation
* 14-ipadd2_no_loopback_delete.patch
Fix IPaddr2 so it doesn't remove loopback interfaces on stop
* 15-LVM2.patch
Allow the LVM resource to work with LVM2 as well as LVM1
(closes: #309906)
* Upgrade Standards-Version from 3.6.1 to 3.6.2
-- Simon Horman <horms@debian.org> Mon, 18 Jul 2005 22:27:29 +0200
heartbeat (1.2.3-10) unstable; urgency=low
* Make signal handling less aggressive to avoid exiting in
FTP and LDAP chacks. (closes: #310600)
-- Simon Horman <horms@debian.org> Fri, 17 Jun 2005 18:17:03 +0900
heartbeat (1.2.3-9) unstable; urgency=low
* Stop heartbeat in preinst so starting it in postinst
wont cause an error if it was already running.
(closes: #303149)
-- Simon Horman <horms@debian.org> Tue, 5 Apr 2005 15:57:44 +0900
heartbeat (1.2.3-8) unstable; urgency=low
* Added dependancy on libnet-dns-perl to ldirectord
* Removed Build-Dependancy on raidtools2 as it is being removed
from the archive and removed the Raid1 resource from the
heartbeat package accordingly. (closes: #296717)
* Added build dependancy on bison and flex.
-- Simon Horman <horms@debian.org> Tue, 22 Mar 2005 13:20:18 +0900
heartbeat (1.2.3-7) unstable; urgency=low
* Remove the hacluser user and haclient group on purge. (closes: #29951)
* Note the Delay resource bug closed in 1.2.3-4 was #287848, not #28784.
-- Simon Horman <horms@debian.org> Tue, 15 Mar 2005 12:30:45 +0900
heartbeat (1.2.3-5) unstable; urgency=low
* Added missing libxml2-dev build dependancy that is required
for the drac3 stonith module to build. (closes: #290235)
-- Simon Horman <horms@debian.org> Fri, 14 Jan 2005 16:23:48 +0900
heartbeat (1.2.3-4) unstable; urgency=low
* Move user and group creation code from postinst to preinst
(Jochen Friedrich) (closes: #285603)
* Don't set uid of user that is created
(Daniel Hermann) (closes: #288818)
* Stonith module for EXTERNAL Stonith device
(Daniel Hermann) (closes: #286274)
* Remove control fifo in postrm
* Fix gcc-4.0 compile problems (Andreas Jochens) (closes: #286347)
* Removed stray heartbeat-stonith.files and heartbeat-ldirectord.files
from debian/, these have not been used for quite some time now.
* Added build dependancy on libcurl-dev to allow drac3 Stonith device to build
* Added drac3 Stonith device to build
* Add --disable-fatal-warnings to ./configure in debian/rules,
this is known not to work cleanly with debian's lex and yacc.
Also, reverse 02-lex_yacc_cflags.patch, which is an attempt to
work around this, which doesn't always work.
* Fix loop in FIFO reader that manifests on SPARC/Linux
(Jochen Friedrich) (closes: #285356)
* Fix typo in Delay resource that causes both stop and start to fail
(Daniel Hermann) (closes: #28784)
-- Simon Horman <horms@debian.org> Wed, 12 Jan 2005 12:22:01 +0900
heartbeat (1.2.3-3) unstable; urgency=low
* Removed /etc/ha.d/resource.d/apache as it does not work
properly _on Debian_ and by removing it /etc/init.d/apache will be used
which does work. Reported by Fraser Campbell. (closes: #283447)
* Update ldirectord from 1.77.2.5 to 1.77.2.6 for https bug.
http://www.gossamer-threads.com/lists/linuxha/users/22059
Requested by Amadeus Scherhaufer.
-- Simon Horman <horms@debian.org> Wed, 1 Dec 2004 16:35:59 +0900
heartbeat (1.2.3-2) unstable; urgency=low
* Fixed a bug related to repeat STONITHs failing because we freed some
data we shouldn't have.
* Don't run exclude cl_status from dh_fixperms as it overrides permissions
that the build system sets which are needed for correct opperation.
-- Simon Horman <horms@debian.org> Tue, 16 Nov 2004 15:54:28 +0900
heartbeat (1.2.3-1) unstable; urgency=low
* New Upstream
- Incoporate init script patch from 1.2.2-12 (Bug#268670)
- Incoporate ssh dependancy patch from 1.2.2-11
- All other changes were merged upstream for 1.2.3
* Added patch manager from kernel-source-2.4.27 to keep debian
specific and otherwise unmerged patches in order
-- Simon Horman <horms@debian.org> Tue, 21 Sep 2004 16:05:46 +0900
heartbeat (1.2.2-12) unstable; urgency=low
* Backport send ARP from head branch
- broadcast works with -C
- -C is documented
- (closes: Bug#262288)
* Some init scipts tell us that they are not running,
heartbeat mistakenly just sees "running" and assumes they are.
- Fix by adding the following to ResourceManager(.in)
case `$spath $arg status` in
-> *not [Rr]unning*) return 3;;
*[Rr]unning*|*OK*) return 0;;
*) return 3;;
esac
- (closes: Bug#268670)
* Remove config.log in clean target of rules file
-- Simon Horman <horms@debian.org> Mon, 30 Aug 2004 12:21:20 +0900
heartbeat (1.2.2-11) unstable; urgency=medium
* Remove build dependancy on ssh as the package has ongoing
install problems on arm and this is preventing this package
from moving into sarge. Instead, provide configure options
to specify the path to ssh and scp.
-- Simon Horman <horms@debian.org> Mon, 26 Jul 2004 12:00:37 +0900
heartbeat (1.2.2-10) unstable; urgency=low
* Revert to tar ball that was used for previous (> 1.2.2-9) builds.
You can't modify the tar ball on debian.org !!! (silly me)
-- Simon Horman <horms@debian.org> Wed, 7 Jul 2004 12:17:28 +0900
heartbeat (1.2.2-9) unstable; urgency=low
* Fix sequence number wrap in ping_group
(Patched ping_group.c from 1.10 to 1.11)
* Build against tar ball from linux-ha.org
A locally produced tar ball had been used in the past (my mistake)
-- Simon Horman <horms@debian.org> Wed, 7 Jul 2004 11:20:41 +0900
heartbeat (1.2.2-8) unstable; urgency=low
* The previous version never made it into testing because
the build failed on arm because the ssh package was broken
at the time. I have not had any luck contacting someone to
rebuild the package.
* Updated ldirectord to 1.77.2.4 (from 1.77.2.2).
Fixes a problem where real servers present in multiple
virtuals would only be added to one virtual service.
-- Simon Horman <horms@debian.org> Wed, 23 Jun 2004 17:01:26 +0900
heartbeat (1.2.2-7) unstable; urgency=low
* Link the apcmastersnmp stonith module against libsnmp
-- Simon Horman <horms@debian.org> Fri, 4 Jun 2004 16:07:49 +0900
heartbeat (1.2.2-5) unstable; urgency=low
* Fixed alignment error in IPv6addr.c that manifests on ia64
(closes: Bug#249847)
-- Simon Horman <horms@debian.org> Thu, 20 May 2004 11:20:47 +0900
heartbeat (1.2.2-4) unstable; urgency=low
* Put back inary-arch and binary-indep targets
(closes: Bug#188835) (closes: Bug#249606)
* Put the prioroty of all packages, except ldirectord back to optional
Left ldrirectord as optional as it depends on ipvsadm,
which is optional.
-- Simon Horman <horms@debian.org> Wed, 19 May 2004 12:21:54 +0900
heartbeat (1.2.2-3) unstable; urgency=low
* Package provides /etc/ha.d and /etc/heartbeat
(actually fixed in 1.2.2-2) (closes: Bug#222712)
* There is a known limitation with ifconfig's handling of
long interface names. Use IPadd2, which used the ip command,
instead. (Fixed in upstream) (closes: Bug#229978)
* New upstream (closes: Bug#248611)
* Heartbeat package does not use debconf anymore
(Fixed a while ago) (closes: Bug#189932)
* Evms seems to no longer depend on heartbeat.
(closes: Bug#207607)
* Made dependancy on libnet1-dev instead of
libnet1-dev | libnet0-dev | libnet-dev.
- libnet0-dev is in setction oldlibs in stable
- allows IPv6addr to be included.
* Include IPv6addr
* Made dependancy on libssl-dev instead of libssl-dev | libssl09-dev
as libssl09-dev is not in stable.
* Changed priority to extra as that is the lowest common
denominator of our dependancies.
-- Simon Horman <horms@debian.org> Tue, 18 May 2004 12:54:30 +0900
heartbeat (1.2.2-2) unstable; urgency=low
* New Upstream
* ldirectord uses host portion of request string as documented in
the man page. (closes: Bug#242220)
* ldirectord check_ftp no longer uses pipes. (closes: Bug#243157)
* The binary-arch and binary-indep targets did not conform to Debian policy.
It is rather difficult to implement them correctly given the heartbeat
build system, and the policy allows them not to exist. (closes: Bug#188835)
* Added dependancy on libmail-imapclient-perl. (closes: Bug#242077)
* The timestamp overflow was fixed long time ago.
(closes: Bug#239683) (closes: Bug#239687)
* inet_aton is no longer used in mcast.c (closes: Bug#239684)
* Patch is superseeded by much newer codebase
(closes: #239685) (closes: Bug#239686)
* Init script no longer uses -e argument to echo. (closes: Bug#136541)
* Plugins no longer need to be executable. (closes: Bug#247348)
(closes: Bug#247485)
* Merged debian packaging in Debian Unstable pool with the
linux-ha tree.
-- Simon Horman <horms@debian.org> Fri, 14 May 2004 12:32:26 +0900
heartbeat (1.2.0-2) unstable; urgency=low
* Added Depends on libmail-imapclient-perl to ldirectord.
(Closes: #242077) Thanks Cyril Bouthors for noticing.
-- Alberto Gonzalez Iniesta <agi@agi.as> Mon, 5 Apr 2004 09:11:03 +0200
heartbeat (1.2.0-1) unstable; urgency=low
* The 'My f*cking Toshiba HD crashed and delayed everything' release
* New upstream release
-- Alberto Gonzalez Iniesta <agi@agi.as> Tue, 16 Mar 2004 20:24:24 +0100
heartbeat (1.0.4-3) unstable; urgency=low
* Corrected default paths to Apache binary and configuration file.
(Closes: #230042)
* Corrected typo in heartbeat-dev description (Closes: #230639)
* Corrected grammatical confusion in template (Closes: #232459)
* Actually correct permissions on /var/lib/heartbeat/ccm.
(Closes: #233021)
-- Alberto Gonzalez Iniesta <agi@agi.as> Wed, 28 Jan 2004 07:36:17 +0100
heartbeat (1.0.4-2) unstable; urgency=low
* Improved haclient user and group creation/deletion [postinst & postrm]
Make use of gentent instead of greping /etc/(passwd|group)
Inspired by Horms' packages ;)
* Moved to debhelper compatability 4. Created debian/compat.
* Avoid failing while moving contents from old configuration dir to
new one if expected contents are not found.
(Closes: #221546)
* Removed README.config from /etc (Closes: #222708)
* Make 'daemon' be the default syslog facility for heartbeat
(Closes: #226600)
* Corrected owner and permissions under /var/lib/heartbeat
(Closes: #228505)
* Make libstonith0 depend on libsnmp5. Thanks Stefan Beck for noticing.
(Closes: #228544)
* Make libstonith0 depend on libssl0.9.7. Why the f*ck does dpkg-shlibdeps
not find these?
* Make heartbeat start later and stop sooner (S75 and K05) so that it
won't f*ck drbd. Thanks Stefan Schleifer for noticing.
Created a debconf template to ask if the change should be done when
upgrading from previous versions.
* Fixed debconf template text for directory movement.
-- Alberto Gonzalez Iniesta <agi@agi.as> Wed, 12 Nov 2003 15:05:00 +0100
heartbeat (1.0.4-1) unstable; urgency=low
* New upstream release
* Bumped Standards-Version to 3.6.1. No change
* Removed debconf supported configuration of heartbeat.
It was buggy, and a pain to debug. I'd rather not have it
on sarge. (Closes: #204775) I'll work on a new one when time
permits.
-- Alberto Gonzalez Iniesta <agi@agi.as> Sat, 4 Oct 2003 17:36:40 +0200
heartbeat (1.0.3-3) unstable; urgency=low
* Removed deletion of fifo files in heartbeat.prerm
(That shouldn't be done there. It broke dpkg-reconfigure)
* Added Depends on libwww-perl and libnet-ssleay-perl
(Closes: #142297)
* libstonith-dev's Section is now libdevel (Closes: #188206)
-- Alberto Gonzalez Iniesta <agi@agi.as> Sun, 13 Jul 2003 17:13:43 +0200
heartbeat (1.0.3-2) unstable; urgency=low
* Fixed sections for libstonith-dev, it's libdevel
-- Alberto Gonzalez Iniesta <agi@agi.as> Sat, 12 Jul 2003 20:10:59 +0200
heartbeat (1.0.3-1) unstable; urgency=low
* The 'debcamp' release
* New upstream release
* Added build-depends on iputils-ping, I hoped it wouldn't be
necessary. (Closes: #200938)
* Also added Depends on iputils-ping. That's the ping package
with the ping syntax we need (Closes: #170799)
* The heartbeat.config from 0.4.9.2-1 did 'cut' the right way
(Closes: #166065)
* Added missing db_stop in heartbeat.postinst
(Closes: #199484)
* /usr/lib/heartbeat/ResourceManager now has the right path to
init.d scripts (Closes: #169865)
* Made Simon Horman <horms@vergenet.net> a co-maintainer
-- Alberto Gonzalez Iniesta <agi@agi.as> Sat, 12 Jul 2003 12:13:03 +0200
heartbeat (1.0.2-1) unstable; urgency=low
* New upstream release (Closes: #186900)
* New maintainer (Closes: #192680)
* Bumped Standards-Version to 3.5.10
* Patched ha_msg.c to fix format string bug (Closes: #199016)
-- Alberto Gonzalez Iniesta <agi@agi.as> Wed, 02 Jul 2003 00:11:24 +0200
heartbeat (0.4.9.2-3.1) unstable; urgency=low
* Use -r instead of -R for ipvsadm. Thanks to Sergio Talens-Oliag.
(Closes: #147290)
* Fix lintian errors by removing *.conffiles.
-- James Morrison <phython@debian.org> Sat, 29 Mar 2003 14:56:12 -0500
heartbeat (0.4.9.2-3) unstable; urgency=low
* fixed a build bug caused by a buggy ld - I don't know if ld still
has that problem (it doesn't seem to me), but anyway it's done.
(closes: #129361)
-- Michael Moerz <mikem@debian.org> Tue, 15 Oct 2002 12:44:05 +0200
heartbeat (0.4.9.2-2) unstable; urgency=low
* and again I was caught by that groupadd in the Makefiles
this is fixed now (closes: 164773)
-- Michael Moerz <mikem@debian.org> Tue, 15 Oct 2002 02:08:52 +0200
heartbeat (0.4.9.2-1) unstable; urgency=low
* new upstream release
* fixed cut problem (caused by missing escape sequences)
(closes: #130895, #131253, #131259)
* corrected missing Depends on adduser (closes: #147661)
* corrected problem with install and duplicate files (closes: #162446)
* fixed false assumption about possition of fuser from /sbin to /bin
* changed configuration directory from /etc/ha.d to /etc/heartbeat
* added the essential question if the user wants to use debconf
for the configuration of heartbeat
-- Michael Moerz <mikem@debian.org> Mon, 14 Oct 2002 11:30:52 +0200
heartbeat (0.4.9.0l-7.2) unstable; urgency=low
* corrected wrong dependency (on lvs) (Closes: #141922)
-- Michael Moerz <mikem@debian.org> Sun, 28 Apr 2002 02:31:57 +0200
heartbeat (0.4.9.0l-7.1) unstable; urgency=high
* Non-maintainer upload, trying to get a release into woody
* Use ifconfig <interface> 0 instead of ifconfig <interface> down
(Closes: #129779)
-- Matt Zimmerman <mdz@debian.org> Sat, 2 Mar 2002 22:49:32 -0500
heartbeat (0.4.9.0l-7) unstable; urgency=low
* removed call of groupadd in hearbeat/Makefile (Closes: #121244)
* heartbeat depends on system-log-daemon instead of sysklogd.
(Closes: #120721)
* corrected the soname of libhbclient from .0.0.0 to
libhbclient.so.0.0.0
* removed debian/.shlibs files since they are autogenerated now
by dh_makeshlibs -V
* removed some log file that remained in debian/ from testing and
debugging the debconf interface
-- Michael Moerz <mikem@debian.org> Thu, 13 Dec 2001 03:14:42 +0100
heartbeat (0.4.9.0l-6) unstable; urgency=low
* this time I hope I got it right with the sections of the several packages
involved
* heartbeat is up to date now (Closes: #79946, #90521, #63259)
* /usr/lib/heartbeat/ResourceManager: renamed init.d directory
(Closes: #89598)
* A newer README.Debian added (Closes: #94469)
-- Michael Moerz <mikem@debian.org> Mon, 12 Nov 2001 20:27:59 +0100
heartbeat (0.4.9.0l-5) unstable; urgency=low
* an other forgotten debug statement that caused trouble (Closes: #118984)
* fixed some missing ldconfig in heartbeat.postinst and heartbeat.postrm
* fixed so version in heartbeat.shlibs
-- Michael Moerz <mikem@debian.org> Sat, 10 Nov 2001 19:21:19 +0100
heartbeat (0.4.9.0l-4) unstable; urgency=low
* corrected section of ldirectords and stoniths to section admin
* corrected wrong dependency of ldirectord to lvs (ipvsadm)
-- Michael Moerz <mikem@debian.org> Sat, 10 Nov 2001 11:43:22 +0100
heartbeat (0.4.9.0l-3) unstable; urgency=low
* corrected my faulty control file - so 0l-2 and 0l-1 never ever made
it into the archive
-- Michael Moerz <mikem@debian.org> Fri, 9 Nov 2001 00:49:11 +0100
heartbeat (0.4.9.0l-2) unstable; urgency=low
* removed some debug output causing a file testj to be written in the
current directory
-- Michael Moerz <mikem@debian.org> Thu, 8 Nov 2001 01:34:30 +0100
heartbeat (0.4.9.0l-1) unstable; urgency=low
* taking package after talking to Paolo Molaro - well I was really lazy
cause it took me a lot of time to create a working new package, but I
hope the debconf interface was worth the waiting ...
* Updated for 0.4.9.0l
* modified package to fit policy 3.5.3.0
* added Build Depends
* added debconf support for heartbeat
* wrote a very short manpage for stonith and meatclient
-- Michael Moerz <mikem@debian.org> Thu, 08 Nov 2001 22:56:01 +0200
heartbeat (0.4.6-2.2) frozen unstable; urgency=low
* NMU
* Fix Build-depends, this time with source. Closes: #105837
-- LaMont Jones <lamont@debian.org> Wed, 15 Aug 2001 23:48:09 -0600
heartbeat (0.4.6-2) frozen unstable; urgency=low
* Fix ugly bug with prerm (Closes: bug#56671). To the release manager:
get this in potato as that bug is really annoying (endless loop
with the yes program when uninstalling). You still need to kill or Crtl-C
the prerm script, as it seems it's not possible to override
a broken prerm script before it's run by dpkg.
* Applied little patch from Terry Katz to make IPAddr work correctly
with multiple similar IPs on the same pc (Closes: bug#55925).
-- Paolo Molaro <lupus@debian.org> Mon, 7 Feb 2000 15:36:38 +0100
heartbeat (0.4.6-1) unstable; urgency=low
* New upstream release.
-- Paolo Molaro <lupus@debian.org> Thu, 2 Dec 1999 16:51:41 +0100
heartbeat (0.4.5a-1) unstable; urgency=low
* Initial Release.
-- Paolo Molaro <lupus@debian.org> Wed, 17 Nov 1999 17:30:23 +0100
|