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
|
multipath-tools (0.14.3-2) unstable; urgency=medium
* [9ef22a2] Run testsuite only during Arch-builds
* [2a6ef4b] Disable testsuite on loong64
-- Chris Hofstaedtler <zeha@debian.org> Mon, 02 Mar 2026 11:49:26 +0100
multipath-tools (0.14.3-1) unstable; urgency=medium
[ Jonas Jelten ]
* [d6c9eba] Enable testsuite (LP: #2135118)
[ Chris Hofstaedtler ]
* [5c1230c] New upstream version 0.14.3 (Closes: #1128696)
* [6e2361a] Rebase patches, use WARN_ONLY=1 in make invocation
-- Chris Hofstaedtler <zeha@debian.org> Mon, 02 Mar 2026 10:37:01 +0100
multipath-tools (0.13.0-1) unstable; urgency=medium
* [c8842fd] New upstream version 0.13.0
* [6951eae] d/rules: enable verbose upstream build
* [3d82dad] initramfs: stop multipathd in init-bottom, not local-bottom.
Ubuntu noticed that local-* scripts are not executed on systems with
disks on network. (LP: #2080474)
* [fc4b508] d/t/control: add linux-image-generic for Ubuntu
* [1df3a76] d/libmpathpersist0.symbols: tighten internal symbols
* [6aff684] initramfs: stop requesting old dmsetup_env hack
-- Chris Hofstaedtler <zeha@debian.org> Sat, 20 Dec 2025 14:16:27 +0100
multipath-tools (0.12.0-1) unstable; urgency=medium
* [faa43cc] New upstream version 0.12.0
* [6be5e93] Refresh patches
* [9e3a45d] Install multipathd-queueing.service
-- Chris Hofstaedtler <zeha@debian.org> Sun, 14 Sep 2025 19:44:45 +0200
multipath-tools (0.11.1-4) unstable; urgency=medium
* Upload to unstable
-- Chris Hofstaedtler <zeha@debian.org> Tue, 12 Aug 2025 11:33:45 +0200
multipath-tools (0.11.1-3) experimental; urgency=medium
* [707b59b] Split off libraries, install dev files.
Only libmpathcmd, libmpathpersist, libmpathvalid are stable libraries.
Unfortunately we have to install libmultipath.so into libmultipath-dev
so qemu-pr-helper will be able to link libmpathpersist.
See Launchpad bug #2117378 and
http://github.com/opensvc/multipath-tools/issues/118 for discussion.
(Closes: #1005323)
-- Chris Hofstaedtler <zeha@debian.org> Thu, 31 Jul 2025 18:45:31 +0200
multipath-tools (0.11.1-2) unstable; urgency=medium
[ Fabian Grünbichler ]
* [3e795aa] build: properly split -arch and -indep builds
[ mitchdz ]
* [7322e89] d/t/tgtbasedmpaths: allow rc of 3 for socket
[ Chris Hofstaedtler ]
* [9c54e80] Install grep, pidof into the initramfs.
Thanks to Jarl Gullberg <jarl.gullberg@gmail.com> (Closes: #1104259)
-- Chris Hofstaedtler <zeha@debian.org> Thu, 01 May 2025 21:45:28 +0200
multipath-tools (0.11.1-1) unstable; urgency=medium
* [ed5f513] New upstream version 0.11.1
* [b9fd90c] tests: allow multipathd.socket to be inactive
* [bbfe6bb] add myself to uploaders
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 17 Feb 2025 16:40:48 +0100
multipath-tools (0.10.0-1) experimental; urgency=medium
[ Fabian Grünbichler ]
* [bde2c42] New upstream version 0.10.0
* [705138c] rebase patches for 0.10.0
* [43cefdf] cherry-pick regression fix from upstream 0.11 draft
-- Chris Hofstaedtler <zeha@debian.org> Thu, 26 Dec 2024 15:16:06 +0100
multipath-tools (0.9.9-1) unstable; urgency=medium
[ mitchdz ]
* [14083d6] d/t/tgtbasedmpaths: do not brace expand as systemd does
not understand (Closes: #1074403)
[ Chris Hofstaedtler ]
* [b5fef17] New upstream version 0.9.9
* [ef49180] Rebase patches
-- Chris Hofstaedtler <zeha@debian.org> Sun, 07 Jul 2024 01:58:32 +0200
multipath-tools (0.9.8-1) unstable; urgency=medium
[ mitchdz ]
* [9ffd042] tgtbasedmpaths: also check status of the socket (Closes:
#1069680)
[ Chris Hofstaedtler ]
* [6f82765] New upstream version 0.9.8
* [7e41b68] Refresh patches
* [7119712] Revert "Implement real socket activation of multipathd.service."
Unsupported upstream.
* [551f721] Install new udev rules.
-- Chris Hofstaedtler <zeha@debian.org> Thu, 13 Jun 2024 02:44:49 +0200
multipath-tools (0.9.7-7) unstable; urgency=medium
* [9d90323] Drop hard-coded dependency on libaio1 (Closes: #1068944)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 14 Apr 2024 13:04:31 +0200
multipath-tools (0.9.7-6) unstable; urgency=medium
* [85ca059] Switch Build-Depends pkg-config to pkgconf
-- Chris Hofstaedtler <zeha@debian.org> Thu, 29 Feb 2024 22:38:43 +0100
multipath-tools (0.9.7-5) unstable; urgency=medium
* [902a13b] Rely on newly un-broken dmsetup 2:1.02.196-1
-- Chris Hofstaedtler <zeha@debian.org> Thu, 29 Feb 2024 22:35:59 +0100
multipath-tools (0.9.7-4) unstable; urgency=medium
* [2faddfc] Fix initramfs test
-- Chris Hofstaedtler <zeha@debian.org> Wed, 31 Jan 2024 18:05:03 +0100
multipath-tools (0.9.7-3) unstable; urgency=medium
* [b7f0988] Switch Build-Depends to systemd-dev (Closes: #1060604)
-- Chris Hofstaedtler <zeha@debian.org> Fri, 12 Jan 2024 13:21:59 +0100
multipath-tools (0.9.7-2) unstable; urgency=medium
* [018f436] Correctly apply Debian-specific udev rule priorities
-- Chris Hofstaedtler <zeha@debian.org> Thu, 04 Jan 2024 20:32:14 +0100
multipath-tools (0.9.7-1) unstable; urgency=medium
* [232dd6e] New upstream version 0.9.7
* [ed5de58] Refresh patches
* [97e9782] Build-Depend: libmount-dev, now needed
* [462750d] Follow upstream change from modules-load to modprobe@ service
* [46cd7fe] d/rules: drop SCSI_DH_MODULES_PRELOAD which did not work anyway
* [5ec6ee3] autopkgtest: add extra details, journal output
* [11f09a7] postinst: ignore failure from udevadm
-- Chris Hofstaedtler <zeha@debian.org> Thu, 04 Jan 2024 00:19:37 +0100
multipath-tools (0.9.4-10) unstable; urgency=medium
* [ff4b063] Fix udev rules install location
* [704cf13] autopkgtest: fix under upstream default of find_multipaths strict
-- Chris Hofstaedtler <zeha@debian.org> Mon, 01 Jan 2024 20:21:16 +0100
multipath-tools (0.9.4-9) unstable; urgency=medium
* Upload to unstable.
* [c785707] Rearrange debian/tmp usage to get more out of dh_missng
* [05a2082] Use dh_install to install udev rules
* [6c4f974] kpartx-udeb: install udev rules and helper (Closes: #1059747)
* [5598a12] initramfs: use /usr-merged layout
* [d41422b] initramfs: use modern helpers, tidy up
* [bdcbd1e] Stop installing multipath-tools-boot.service mask
* [13d5c3e] Refresh patches
* [265cc4d] Apply wrap-and-sort -kast
* [a42a18b] Add new autopkgtest for initramfs hooks
-- Chris Hofstaedtler <zeha@debian.org> Mon, 01 Jan 2024 17:31:35 +0100
multipath-tools (0.9.4-8) experimental; urgency=medium
* Target experimental.
* [dfcb2a2] Install into /usr-merged layout
-- Chris Hofstaedtler <zeha@debian.org> Sat, 23 Dec 2023 20:20:34 +0100
multipath-tools (0.9.4-7) unstable; urgency=medium
* [bdc80b9] Merge initramfs integration from Ubuntu.
Which apparently got updated since the 0.7.x days, compared to ours.
Keep kpartx in the multipath hook, as we do not have a separate kpartx-boot
package, and likely never will.
* [918d442] Remove init script, following Ubuntu bug reports
* [475fd45] Drop obsolete Depends: lsb-base
* [bc3bacb] Add NEWS for updated boot, removed sysvinit scripts
-- Chris Hofstaedtler <zeha@debian.org> Sat, 11 Nov 2023 00:44:56 +0100
multipath-tools (0.9.4-6) unstable; urgency=medium
[ Sergio Durigan Junior ]
* [818e429] d/p/0007-multipathd.service-remove-Also-multipathd.socket.patch:
Remove "Also=multipathd.socket" from multipathd.service, which was
breaking socket-activation.
* [634733b] Implement real socket activation of multipathd.service.
- d/rules: Use "--no-stop-on-upgrade" when installing
multipathd.service.
- d/multipath-tools.postinst: (Re)start multipathd.service
depending on certain conditions after installing/upgrading the
package. Run "udevadm trigger" on new installations.
- d/multipath-tools-boot.postinst: Always enable multipathd.service
when multipath-tools-boot is installed. Socket activation doesn't
work if booting from a multipath device.
Motivation: reduce RAM usage when multipath-tools is installed but
unused, and follow upstream setup.
* [6390885] d/NEWS: Add entry about socket-activation being now the default.
-- Chris Hofstaedtler <zeha@debian.org> Mon, 30 Oct 2023 19:08:18 +0100
multipath-tools (0.9.4-5) unstable; urgency=medium
* [7578bfb] Fail package build if udev rules are missing
* [68c0ce2] Install udev multipath.rules again.
Thanks to Joshua Huber <jhuber@blockbridge.com> (Closes: #1037539)
-- Chris Hofstaedtler <zeha@debian.org> Wed, 14 Jun 2023 11:50:10 +0200
multipath-tools (0.9.4-4) unstable; urgency=medium
[ Tobias Frost ]
* [b3824e9] Mention CVEs in changelog as suggested in developer reference 5.1
[ Chris Lamb ]
* [6bb1ffa] Rebuild libdmmp docs properly during build (Closes: #1037205)
[ Chris Hofstaedtler ]
* [8c46661] Remove library development files and all of libdmmp.
There are no users of the multipath libraries outside of multipath(d)
itself. Recently qemu gained support for multipath reservations; when qemu
wants to use this, the multipath-tools maintainers need to understand the
ABI status.
Disable building libdmmp completely, as no users seem to exist at all.
* [fb515b7] Remove intrusive patches for non-usrmerge-d systems.
* [b901229] Drop 0004-systemd-alias-multipath-service.patch,
symlink is installed instead.
* [9654134] Re-add dm-multipath module loading to ExecStartPre
(Closes: #1037292)
-- Chris Hofstaedtler <zeha@debian.org> Sun, 11 Jun 2023 13:32:31 +0200
multipath-tools (0.9.4-3) unstable; urgency=medium
[ Chris Lamb ]
* [f6f7ab0] Avoid race condition in man page build.
Leads to unreproducible contents. (Closes: #1030727)
-- Chris Hofstaedtler <zeha@debian.org> Tue, 07 Feb 2023 10:16:57 +0000
multipath-tools (0.9.4-2) unstable; urgency=medium
* [1517c01] Install tmpfiles.d snippet into non-usr-merged compatible location
-- Chris Hofstaedtler <zeha@debian.org> Thu, 02 Feb 2023 07:52:50 +0000
multipath-tools (0.9.4-1) unstable; urgency=medium
* [369b812] New upstream version 0.9.4 (Closes: #1022742)
Fixes CVE-2022-41973 and CVE-2022-41974.
* [ee2206e] Refresh patches
* [bcb0b07] Rework build steps to follow upstream changes.
And install libmpathutil.so.
* [f8ef90a] Use upstream-supported way of disabling systemd (for udeb)
* [8785eef] Update lintian-overrides
-- Chris Hofstaedtler <zeha@debian.org> Sun, 25 Dec 2022 23:19:21 +0000
multipath-tools (0.9.0-4) unstable; urgency=medium
[ Chris Lamb ]
* [3a71447] Make the build reproducible (Closes: #1016583)
[ Chris Hofstaedtler ]
* [d815e6b] Use libedit instead of libreadline.
Using patches from openSUSE, expected to go upstream in the next
release.
Thanks to Martin Wilck <mwilck@suse.com>, Bastian Germann <bastiangermann@fishpost.de>
(Closes: #979095)
* [f0e62a1] Add more patches from openSUSE to fix small bugs
-- Chris Hofstaedtler <zeha@debian.org> Sat, 13 Aug 2022 13:08:06 +0000
multipath-tools (0.9.0-3) unstable; urgency=medium
* [baa940a] Install reportbug helper using dh_bugfiles (Closes: #1016512)
-- Chris Hofstaedtler <zeha@debian.org> Tue, 02 Aug 2022 08:21:25 +0000
multipath-tools (0.9.0-2) unstable; urgency=medium
[ Athos Ribeiro ]
* [e3e7c47] d/t/kpartx-file-loopback: silence kpartx messages to stderr
[ Chris Hofstaedtler ]
* [057ee38] Apply wrap-and-sort -a
* [8c9d6fe] Use debhelper compat level 13
* [99f87ed] Use dh_missing
* [f7cde4c] Use dh_installsystemd
* [6797e0c] d/control: fix Depends/Pre-Depends mixup
* [c1cb1ba] Use debhelper sequencer (Closes: #801884)
* [eeb7a95] Remove upgrade code from versions before oldoldoldstable.
Specifically remove the debconf warning if scsi_id is still used (old
udev), and the init script bug fix. Rids us of all custom postinst/prerm
scripts.
* [8491532] Use only one way of installing manpages
* [32fb1aa] Fix typo in README.Debian
* [5be350e] Possibly fix multipath in d-i
* [c46f47a] Make initramfs scripts +x again
-- Chris Hofstaedtler <zeha@debian.org> Sat, 30 Jul 2022 14:31:16 +0000
multipath-tools (0.9.0-1) unstable; urgency=medium
* [6f546d1] New upstream version 0.9.0
* [8ff5696] Refresh patches
* [11da4e0] Follow manpages filename changes
* [bde7d75] Install new modules-load.d dropin file
* [1ac2df6] Avoid setting EXTRAVERSION
-- Chris Hofstaedtler <zeha@debian.org> Fri, 29 Jul 2022 22:02:31 +0000
multipath-tools (0.8.8-1) unstable; urgency=medium
[ Utkarsh Gupta ]
* [74952ce] d/t/kpartx-file-loopback: silence gdisk warnings on stderr
* [a3ad859] d/t/tgtbasedmpaths: Use stable wwn-* names in autopkgtest
* [7a22711] d/t/tgtbasedmpaths: Add sleep to allow for device creation
[ Ritesh Raj Sarraf ]
* [9169942] Add some documentation about LVM + DM-Multipath setup.
Thanks to Carlos Barros (Closes: 1001710)
[ Chris Hofstaedtler ]
* [7fcb8ba] New upstream version 0.8.8
* [e63a379] Refresh patches
* [4ab9ce2] Drop old dmsetup_env hack
dmsetup long supports DM_NAME and DM_UUID, and the other variables
are not used anymore.
* [2cd669e] Avoid installing libmpathvalid.so until users appear
-- Chris Hofstaedtler <zeha@debian.org> Sun, 16 Jan 2022 22:57:28 +0000
multipath-tools (0.8.5-2) unstable; urgency=medium
* [373f5c5] Fix bashism in script kpartx/kpartx_id.
Thanks to Julien Cristau (Closes: #987669)
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 28 Apr 2021 22:40:55 +0530
multipath-tools (0.8.5-1) unstable; urgency=medium
[ Ritesh Raj Sarraf ]
* [9e88f52] Add README.alua to docs section
[ Christian Ehrhardt ]
* [7860503] d/t/tgtbasedmpaths: reduce memory pressure avoiding OOM
triggered false positives
[ Chris Hofstaedtler ]
* [859ade1] Update upstream git (and our debian/watch) URL
* [bdc291a] New upstream version 0.8.5
* [83060d2] Rebase patches
* [cb467ba] multipath.rules: Avoid usrmerge paths (Closes: #973853)
* [61df246] kpartx: update package description (Closes: #690995)
* [3262269] Drop 0001-Blacklist-cciss-devices.patch.
Upstream has switched to an exclusive list of devices by default.
Only sd, dasd and nvme devices are seen by multipath now. This makes
the cciss exclusion obsolete.
* [602298a] Follow README.md rename
* [2018daf] Remove obsolete override for lintian tag
init.d-script-does-not-implement-optional-option
-- Chris Hofstaedtler <zeha@debian.org> Wed, 23 Dec 2020 23:53:53 +0000
multipath-tools (0.8.4-4) unstable; urgency=medium
* [637efc8] Remove overly complicated INSTALL_PROGRAM setup.
Thanks to Simon McVittie <smcv@debian.org> (Closes: #968528)
* [d793f77] kpartx, multipath-tools: remove pre-oldstable upgrade code
* [aa2fab9] d/*: trim trailing whitespace
* [1657612] multipath-tools, multipath-tools-boot: update lintian overrides
* [825c1e2] debian/po/de.po: recode to UTF-8
* [ce008ac] Allow (partial) parallel builds
* [6383d2d] d/control: remove relationships satisfied in oldstable
* [bf0e585] d/control: remove version constraints satisfied in oldstable
* [67cff60] Declare debhelper compat version using debhelper-compat
* [6992798] Apply to-be-upstream patch for parallel builds.
Thanks to Christian Hesse <mail@eworm.de>
* [058d79f] Use to-be-upstream patch for json-c update
-- Chris Hofstaedtler <zeha@debian.org> Sun, 30 Aug 2020 01:14:10 +0000
multipath-tools (0.8.4-3) unstable; urgency=medium
* [c8c0700] Fix build with newer json-c.
Thanks to Gianfranco Costamagna <locutusofborg@debian.org> (Closes: #966597)
-- Chris Hofstaedtler <zeha@debian.org> Fri, 31 Jul 2020 09:31:38 +0000
multipath-tools (0.8.4-2) unstable; urgency=medium
* [b270b02] Fix FTBFS with gcc-10 (Closes: #957568)
-- Chris Hofstaedtler <zeha@debian.org> Wed, 22 Jul 2020 22:23:13 +0000
multipath-tools (0.8.4-1) unstable; urgency=medium
* [f4b2af2] kpartx: use correct path to partx in udev rule (Closes: #959727)
* [30806f2] New upstream version 0.8.4 (Closes: #943383)
* [ad742ee] Update patch 0009-hardened-build-flags
-- Chris Hofstaedtler <zeha@debian.org> Sun, 21 Jun 2020 16:23:30 +0000
multipath-tools (0.8.3-1) unstable; urgency=medium
* [6b91b76] New upstream version 0.8.3
* [bd42030] Refresh patches
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 08 Jan 2020 21:45:44 +0530
multipath-tools (0.7.9-3) unstable; urgency=medium
* [51a7724] Reliably extract the running systemd version
(Closes: #924860)
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 18 Mar 2019 20:56:38 +0530
multipath-tools (0.7.9-2) unstable; urgency=medium
* [c2f0c23] Enable proper cross build.
Thanks to Helmut Grohne (Closes: #916521)
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 27 Dec 2018 19:54:40 +0530
multipath-tools (0.7.9-1) unstable; urgency=medium
* [c3bbe11] Fix installation of incorrect file to del-part-nodes.rules.
Thanks to Jean-François Remy (Closes: #914158)
* [9421efd] Add filter config to exclude file .gitignore
* [16da907] New upstream version 0.7.9
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 20 Nov 2018 12:54:25 +0530
multipath-tools (0.7.8-2) unstable; urgency=medium
* [8b8f73c] Update debian/gbp.conf
* Upload to Unstable
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 26 Oct 2018 19:20:27 +0530
multipath-tools (0.7.8-1) experimental; urgency=medium
[ Ritesh Raj Sarraf ]
* [1dea65d] New upstream version 0.7.8 (Closes: #909926)
* [2d9b752] Refresh patches and drop some that are now applied upstream
* [63ac09f] Drop RADOS support
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 23 Oct 2018 19:45:00 +0530
multipath-tools (0.7.7-3) unstable; urgency=medium
[ Chris Hofstaedtler ]
* [fc0938c] Synchronize loading of kernel modules
dm-round-robin is auto-loaded by the kernel if needed, but the
scsi_dh_* modules are not. They need to be loaded before setting
up the mappings. This makes sure all paths (initramfs, early and
late sysvinit and systemd) load the same modules. (Closes: #827407)
* [3d59bff] Add myself to Uploaders:
* [f78c116] Update Priority to be optional instead of deprecated extra
* [7543c5d] debian/tests/control: Fix Restrictions syntax
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 07 Oct 2018 20:50:13 +0530
multipath-tools (0.7.7-2) unstable; urgency=medium
* [315dacd] Also include the wwids file
* [57d84ce] Update NEWS file about systemd integration
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 07 Oct 2018 20:20:57 +0530
multipath-tools (0.7.7-1) unstable; urgency=medium
* [d4529eb] Switch packaging repository to Salsa (Closes: #899615)
* [d2c41ec] Use tracker as maintainer email address
* [1d49dfa] New upstream version 0.7.7
* [012281c] Refresh patches and drop one patch which is merged
upstream
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 12 Jun 2018 11:34:19 +0545
multipath-tools (0.7.4-3) unstable; urgency=medium
[ Ritesh Raj Sarraf ]
* [a22d317] Make build reproducible.
Thanks to Chris Lamb (Closes: #885408)
* [f029a76] Add linux-initramfs-tool as a initramfs dependency
instead of initramfs-tools. This extends multipath to other
implementations like dracut.
Thanks to Thomas Lange (Closes: #887917)
[ Julian Andres Klode ]
* [1b595cb] Move dm-mpath rules from position 11 to position 56
* [6053243] Install dm-parts.rule
* [c1a1a53] Fix /usr/lib/udev to be /lib/udev
* [c80ab6e] Fix 11-dm-mpath.rules to check for DM_UDEV_RULES,
not DM_UDEV_RULES_VSN
* [75d7eff] d/rules: Run dh_clean from clean target
* [83c25f2] Install 68-del-part-nodes.rules
* [5136bc1] Import upstream commit to fix crash in multipathd
* (Closes: #886938)
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 10 Feb 2018 11:23:20 +0530
multipath-tools (0.7.4-2) unstable; urgency=medium
* Upload to Unstable
* [5559c5f] Make the package reproducible across builds.
Thanks to Chris Lamb (Closes: #885408)
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 27 Dec 2017 11:20:03 +0530
multipath-tools (0.7.4-1) experimental; urgency=medium
* [7ea01e0] Fix incorrect reference to bug number.
Thanks to Vincent McIntyre (Closes: 864192)
* [36701c1] Update debian/watch to scan git repository.
Thanks to Vincent McIntyre (Closes: #814363)
* [3117fa1] Fix some lintian warnings about manpages.
Thanks to Vincent McIntyre (Closes: 864476)
* [006b6c4] Update README.source about cleaning up crufts
* [bd8a736] New upstream version 0.7.4
* [543a5b6] Refresh patches. And drop some patches which are no more
relevant
* [19ae7bd] Update gbp.conf to include commit ids
* [afe413f] Add new patch to disable rados linkage in udeb
* [59f3173] Add pkg-config to build dependency
* [743559b] Add libjson-c to build dependency
* [a9f65c9] Update install list for multipath-tools package
* [a79309b] Drop obsolete build dependency
* [cc0d882] Drop old mips linker bug workaround. Shouldn't be needed
anymore
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 22 Dec 2017 11:49:58 +0530
multipath-tools (0.6.4-5) unstable; urgency=medium
* Ship multipath udev rules (Closes: #858456)
* Define some priority for rules processing
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 25 Mar 2017 15:03:08 +0530
multipath-tools (0.6.4-4) unstable; urgency=medium
[ Ritesh Raj Sarraf ]
* [65ba796] Fix path for udevadm, which now resides in /bin.
Thanks to Michael Biebl (Closes: #852586)
* [5291947] Drop non-existent dm-emc module and include
dm-round-robin, in initramfs.
Thanks to Allan Jacobsen (Closes: #855585)
[ Christian Ehrhardt ]
* [6159c78] debian/control: Bump to an updated udev dependency
* [8649315] debian/tests/kpartx-file-loopback: test kpartx
* [137dcc1] add Test using tgt and open-iscsi
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 20 Feb 2017 19:36:31 +0530
multipath-tools (0.6.4-3) unstable; urgency=medium
* [3eecdba] Include libmpathcmd.so in the udeb package.
Thanks to Allan Jacobsen (Closes: #852431)
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 25 Jan 2017 14:58:53 +0530
multipath-tools (0.6.4-2) unstable; urgency=medium
* [98a45ae] Add a break against multipath-tools, which now doesn't
provide the file. Thanks to Andreas Beckmann (Closes: #850772)
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 23 Jan 2017 13:31:59 +0530
multipath-tools (0.6.4-1) unstable; urgency=medium
* [bb9b6bf] New upstream version 0.6.4
* [40f9200] Add patch to cross build from source.
Thanks to Helmut Grohne (Closes: #845746)
* [35c91d3] Refresh patches
* [fbe794c] Add lsb-base to Depends for multipath-tools-boot
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 09 Dec 2016 15:30:50 +0530
multipath-tools (0.6.3-2) unstable; urgency=medium
* [6915af9] Add patch to disable linking to librados in udeb
(Closes: #840157)
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 09 Oct 2016 14:39:08 +0530
multipath-tools (0.6.3-1) unstable; urgency=medium
* [e562899] Update debian/gbp.conf for upstream tag
* [06f6fed] New upstream version 0.6.3
* [c064fd4] Refresh some patches
* [91d2497] Add librados-dev to build depends
* [fe064a4] Update Vcs url to cgit
* [03f2435] Add full versioned dependency on lsb-base. Thanks lintian
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 08 Oct 2016 23:46:04 +0530
multipath-tools (0.6.2-2) unstable; urgency=medium
* Upload to Unstable
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 04 Aug 2016 17:34:29 +0530
multipath-tools (0.6.2-1) experimental; urgency=medium
* [c1c5c8c] Fix manpage about updated kpartx output.
Thanks to Joey Hess (Closes: #796948)
* [622958b] Document behavior of aio-max-nr.
Thanks to Andrew Patterson (Closes: #827322)
* [91ae9e0] Switch back to using pristine-tar
* [0403d08] Imported Upstream version 0.6.2
(Closes: #829496, #830882, #831985)
* [2022378] Refresh patches and drop patches that are merged upstream
* [9bf63b9] Add liburcu-dev to build dependency
* [8e2db83] Update library install list
* [6adda96] Drop FAQ. Removed Upstream
* [10936fc] Bump Standards Version to 3.9.8
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 23 Jul 2016 14:15:18 +0530
multipath-tools (0.6.1-3) unstable; urgency=medium
* Upload to Unstable
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 10 Jun 2016 13:10:18 +0530
multipath-tools (0.6.1-2) experimental; urgency=medium
* [f59f6c1] Bump debhelper version to 9
* [7b3bc71] Drop -dbg package in favor of automatic dbgsym packages
* [c761232] Add patch to fix build failures with unit values on
some architectures
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 01 Jun 2016 17:07:27 +0530
multipath-tools (0.6.1-1) experimental; urgency=medium
* New upstream release
* [80ec942] Refresh patches. And drop disable-blk-availability.patch
Fixed upstream
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 31 May 2016 17:15:04 +0530
multipath-tools (0.5.0+git1.656f8865-9) unstable; urgency=medium
* [41dd269] Add remove condition in prerm script.
Thanks to Andreas Beckmann (Closes: #820031)
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 05 Apr 2016 21:51:14 +0530
multipath-tools (0.5.0+git1.656f8865-8) unstable; urgency=medium
* [ff52e14] Cleanup the breakage introduced in -6 build
(Closes: #818036, #818293)
* [2861458] Fix Vcs-Git URL
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 16 Mar 2016 14:58:20 +0530
multipath-tools (0.5.0+git1.656f8865-7) unstable; urgency=medium
* [72c07f4] Fix kpartx depending of non-existent service.
Thanks to Michael Biebl (Closes: 818036)
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 15 Mar 2016 13:35:08 +0530
multipath-tools (0.5.0+git1.656f8865-6) unstable; urgency=medium
* [c791eeb] Restrict architecture to linux-any because
multipath-tools is a Linux only tool
* [a7baa90] Build binary independent deb package in respective target.
Thanks to Santiago Vila (Closes: #806082)
* [1d35c3c] Fix insecure URIs
* [bfc44fb] Install -boot init script in correct package
* [76cd8dc] Separate m-t-b's lintian overrides
* [715ff28] Add separate lintian overrides for m-t-b
* [7d81d4f] Call clean target before rebuilding with systemd support.
Thanks to Ryan Harper (Closes: #817940)
* [5156f96] Make build cleaner for reproducible builds.
Thanks to Santiago Vila
* Also close other bugs fixed by this release
(Closes: #814625, #817147)
* [9922d0a] Hand install multipath-tools-boot lintian override file
* [7664de3] Add comments to lintian overrides explaning the reason for
the overrides
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 12 Mar 2016 17:47:25 +0530
multipath-tools (0.5.0+git1.656f8865-5) unstable; urgency=medium
* [e91ac62] Fix build to properly generate the arch-independent
package. The previous upload had broken the sanboot setup, courtesy
missing device mapper support in the ramdisk
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 04 Mar 2016 19:11:45 +0530
multipath-tools (0.5.0+git1.656f8865-4) unstable; urgency=medium
* Upload to Unstable
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 19 Jan 2016 17:17:06 +0530
multipath-tools (0.5.0+git1.656f8865-3) experimental; urgency=medium
* [e2039e2] Build arch-independent packages in respective target
(Closes: #806082)
* [7c4b1b3] Refresh patches and annotate them
* [7bc7513] Disable multipath-tools-boot service, when under systemd.
Thanks to Felipe Sateler (Closes: #796631)
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 28 Dec 2015 22:30:53 +0530
multipath-tools (0.5.0+git1.656f8865-2) unstable; urgency=medium
* [84d75e9] Drop dependency on initscripts package.
Thanks to Michael Biebl (Closes: #804962)
* [058b16b] Integrate upstream multipathd.service in Debian.
Thanks to Michel Meyers (Closes: #805444)
* [ac05992] Fix build for arch independent targets (Closes: #806082)
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 19 Dec 2015 14:38:52 +0530
multipath-tools (0.5.0+git1.656f8865-1) unstable; urgency=medium
* [839e135] Add patch to disable systemd for udebs
Thanks Cyril Brulebois (Closes: #800014)
* [dddccc9] Let's now switch away from pristine-tar
* [e621b5a] Delete all dropped patches, mostly merged upstream
* [cf9d7f7] Refresh patches
* [1e12230] Make use of USE_SYSTEMD flag during builds
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 17 Oct 2015 13:23:14 +0530
multipath-tools (0.5.0+git0.770e6d0d-3) unstable; urgency=medium
[ Benjamin Drung ]
* [af3f228] init: Fix stop failure when no root device is found
[ Ritesh Raj Sarraf ]
* Upload to Unstable
* [fd43c41] Drop udev rule to invoke multipath per path.
Thanks to Apollon Oikonomopoulos (Closes: #580972)
* [5ffc2f4] Add documentation to cover additional friendly names
scenarios. Thanks to Scott Moser (Closes: #788841)
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 24 Sep 2015 21:48:55 +0530
multipath-tools (0.5.0+git0.770e6d0d-2) experimental; urgency=medium
* [a24749d] libmultipath: fix discovery of devices with empty rev
sysfs attribute.
Thanks to Mauricio Faria de Oliveira (Closes: #782400)
* [3d0760f] updates for compatibility with property blacklist.
Thanks to Mauricio Faria de Oliveira (Closes: #782488)
* [6763082] Add patch to increase the number of retries
(Closes: #785251, #734794, #608737)
* [b1e5f6f] Add debian/gbp.conf
* [95ef9d7] Add build dependency on systemd
* [d7bd3c8] Call systemd in debian/rules. Also adapt init service
aliasing. Thanks to Michael Biebl
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 01 Sep 2015 23:11:18 +0530
multipath-tools (0.5.0+git0.770e6d0d-1) experimental; urgency=medium
* [36c3df5] Imported git revision 0.5.0+git0.770e6d0d
Upstream is very slow in doing releases
* [283f094] Drop the patch to disable systemd
* [6fd4c28] Refresh patches, and drop some minor ones included upstream
* [3eab5a1] Add libsystemd-dev to Build Dependency
* [ee9a3e8] Add systemd service and socket file to multipath-tools
package.
* [bbbf6e8] Update lintian overrides
* [5dfcd7e] Add Alias=multipath-boot.service for systemd integration
* [340c96a] Refresh patch for quilt
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 09 Aug 2015 14:42:48 +0530
multipath-tools (0.5.0-7) unstable; urgency=medium
* [15ecad9] Add dm-service-time path checker.
Thanks to Mauricio Faria de Oliveira (Closes: #782363)
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 28 May 2015 11:30:00 +0530
multipath-tools (0.5.0-6) unstable; urgency=medium
[ Mauricio Faria de Oliveira ]
* Build multipath-udeb with static libgcc (Closes: #779579)
-- Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com> Tue, 03 Mar 2015 15:52:58 -0300
multipath-tools (0.5.0-5) unstable; urgency=medium
* [5f967eb] Better daemon status in init's status action.
Thanks to Joerg Jaspert (Closes: #755483)
* [8455ce6] Introduce kpartx-udeb.
Thanks to Philip Susi (Closes: #751029)
* [72419cd] Fix syntax error in debian/control file
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 16 Sep 2014 14:59:11 +0530
multipath-tools (0.5.0-4) unstable; urgency=medium
* [55c2ef2] Drop systemd support in multipath-tools
(Closes: #759849, #760182, #760189)
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 05 Sep 2014 17:50:03 +0530
multipath-tools (0.5.0-3) unstable; urgency=medium
* [6c453f2] Install sytemd files into /lib/systemd/system/
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 01 Sep 2014 15:49:28 +0530
multipath-tools (0.5.0-2) unstable; urgency=medium
* [631296d] Add libsystemd-daemon-dev to Build-Dep (Closes: #759849)
* [742c706] Add systemd files
* [0783f2e] Add lintian override because, for systemd, we are
shipping upstream's service file. There is no point in redoing
the whole stuff of renaming the systemd service file.
Also, it is yet to see how systemd will handle many of the pre/post
checks that we had the flexibility to do in the shell init scirpt
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 01 Sep 2014 14:10:40 +0530
multipath-tools (0.5.0-1) unstable; urgency=low
* [955018b] Imported Upstream version 0.5.0
* [10f0910] We now ship the systemd service file
* [9606cde] Drop socket activation through udev rules
* [1fe46fb] Add patch 0012-format-security-build-fixes.patch
* [2678d22] Drop patch 0006-read-only-partition-mappings-manpage.patch
Applied upstream
* [e191244] Drop Conflicts with Breaks
* [0e87578] Add status to init scripts
* [1d3aa3d] Add Italian translation for debconf.
Thanks to Beatrice Torraca (Closes: #729797)
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 09 Mar 2014 16:52:09 +0530
multipath-tools (0.4.9+git0.9c3c5172-1) unstable; urgency=low
* [b6f1bce] Emphasize on the alias feature.
Thanks to Vincent McIntyre (Closes: #716655)
* [3eab3e3] Restore multipath's dependence on dmsetup_env tool.
Thanks to Salvatore Bonaccorso, Gordon Grubert (Closes: #726296, #726311)
* [1bcf079] Imported Upstream version 0.4.9+git0.9c3c5172
* [62c8f71] Update README.source with updated instructions
* [3b4c3db] Enable standard hardening knobs
* [54ea833] Add build dependency on libudev-dev
* [94c01e4] Ship mpath persist manpages in the multipath-tools package
* [d09e731] Update multipath-tools.install for mpathpersist
* [997abf1] Fix Vcs links
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 05 Nov 2013 12:38:57 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-7) unstable; urgency=low
* [8c5d841] Fix upstream copy of kpartx rules (Closes: #618700)
* [a3a6c10] Call PREREQS before calling scripts/functions.
Thanks to Guy Rossin, Michael Prokop
* [7572c53] Don't plain exit if root is on multipath device.
Thanks to Guy Rossin (Closes: #704073)
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 11 Jun 2013 00:14:50 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-6) unstable; urgency=low
* [821cc20] Don't fail if no dm aware (root) device is reported
(Closes: #674733)
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 28 May 2012 18:19:12 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-5) unstable; urgency=low
* [08990d2] Fix root device detection syntax.
Thanks to Bernhard Reutner-Fischer (Closes: #674029)
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 27 May 2012 08:36:40 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-4) unstable; urgency=low
* [8ab1022] Fix path scope in initscript to accomodate awk from /usr
(Closes: #663662)
* [aa5ff3f] Use correct po filename for Brazilian translations.
Thanks to Adriano Rafael Gomes (Closes: #664371)
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 28 Apr 2012 20:21:38 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-3) unstable; urgency=low
* [d46bb8f] Fix hardening build flags (Closes: #657848)
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 12 Mar 2012 20:53:46 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-2) unstable; urgency=low
* Upload to unstable
* [4e3eedb] Drop syslog loggin in initrd.
Thanks to Martin Sofaru (Closes: #661597)
* [787ad2a] Enable hardening build flags.
Thanks to Moritz Muehlenhoff (Closes: #657848)
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 05 Mar 2012 23:30:52 +0530
multipath-tools (0.4.9+git0.4dfdaf2b-1) experimental; urgency=low
* [6771cd8] Don't stop multipathd if root is on a multipathed device
(Closes: #632124)
* [6a08452] Add Dutch Translation.
Thanks to Jeroen Schot (Closes: #655459)
* [e7fc772] Imported Upstream version 0.4.9+git0.4dfdaf2b
* [43d3f10] Fix slow discovery of multipath devices.
Thanks to Laurent Bigonville, Frido Roose (Closes: 646900)
* Dropped Patches
[37827c5] 0002-Make-user_friendly_names-compatible-to-multipath-too.patch
* Patches merged upstream
[2ac8eb8] 0004-add-r-to-make-resulting-device-read-only.patch
[6eee19a] 0008-kpartx-example-manpage.patch
* [3a81caa] Refresh patch 0007-do-not-link-against-ncurses.patch
* [e6f9cdc] install systemd example service under docs
* [0f87973] add build-arch and build-indep targets
* [9d94c2d] fix license name in copyright
* [7884ddc] some more spelling and hyphentation fixes
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 10 Feb 2012 18:25:29 +0530
multipath-tools (0.4.9-3) unstable; urgency=low
* [dd85b8b] Add example to kpartx manpage. Committed upstream.
Thanks to Lars Wirzenius (Closes: 637538)
* [652acf5] Add Brazilian Portuguese debconf templates translation.
Thanks to Flamarion Jorge (Closes: 640802)
* [71df377] Add Danish translation of the debconf templates multipath-tools.
Thanks to Joe Hansen (Closes: #628225)
* [19ab90f] Avoid unnecessary linkage to ncurses library.
Thanks to Sven Joachim (Closes: 646148)
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 03 Dec 2011 19:34:59 +0530
multipath-tools (0.4.9-2) unstable; urgency=low
* [2544655] wait harder for multipath init. Thanks to Serge Hallyn for
the patch
* [eb87e52] switch to 3.0 quilt source format
* [e55a306] explictly mention license copyright
* [52db82f] update vcs headers
* [8313f77] with dpkg > 1.15.7 we now don't need XC
* [8fdf077] update short description for multipath udeb package
* [c409ef3] add misc:Depends for multipath-udeb
* [c890181] take maintenance of package (Closes: #607911)
* [09bbbc8] add debugging symbols package. Thanks to Craig Magina.
(Closes: #609068)
* [2e6f8a7] spelling/hyphen fixes
* [97e02e7] add manpage for read-only mappings
* [5419352] add-r-to-make-resulting-device-read-only. Thanks to Wakko Warner
for the patch (Closes: #504678)
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 05 Mar 2011 03:22:32 +0530
multipath-tools (0.4.9-1) unstable; urgency=low
[ Guido Günther ]
* New upstream version 0.4.9 (Closes: #587315, #595127)
* [500e341] Don't fail "mulitipath-tools start" if multipathd is
already running (Closes: #587678)
* [f4e697c] Drop upstream patches:
* 0001-Fix-udev-rules-for-dmraid.patch
* 0003-fix-URL-to-FAQ.patch
* 0004-check-header-file-for-defintion-of-dm_task_no_flush.patch
* 0005-set-a-soname.patch
* 0006-add-library-dependencies.patch
* 0007-multipath-tools-rdac-path-checked-leads-to-I-O-hang-.patch
* 0010-Dots-are-special-in-groff.patch
* 0011-multipath-fix-offset-for-containted-slices.patch
* [678dcb6] Bindings file moved to /etc/multipath
* [ac2f9d5] Bump standards version
* [baea3a2] Add upstream homepage
* [9daa1b8] Remove /usr from $PATH so lintian doesn't assume we're
calling scripts from $remove_fs.
* [1a3c85e] Update po files
-- Guido Günther <agx@sigxcpu.org> Wed, 01 Sep 2010 15:10:26 +0200
multipath-tools (0.4.8+git0.761c66f-9) unstable; urgency=low
* [0435cc1] Make sure the patchcheckers end up in /lib (Closes: #581377)
* [858f733] New patch 0011-multipath-fix-offset-for-containted- slices.patch
multipath: fix offset for containted slices. (Closes: #586104) - thanks to
Benjamin Marzinski
-- Guido Günther <agx@sigxcpu.org> Wed, 16 Jun 2010 20:02:47 +0200
multipath-tools (0.4.8+git0.761c66f-8) unstable; urgency=low
* [16268d8] Drop path from dmsetup_env call - thanks to Ferenc Wagner
* [2f3bdd5] Use $name in multipath.udev as well - thanks to Ferenc Wagner
for testing
* [c978487] Don't pass -g on mips(el) to work around a binutils bug. See
http://sources.redhat.com/bugzilla/show_bug.cgi?id=10144 for details.
* [9daf438] Make sure we discover multipaths before checkfs/mountall runs
This covers the cornercase where e.g. /home is on multipath (but not on
LVM) and multipath-tols aren't started via initramfs. (Closes: #577172)
* [f7cc840] Bump standards version
-- Guido Günther <agx@sigxcpu.org> Sun, 11 Apr 2010 13:22:35 +0200
multipath-tools (0.4.8+git0.761c66f-7) unstable; urgency=low
* [13f7436] Properly add multipath-udeb to dh_makeshlibs (Closes: #564489) -
thanks to again Frans Pop
-- Guido Günther <agx@sigxcpu.org> Sat, 23 Jan 2010 00:14:04 +0100
multipath-tools (0.4.8+git0.761c66f-6) unstable; urgency=low
* [5b0c7be] Fix dependency on nonexistent multipath-tools udeb (Closes:
#564489) - thanks to Frans Pop
* [c2a06f7] New patch debian/patches/0010-Dots-are-special-in- groff.patch
Dots are special in groff
-- Guido Günther <agx@sigxcpu.org> Sun, 10 Jan 2010 18:10:05 +0100
multipath-tools (0.4.8+git0.761c66f-5) unstable; urgency=low
* [9c68527] Explicitly include posix_types.h to get the correct type for
__kernel_old_dev_t (Closes: #558990)
-- Guido Günther <agx@sigxcpu.org> Sat, 05 Dec 2009 18:14:05 +0100
multipath-tools (0.4.8+git0.761c66f-4) unstable; urgency=low
* [eb7bcf2] Add kpartx_id to initramfs for persistent partition links.
* [7ecd444] Use $name instead of $kernel since 2.6.31 doesn't create
/dev/dm-* anymore.
-- Guido Günther <agx@sigxcpu.org> Sat, 21 Nov 2009 21:11:31 +0100
multipath-tools (0.4.8+git0.761c66f-3) unstable; urgency=low
* upload to unstable
* [f62b619] Tighten multipath-tools-boot dependency Older versions might not
be able to cope with renamed patch checkers, etc.
* [7bb23db] Add udev rules to initramfs This makes the initramfs properly
event based. Once #455979 is fixed in LVM, root on lvm on multipatph can
work reliably. (Closes: #539498)
* [d9fcc80] Another init script dependency fix (Closes: #542370) - thanks to
Petter Reinholdtsen
* [3faab35] redo patches
* [c903696] Make user_friendly_names compatible to multipath-tools 0.4.8 and
earlier
-- Guido Günther <agx@sigxcpu.org> Sat, 21 Nov 2009 18:04:07 +0100
multipath-tools (0.4.8+git0.761c66f-2) experimental; urgency=low
* [34758f1] don't install files into /lib64 on 64 bit architectures - thanks
to Pascal de Bruijn
* [2b0a3da] use libreadline-dev (Closes: #553813)
* [8394b3a] cherry-pick 362d2e5f215894818b52a0d03b723b75917390fb (Closes:
#555901)
-- Guido Günther <agx@sigxcpu.org> Thu, 12 Nov 2009 17:35:28 +0100
multipath-tools (0.4.8+git0.761c66f-1) experimental; urgency=low
* upload current git snapshot to experimental
* [71c9c74] warn about user_friendly_names and suggest using /dev/disk/by-id/
* [329762e] increase locking timeout on bindings file to 30 secs - thanks to
Ritesh Raj Sarraf for the patch
* [759ad9b] add spanish translation (Closes: #528972) - thanks to Fernando
González de Requena
* [7c327fa] add Czech translation (Closes: #533524) - thanks to Tomas Fidler
* [49c78ba] drop patches merged upstream:
* 0001-get-rid-of-arch-specific-ifdef-spaghettis.patch
* 0002--libmultipath-filter_wwid-is-called-with-the-wron.patch
* 0004--kpartx-fix-extended-partition-handling.patch
* 0005--kpartx-remove-partitions-in-reverse-order.patch
* 0006--kpartx-documentation-fixes.patch
* 0007--kpartx-remove-dead-code.patch
* 0008-udev-as-of-0.124-doesn-t-support-scsi_id-s-anymor.patch
* 0011--kpartx-use-uint64_t-to-account-slices-start-size.patch
* 0012--libmultipath-Update-discovery-to-work-with-new-sys.patch
* 0013-multipathd-crash-on-shutdown.patch
* 0014--var-run-multipathd.sock-is-world-writable.patch
* 0015-Increase-timeout-to-30-secs-to-avoid-locking-issue.patch
* [52b5373] checkers and prio callouts are now SOs
* [e493cde] debian/rules: use --fail-missing
* [b1c5baf] devmap_name is no more
* [fd41e76] bump standards version
* [82dc3df] drop iscsi to work around #542370
* [cce7640] new patch:
0004-check-header-file-for-defintion-of-dm_task_no_flush: check the header
file for dm_task_no_flush instead
of one of the installed libs.
* [876a5fb] new patch: 0005-set-a-soname.patch add a soname to libmultipath
* [1912767] new patch 0006-add-library-dependencies.patch add libraries to
the linker call
* [4d1b506] add dh_makeshlibs call
* [1ee06d5] install lib with soname
-- Guido Günther <agx@sigxcpu.org> Sun, 30 Aug 2009 15:53:24 +0200
multipath-tools (0.4.8-15) unstable; urgency=low
* [e3fdd6f] add iscsi as a prereq and add verbose logic from mdadm.
* [9299e3d] On shutdown multipathd flushes its internal message queue
but we have to check if the messages on the queue are not empty.
(Closes: #519252)
* [df5ee21] fix umask of multipathd socket (CVE-2009-0115). Upstream
commit 0a0319d381249760c71023edbe0ac9c093bb4a74. (Closes: #522813)
-- Guido Günther <agx@sigxcpu.org> Mon, 06 Apr 2009 19:36:25 +0200
multipath-tools (0.4.8-14) unstable; urgency=low
* [6dad4a0] kpartx: use uint64_t to account slices start/size based on
65d108fbe. Fixes handling of devices >2TB.
(Closes: #512601) - thanks to Vincent McIntyre for testing
* [1fe965c] fix failure to gather block device information. Cherry-pick
88f88d from upstream: With the new sysfs layout the parent device of a
block device is 'block', and only the parent of this is the 'real' parent.
Fixes problems on kernels >= 2.6.27.
(LP: #307032) - thanks to Jens Langner for forwarding this.
* [85c6d6e] README.Debian: explain howto best access multipath devices
(Closes: #510911) - thanks to Vincent McIntyre
* [a2bf65e] FAQ: fix URL to FAQ - thanks to Vincent McIntyre
* [e65a06d] README.Debian: doc typo
* [a1de95f] add ja debconf translation
(Closes: #512857) - thanks to Hideki Yamane
* [8400b79] rules: drop redo-patches target handled via external script now
* [50eb583] control: fix maintainer name
* [fe7e471] drop superflous headers and footers of patches, no functional
changes
-- Guido Günther <agx@sigxcpu.org> Thu, 29 Jan 2009 10:17:36 +0100
multipath-tools (0.4.8-13) unstable; urgency=low
[ Guido Günther ]
* [5585feb] simplify udev dependency
* [4cc8116] add a versioned dependency on dmsetup (Closes: #497686)
* [9887760] blacklist cciss devices (Closes: #500991)
-- Guido Günther <agx@sigxcpu.org> Fri, 03 Oct 2008 12:42:46 +0200
multipath-tools (0.4.8-12) unstable; urgency=low
* [2ee3c11] udev as of 0.124 doesn't support 'scsi_id -s' anymore
* [736eaa3] ...unfortunately older udev's don't support 'scsi_id -d'
properly so add a conflict
* [49961fa] update bugnumbers for the "dmsetup export" fun
* [82d47a3] bump standards version
* [18fb979] add README.source
-- Guido Guenther <agx@sigxcpu.org> Thu, 21 Aug 2008 09:28:30 +0200
multipath-tools (0.4.8-11) unstable; urgency=low
* [3dadace] use the full path to dmsetup so we don't have to worry about
$PATH
* [33642da] update initramfs during postinst/postrm (Closes: #477839)
* [41391c9] Conflict on etch's multipath-tools-initramfs - together with the
multipath-tools-initramfs NMU from Bernd Zeimetz this provides a clean
upgrade path from etch to lenny for multipath-tools-initramfs users.
* [4f8a5d1] Call multipath via udev on block device add/change events This
helps slow devices when either /etc/init.d/multipath-tools-boot or the
initramfs script are being run although the devices are not ready yet.
(Closes: #489850) - many thanks to Janusz Dziemidowicz for his suggestions
and testing
* [5cbb079] add swedish debconf translation (Closes: #492107) - thanks to
Martin Ågren
* [12639e9] redo quilt patches - no code changes
-- Guido Guenther <agx@sigxcpu.org> Wed, 30 Jul 2008 17:59:03 -0400
multipath-tools (0.4.8-10) unstable; urgency=low
* [183da2c] Add russion debconf translation (Closes: #486353) - thanks
to Yuri Kozlov
* [02b7853] Add pt, de, and fr translations (Closes: #482035, #482845,
#482905) - thanks to the Portuguese Translation Team, Helge
Kreutzmann and Jean Guillou
-- Guido Guenther <agx@sigxcpu.org> Thu, 19 Jun 2008 13:06:09 +0200
multipath-tools (0.4.8-9) unstable; urgency=low
* [958c4b1] attach multipath.conf to bugreports
* [2ac083e] make multipath-tools-boot arch all
* [2eb8b51] Warn about outdated /etc/multipath.conf via debconf. The
changed location of udev's /sbin/scsi_id already hit two people.
Since this renders the system unbootable we should warn about it at
priority critical. (Closes: #481447)
-- Guido Guenther <agx@sigxcpu.org> Sat, 17 May 2008 15:13:40 +0200
multipath-tools (0.4.8-8) unstable; urgency=low
* libdevmapper doesn't ship the init script anymore so drop that and depend
on checkroot instead so we have a defined boot order (Closes: 470063)
* multipath-tools.init: remove superflous stop link in S in the LSB header
* add boot breakage warning to multipath-tools boot
* depend on libdevmapper-dev (>= 2:1.02.20) instead of (>= 2:1.02.20-1)
since this eases backports
* bump standards version
-- Guido Guenther <agx@sigxcpu.org> Sun, 09 Mar 2008 18:55:38 +0100
multipath-tools (0.4.8-7) unstable; urgency=low
* add watch file
* move multipath-tools-boot startup to S21 to allow module-loading
(Closes: #457804)
-- Guido Guenther <agx@sigxcpu.org> Tue, 08 Jan 2008 13:49:18 +0100
multipath-tools (0.4.8-6) unstable; urgency=low
* depend on a libaio that resides in /lib (>= 0.3.106-8) so we can...
* ...drop link-libaio-static.diff
* fix_wwid_blacklist.diff: pulled from upstream to fix blacklisting by
wwid
* kpartx-docfix.diff: document -g
* kpartx-remove-dead-code.diff: remove unused commandline option
* kpartx-fix-extpart-rm.diff: fix partition removal of extended
partitions
-- Guido Guenther <agx@sigxcpu.org> Sat, 01 Dec 2007 15:41:36 +0100
multipath-tools (0.4.8-5) unstable; urgency=low
* apply kpartx-fix-udev-dmraid.diff to our shipped udev rules too
* fix itemized list in control file (Closes: #441176)
* link statically against libaio since it's in /usr/lib and
multipath{,d} are in /sbin and we can avoid a libaio udeb for now
* build a udeb for d-i support (Closes: #440334)
-- Guido Guenther <agx@sigxcpu.org> Fri, 07 Sep 2007 19:47:05 +0200
multipath-tools (0.4.8-4) unstable; urgency=low
* split out initramfs support into a separate package (Closes: #440206)
* copy persistent bindings into initramfs
* debian/rules: don't ignore errors on clean (to make lintian happy)
* multipath-tools-boot.sh: add Default-Stop pseudo header
-- Guido Guenther <agx@sigxcpu.org> Fri, 31 Aug 2007 09:47:35 +0200
multipath-tools (0.4.8-3) unstable; urgency=low
* add a prerm script to handle updates from broken versions that don't allow
for a stopped multipathd in the init script, really (closes: #439126).
-- Guido Guenther <agx@sigxcpu.org> Sun, 26 Aug 2007 10:24:49 +0200
multipath-tools (0.4.8-2) unstable; urgency=low
* initramfs: mpath_prio_tpc has been renamed to mpath_prio_rdac
* fetch patches by Hannes Reinecke from dm-devel:
* fix udev rule for dmraid: kpartx-fix-udev-dmraid.diff
* fix extended partition calculation in kpartx: kpartx-fix-extpart.diff
* fix DEB_BUILD_OTIIONS=nostrip (Closes: #437596)
-- Guido Guenther <agx@sigxcpu.org> Mon, 13 Aug 2007 18:32:12 +0200
multipath-tools (0.4.8-1) unstable; urgency=low
* new upstream release
* drop clariion-fix-read-buffer.diff, applied upstream
* init script: don't fail the stop target if multipathd
* conflict with multipath-tools-initramfs
-- Guido Guenther <agx@sigxcpu.org> Sat, 04 Aug 2007 13:08:52 +0200
multipath-tools (0.4.7-9) unstable; urgency=low
* fix segfault on EMC Clariions
* add initramfs hooks to support rootfs on multipath
* version the dependency on dmsetup since the one from etch doesn't
support -oattr needed by dmsetup_env
* use LSB functions in init scripts
-- Guido Guenther <agx@sigxcpu.org> Tue, 31 Jul 2007 14:01:00 +0200
multipath-tools (0.4.7-8) unstable; urgency=low
* since Debian's dmestup doesn't include the "export" patch used by other
distros (#434241), work around this by implementing a minimal dmsetup_env
that can be used by kpartx.udev (Closes: #376161)
* add LSB headers to init scripts
-- Guido Guenther <agx@sigxcpu.org> Sat, 28 Jul 2007 17:34:48 +0200
multipath-tools (0.4.7-7) unstable; urgency=low
* create build dirs (Closes: #425910)
* forward to upstream git b413c9dbe554c2d50aba7c6446ec86f850cf8dde
* drop libmultipath-cache-sysfs_devices.diff, applied upstream
-- Guido Guenther <agx@sigxcpu.org> Fri, 27 Jul 2007 22:25:29 +0200
multipath-tools (0.4.7-6) unstable; urgency=low
* kpartx.udev: fix path to kpartx_id
* install kpartx_id
* debian/control: add XS-Vcs-Browser
-- Guido Guenther <agx@sigxcpu.org> Sun, 22 Jul 2007 15:38:05 +0200
multipath-tools (0.4.7-5) unstable; urgency=low
* forward to upstream git 00fe3ac6ff515bec4a2c7385d6e2e4a7ed5dfb36
* new patch: libmultipath-cache-sysfs_devices.diff (Closes: #433949)
-- Guido Guenther <agx@sigxcpu.org> Fri, 20 Jul 2007 23:15:27 +0200
multipath-tools (0.4.7-4) unstable; urgency=low
* move to git
* Drop patches applied upstream:
* fix-segfault-on-disappearing-paths.diff
* exclude-quilt.diff
* scsi_id.diff
* Makefile_cleanups.diff
* use dh_installudev
* no need to build-depend on libsysfs-dev anymore
* build-depend on libaio-dev
-- Guido Guenther <agx@sigxcpu.org> Fri, 29 Jun 2007 11:31:28 -0400
multipath-tools (0.4.7-3) experimental; urgency=low
* forward to upstream git as of 178b93111d54828a89ad280c0aaaea0812343a6a
(Closes: #427532, #365363)
* adjust scsi_id.patch to apply again
* drop udev.patch, not needed
* make sure multipath-tools-init runs after udev so the /dev/mapper/
entries appear in the correct place
* debhelper version 5 (Closes: #425910)
* split out kpartx into a separate package (Closes: #422600)
-- Guido Guenther <agx@sigxcpu.org> Fri, 08 Jun 2007 11:51:00 +0200
multipath-tools (0.4.7-2) unstable; urgency=low
[ Bastian Blank ]
* Use /lib/udev/scsi_id. (closes: #358985)
[ Guido Guenther ]
* Acknowledge NMU - thanks John! (closes: #382244)
* use quilt for the git patch
* remove Bastian and Andres from Uploaders on their request
* cleanup pp_hds_modular so the package is rebuildable several times
* scsi_id.diff, Makefile-cleanups.diff, remove-arch-ifdefs.diff, udev.diff:
split out Debian's modifications into separate patches
* remove now superflous multipath.sh (closes: #350814)
* bump standards version to 3.7.2 (no source changes)
-- Guido Guenther <agx@sigxcpu.org> Wed, 20 Dec 2006 17:40:59 +0100
multipath-tools (0.4.7-1.1) unstable; urgency=medium
* Added missing dependency on dmsetup. Closes: #381068.
* Fixed PID file handling. Closes: #294066.
* Pulled in numerous fixes from upstream git tree to fix
various segfaults, spewing garbage onto the console, etc.
Tree is now synced to upstream git as of commit
40b575955cc189aa993e6a030b66b5fef6bcf288 on July 19, 2006,
which is the current state of the upstream tree. Closes: #382214.
-- John Goerzen <jgoerzen@complete.org> Wed, 9 Aug 2006 11:52:08 -0500
multipath-tools (0.4.7-1) unstable; urgency=low
* New upstream version.
- Build against libsysfs2. (closes: #355775)
* Acknowledge NMU. (closes: #337081)
-- Bastian Blank <waldi@debian.org> Fri, 17 Mar 2006 17:23:03 +0100
multipath-tools (0.4.6-1) unstable; urgency=low
* New upstream version.
-- Bastian Blank <waldi@debian.org> Thu, 09 Feb 2006 22:12:52 +0100
multipath-tools (0.4.5-3) unstable; urgency=low
* Fix kpartx compiling errors and dos support.
-- Bastian Blank <waldi@debian.org> Fri, 30 Sep 2005 13:01:55 +0200
multipath-tools (0.4.5-2) unstable; urgency=low
* Move boot init script before udev and load dm-multipath module.
-- Bastian Blank <waldi@debian.org> Wed, 28 Sep 2005 19:35:49 +0200
multipath-tools (0.4.5-1) unstable; urgency=low
* New upstream version.
* Move device check logic to udev rules.
* Don't longer create devices in /dev by default.
-- Bastian Blank <waldi@debian.org> Mon, 19 Sep 2005 16:32:00 +0200
multipath-tools (0.4.2.4-2) unstable; urgency=medium
* New maintainer.
* Rebuild against new libdevmapper.
-- Bastian Blank <waldi@debian.org> Fri, 04 Mar 2005 15:16:30 +0100
multipath-tools (0.4.2.4-1) unstable; urgency=low
* New upstream.
NOTE: This is actually upstream's 0.4.2 but 0.4.2.3 came first for some
reason.
* Use start-stop-daemon to control the multipathd daemon and do it's own
PID file handling (which is now commented out of the daemon itself)
-- Patrick Caulfield <patrick@debian.org> Fri, 28 Jan 2005 15:15:01 +0000
multipath-tools (0.4.2.3-1) unstable; urgency=low
* New upstream
* Remove initrd files as they break things.
Closes: #288150
* Fix some duplicate patching.
-- Patrick Caulfield <patrick@debian.org> Mon, 17 Jan 2005 11:19:20 +0000
multipath-tools (0.4.1-1) unstable; urgency=low
* New upstream
Closes: #295926, #286789
* Include initrd scripts contributed by Guido Guenther
Closes: #286791
-- Patrick Caulfield <patrick@debian.org> Thu, 13 Jan 2005 09:25:42 +0000
multipath-tools (0.4.0-1) unstable; urgency=low
* New upstream
-- Patrick Caulfield <patrick@debian.org> Fri, 24 Dec 2004 11:54:44 +0000
multipath-tools (0.3.9-1) unstable; urgency=low
* New upstream
-- Patrick Caulfield <patrick@debian.org> Tue, 7 Dec 2004 13:15:15 +0000
multipath-tools (0.3.8-1) unstable; urgency=low
* New upstream
* Fix error in preinst, when upgrading.
* Don't clean klibc directory.
Closes: #283043
-- Patrick Caulfield <patrick@debian.org> Mon, 29 Nov 2004 08:56:50 +0000
multipath-tools (0.3.7-1) unstable; urgency=low
* New upstream
-- Patrick Caulfield <patrick@debian.org> Sat, 13 Nov 2004 11:14:35 +0000
multipath-tools (0.3.6-1) unstable; urgency=low
* Initial upload. Based loosely on upstream's work
Closes: #277898
-- Patrick Caulfield <patrick@debian.org> Wed, 3 Nov 2004 10:16:34 +0000
|