1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
|
nbd (1:3.21-1+deb11u1) bullseye-security; urgency=medium
* Cherry-pick fixes for CVE-2022-26495 and CVE-2022-26496 from git
master; Closes: #1006915.
* Fix parsing of nbdtab in nbd-client; Closes: #1003863.
-- Wouter Verhelst <wouter@debian.org> Wed, 09 Mar 2022 10:02:32 +0200
nbd (1:3.21-1) unstable; urgency=medium
* New upstream release.
-- Wouter Verhelst <wouter@debian.org> Mon, 18 Jan 2021 20:51:42 +0200
nbd (1:3.20-1) unstable; urgency=medium
* New upstream release
-- Wouter Verhelst <wouter@debian.org> Mon, 16 Sep 2019 09:05:42 +0200
nbd (1:3.19-3) unstable; urgency=medium
* debian/control: add docbook-utils to build-depends. This shouldn't
strictly be necessary, but it's the quickest fix that allows the
package to build again... Closes: #922383
-- Wouter Verhelst <wouter@debian.org> Sun, 17 Feb 2019 10:51:59 +0200
nbd (1:3.19-2) unstable; urgency=medium
* Don't remove nonexisting files...
-- Wouter Verhelst <wouter@debian.org> Fri, 15 Feb 2019 06:25:31 +0100
nbd (1:3.19-1) unstable; urgency=medium
* New upstream release
* Document the fact that we're using template units. Closes: #908977.
[ Jelmer Vernooij ]
* debian/source/format: Set source format to "1.0". Fixes lintian error
unknown-source-format.
-- Wouter Verhelst <wouter@debian.org> Thu, 14 Feb 2019 14:06:59 +0100
nbd (1:3.18-1) unstable; urgency=medium
* New upstream release
* debian/control: update Vcs-* package fields to point to salsa, not
alioth.
* debian/control: bump Standards-Version to 4.1.3 (no relevant changes)
* debian/control: limit the libnl-genl-dev dependency to linux-any
(since nbd-client isn't built on !linux)
-- Wouter Verhelst <wouter@debian.org> Sat, 18 Aug 2018 17:19:50 +0200
nbd (1:3.17-2) unstable; urgency=medium
* Add missing build-dependency on libnl-genl-dev
-- Wouter Verhelst <wouter@debian.org> Sat, 17 Mar 2018 22:48:11 +0100
nbd (1:3.17-1) unstable; urgency=medium
* New upstream release.
* Defaults to using the netlink interface rather than the ioctl one.
-- Wouter Verhelst <wouter@debian.org> Fri, 16 Mar 2018 19:23:31 +0100
nbd (1:3.16.2-1) unstable; urgency=medium
* New upstream release
* Add missing After=network-online.target to nbd@ systemd unit.
Closes: #862531.
* Updated translations:
- French, by Alban Vidal; closes: #865988
-- Wouter Verhelst <wouter@debian.org> Wed, 13 Sep 2017 16:52:45 +0200
nbd (1:3.15.2-3) unstable; urgency=medium
* tests/run/certs/client-cert.pem: regenerate with a certificate
validity of 10 years rather than 1, so that the test suite does not
fail.
-- Wouter Verhelst <wouter@debian.org> Mon, 24 Apr 2017 18:45:17 +0200
nbd (1:3.15.2-2) unstable; urgency=medium
* Fix support for NFS-style exports that have ":/" in the name, to be
better at backwards compatibility. Patch from Vagrant Cascadian;
Closes: #846998. Thanks, Vagrant.
* Fix IPv6 case of port-specifying exports, too. Patch by Vagrant as
well; Closes: #840612.
* Fix up Makefile.am so it really works on kFreeBSD, now, and rerun
autotools.
* Change configure.ac to hardcode version number rather than regenerating it
from git tags (which doesn't work on the Debian branch...)
-- Wouter Verhelst <wouter@debian.org> Tue, 21 Mar 2017 14:41:37 +0100
nbd (1:3.15.2-1) unstable; urgency=medium
* New upstream release
- Fixes data corruption with multiple threads and copyonwrite enabled;
Closes: #852288, #849504. Why did I create multiple bugs for this?
Ah well, no matter.
-- Wouter Verhelst <wouter@debian.org> Wed, 22 Feb 2017 00:09:31 +0100
nbd (1:3.15.1-2) unstable; urgency=medium
* Build nbd-client a second time with GnuTLS disabled, and install
that into nbd-client-udeb; Closes: #848862.
-- Wouter Verhelst <wouter@debian.org> Tue, 20 Dec 2016 20:36:11 +0100
nbd (1:3.15.1-1) unstable; urgency=medium
* New upstream version; fixes WRITE_ZEROES with STARTTLS combination
(one-line fix).
-- Wouter Verhelst <wouter@debian.org> Tue, 20 Dec 2016 12:22:53 +0100
nbd (1:3.15-1) unstable; urgency=medium
* New upstream version
- Add STARTTLS support; Closes: #409529
* debian/control: build-depend on libgnutls28-dev to support the
STARTTLS code.
-- Wouter Verhelst <wouter@debian.org> Tue, 20 Dec 2016 01:08:18 +0100
nbd (1:3.14-4) unstable; urgency=medium
* debian/nbd-server.postinst, debian/nbd-server.templates: remove
leftover bits of pre-lenny upgrade support of nbd-server
configuration, that somehow wasn't removed in 1:3.1-1
* Cherry-pick one commit from upstream git to fix systemd unit
* Add missing / at the end of the nbdpath= assignment in
nbd-client.initrd. Closes: #840612.
* Updated translations:
- Danish, by Joe Dalton <joedalton2@yahoo.dk>; Closes: #830600.
- Dutch, by yours truly. Unfortunately, while this translation was
sitting in git, Frans Spiesschaert <Frans.Spiesschaert@yucom.be>
also submitted a Dutch translation. Keeping my original, but
thanks anyway, Frans; Closes: #834620.
- German, by Chris Leick <c.leick@vollbio.de>; Closes: #842495.
- Brazilian Portuguese, by Adriano Rafael Gomes
<adrianorg@arg.eti.br>; Closes: #824335.
-- Wouter Verhelst <wouter@debian.org> Mon, 21 Nov 2016 22:53:37 +0100
nbd (1:3.14-3) unstable; urgency=medium
* Fix nbd-client postinst file. Closes: #830187
* Updated translations:
- Portuguese, by Américo Monteiro <a_monteiro@gmx.com>; Closes:
#829394.
-- Wouter Verhelst <wouter@debian.org> Thu, 07 Jul 2016 15:21:54 +0200
nbd (1:3.14-2) unstable; urgency=medium
* Fix up override_dh_auto_build hack so it doesn't trigger when not
building from git checkout
* debian/nbd-client.init.d: ignore comments in nbdtab
-- Wouter Verhelst <wouter@debian.org> Fri, 01 Jul 2016 17:45:16 +0200
nbd (1:3.14-1) unstable; urgency=medium
* New upstream release.
- Adds systemd unit for nbd-client; Closes: #796633.
- Fixes usage of AF_UNIX addresses, fixing the build on kFreeBSD;
Closes: 815445
* Remove cruft from build directory.
* debian/rules:override_dh_auto_build: test for cruft in git checkout
before allowing a build, to avoid unclean uploads in the future.
* debian/nbd-client.init.d: convert uses of /etc/nbd-client to
/etc/nbdtab
* debian/nbd-client.config: remove
* debian/nbd-client.postinst: drop generation of /etc/nbd-client, but
generate /etc/nbdtab from /etc/nbd-client if it exists and nbdtab is
still the original unmodified nbdtab file that is shipped as a
conffile.
* debian/nbd-client.templates: remove most templates, reword the one
that is still used, add a second one. This invalidates most debconf
translations, but leaves the nbd-server ones in place.
* Updated translations:
- Japanese, by Takuma Yamada; Closes: #815953.
-- Wouter Verhelst <wouter@debian.org> Thu, 30 Jun 2016 22:33:45 +0200
nbd (1:3.13-1) unstable; urgency=medium
* New upstream release.
- Adds missing LFS includes in the treefiles.c file too, and fixes a race
condition in the creation of tree files, so that it doesn't fail on
little-endian 32-bit architectures and randomly elsewhere. Closes: #809581
-- Wouter Verhelst <wouter@debian.org> Mon, 04 Jan 2016 11:26:41 +0100
nbd (1:3.12.1-2) unstable; urgency=medium
* Drop dependency on initscripts. Closes: #804991.
* Install nbdtab.5 manpage
* tests/code/trim.c: add missing #include for lfs.h, so that off_t is
typedef'd with the LFS defines active. This should fix various FTBFS
errors.
* Cherry-pick ee0b0c9a from git HEAD to fix the location of the
readit() function in cliserv.c, so it is defined if WORDS_BIGENDIAN
is active, too.
* Updated translations:
- French, by Christian Perrier; Closes: #809020.
-- Wouter Verhelst <wouter@debian.org> Tue, 29 Dec 2015 02:40:33 +0100
nbd (1:3.12.1-1) unstable; urgency=medium
* New upstream release
- Fixes listening on IPv6; Closes: #803795.
- Fixes unrepeated use of read() system call; Closes: #703052.
* Merge never-released branch targeted at experimental, which dealt
with the fact that the oldstyle handshake protocol is no longer
supported in nbd upstream.
* Update debconf translation changes introduced in 1:3.10-1~1:
- Dutch, by yours truly
- Portuguese, by Américo Monteiro; Closes: #801911
- Russian, by Yuri Kuzlov; Closes: #801883
- Danish, by Joe Dalton.
- German, by Chris Leick; Closes: #802201
- Czech, by Miroslav Kure; Closes: #803224
- Spanish, by Camaleón; Closes: #803308
-- Wouter Verhelst <wouter@debian.org> Wed, 11 Nov 2015 11:04:37 +0100
nbd (1:3.10-1) unstable; urgency=medium
* New upstream release.
- Includes new "cowdir" option; Closes: #470963.
* Cherry-pick patch for CVE-2015-0847 from git HEAD; Closes: #784657.
-- Wouter Verhelst <wouter@debian.org> Sun, 17 May 2015 10:49:32 +0200
nbd (1:3.10-1~1) experimental; urgency=medium
* New upstream release.
- Drops support for oldstyle (port-based) exports; only name-based
exports are supported anymore.
* In light of the above, remove support for port-based exports from
debconf code.
* While at it, remove configuration upgrade routines needed only for upgrades
from etch (!) and older
-- Wouter Verhelst <wouter@debian.org> Fri, 20 Mar 2015 10:13:17 +0100
nbd (1:3.8-4) unstable; urgency=medium
* Rebuild without loads of junk from other branches. My previous build
happened in an unclean git checkout; there was a lot of stuff in the
source package that was not changing the behaviour of the code, yet
was still producing noise in the package. Removed.
-- Wouter Verhelst <wouter@debian.org> Wed, 25 Feb 2015 21:06:01 +0100
nbd (1:3.8-3) unstable; urgency=medium
* Brown paper bag release.
* Add missing double-semicolon (whoops). Closes: #766888.
-- Wouter Verhelst <wouter@debian.org> Wed, 29 Oct 2014 23:44:25 +0100
nbd (1:3.8-2) unstable; urgency=medium
* The "deal with 727708" release
* Add some initial support for systemd: Call nbd-client with the
-systemd-mark option from initramfs, to make sure root-on-NBD continues
working properly even if the user is running systemd. Still leaves
writing a systemd generator mumble mumble thing, but that's for
later.
* debian/pre{inst,rm}: remove, no content
* debian/nbd-client.initr{amfs-hook,d}: don't force-load nbd, instead
only load the module if we're actually doing root-on-NBD.
* debian/nbd-server.init.d: add reload target, which sends SIGHUP to
nbd-server. This allows partial reconfiguration from the config
file; however, since it doesn't change existing configurations nor
remove configurations that are no longer active, it's not a full
reload, so leave force-reload as restart. LP:1359799
-- Wouter Verhelst <wouter@debian.org> Mon, 19 May 2014 08:41:54 +0200
nbd (1:3.8-1) unstable; urgency=medium
* New upstream release.
-- Wouter Verhelst <wouter@debian.org> Fri, 21 Mar 2014 11:05:38 +0100
nbd (1:3.7-1) unstable; urgency=low
* New upstream release
- Fixes missing include for LFS definitions; Closes: 735258
-- Wouter Verhelst <wouter@debian.org> Tue, 21 Jan 2014 22:38:18 +0100
nbd (1:3.6-1) unstable; urgency=medium
* New upstream release
- Fixes parsing of authorization file; Closes: #676678, LP: #1009393.
* Install nbd-trdump into the nbd-server package, so people can
actually see what the transaction file contains
-- Wouter Verhelst <wouter@debian.org> Fri, 03 Jan 2014 23:58:17 +0100
nbd (1:3.5-1) unstable; urgency=low
* New upstream release
- Closes CVE-2013-6410: incorrect parsing of the authfile access
list (also DSA-2806-1).
* Really add Japanese translation, by "victory" and the Japanese
translation team. I had intended to add that for 3.4-1, but
apparently I did something wrong, and the file ended up being empty.
Not so anymore. Closes: #718996, really this time.
-- Wouter Verhelst <wouter@debian.org> Tue, 26 Nov 2013 14:10:44 +0100
nbd (1:3.4-2) unstable; urgency=low
* Disable integrityhuge again; it still fails.
* Wait for udev from nbd-client initramfs script. Closes: #721936.
* On purge, remove /etc/nbd-client.bak if it exists. Closes: #682188.
-- Wouter Verhelst <wouter@debian.org> Tue, 05 Nov 2013 16:51:16 +0100
nbd (1:3.4-1) unstable; urgency=low
* New upstream release
* Add Japanese translation, by "victory" and the Japanese translation
team; Closes: #718996.
-- Wouter Verhelst <wouter@debian.org> Mon, 07 Oct 2013 19:03:24 +0200
nbd (1:3.3-3) unstable; urgency=low
* Cherry-pick commit 6acf949 from git head to make builds work again
on machines that have a hard limit for coredumps (like the mipsel
buildd).
-- Wouter Verhelst <wouter@grep.be> Sat, 18 May 2013 11:28:26 +0200
nbd (1:3.3-2) unstable; urgency=low
* Re-upload to unstable
-- Wouter Verhelst <wouter@grep.be> Tue, 14 May 2013 22:16:24 +0200
nbd (1:3.3-1) experimental; urgency=low
* New upstream release. Not uploaded to unstable, since we're waiting
for a fix to migrate to testing there, but we can do the
experimental upload in the mean time.
-- Wouter Verhelst <wouter@debian.org> Thu, 11 Apr 2013 10:38:04 +0200
nbd (1:3.2-4) unstable; urgency=low
* Unbreak 'nbd-client -l' behaviour; patch by Rogier
<rogier777@gmail.com>. Closes: #699374. Why oh why did I forget that
with the previous upload? Oh well.
-- Wouter Verhelst <wouter@debian.org> Thu, 28 Mar 2013 21:58:35 +0100
nbd (1:3.2-3) unstable; urgency=low
* Fix handling of NBD_NAME variable in nbd-client initscript. Patch by
Rogier <rogier777@gmail.com>. Closes: #699372.
* Steal stability fixes from git head:
- fix for handling of zero-sized read request
- fix for integer output format string
- fix for 64-bit offset wrapover.
- remove double cast which results in data loss
* Change Standards-Version: to 3.9.4. The only change relevant to nbd
is the /run transition, but as we were already compliant with that
since 1:2.9.23-3, nothing relevant is left.
-- Wouter Verhelst <wouter@debian.org> Wed, 06 Mar 2013 12:21:03 +0100
nbd (1:3.2-2) unstable; urgency=low
* Update build-dependencies: Build-depend on debhelper 9 (we already
say 9 in debian/compat, so this is just stating what's effectively
already the case), and tighten libglib2.0-dev dependency, since
nbd-server requires at least 2.26 these days.
* Change nbd-client-udeb from Architecture: <long list> to
Architecture: linux-any, similarly to how it's done for nbd-client.
I keep forgetting about this teensie tiny thing here. Oh well.
* Ack NMU
-- Wouter Verhelst <wouter@debian.org> Sat, 08 Sep 2012 19:38:02 +0200
nbd (1:3.2-1.1) unstable; urgency=low
* Non-maintainer upload.
* Fix pending l10n issues. Debconf translations:
* Czech (Miroslav Kure). Closes: #681702
-- Christian Perrier <bubulle@debian.org> Sun, 05 Aug 2012 09:49:21 +0200
nbd (1:3.2-1) unstable; urgency=low
* New upstream release. Includes many stability fixes, so hopefully
this will get a freeze exception.
-- Wouter Verhelst <wouter@debian.org> Tue, 03 Jul 2012 16:53:20 -0600
nbd (1:3.1.1-1) unstable; urgency=low
* New upstream release, with a few minor but crucial bugfixes.
* Update Vcs-Git: header to point to the correct repository URL
-- Wouter Verhelst <wouter@debian.org> Fri, 25 May 2012 10:30:54 +0200
nbd (1:3.1-2) unstable; urgency=low
* Cherry-pick commit f540626 from git HEAD to fix needed_flags
initialization in nbd-client. Closes: #673471.
* Apply patch from Vagrant Cascadian to remove /etc/nbd-server/config
on purge (apparently ucf does *not* do that for you). Closes:
#673471.
-- Wouter Verhelst <wouter@debian.org> Sat, 19 May 2012 10:27:29 +0200
nbd (1:3.1-1) unstable; urgency=low
* New upstream release
- Contains fixes for alignment issues in test suite; Closes: 653653.
* Remove upgrade support for pre-2.9 nbd-server config files. This is
pre-lenny, so it's been long enough.
* Make sure /etc/nbd-server/config is created in all cases. Closes:
#671911.
* New and updated translations:
- Italian, by Beatrice Torracca; Closes: #663133.
- Dutch, by Jeroen Schot; Closes: #663555.
- Danish, by Joe Dalton; Closes: #671091.
-- Wouter Verhelst <wouter@debian.org> Tue, 15 May 2012 21:58:25 +0200
nbd (1:3.0-1) unstable; urgency=low
* New upstream release
- Fixes build failure for when FALLOC_FL_PUNCH_HOLE isn't available.
Closes: #660399.
* Switch to debhelper compat level 9, to enable build flags support.
Closes: #653954.
-- Wouter Verhelst <wouter@debian.org> Tue, 21 Feb 2012 11:13:31 +0100
nbd (1:2.9.25-2) unstable; urgency=low
* Add support for yet more ways to netboot on NBD, this time to help
our friends of LTSP.
* Update documentation to reflect new possibilities, and refactor it a
bit so it's more clear now.
* Update standards-version to 3.9.2 (no changes applicable to nbd)
* use #if, not #ifdef. Closes: #651116
-- Wouter Verhelst <wouter@debian.org> Thu, 29 Dec 2011 20:56:15 +0100
nbd (1:2.9.25-1) unstable; urgency=low
* New upstream release
-- Wouter Verhelst <wouter@debian.org> Tue, 29 Nov 2011 08:54:48 +0100
nbd (1:2.9.24-3) unstable; urgency=low
* Actually add the includedir statement to the default configuration
file, so that it can be used. D'oh.
-- Wouter Verhelst <wouter@debian.org> Sun, 02 Oct 2011 11:42:37 +0200
nbd (1:2.9.24-2) unstable; urgency=low
* Cherry-pick 7eca128845ed86754b526bf7f920ad65b95c931d from git HEAD
to fix includedir configuration statement on kFreeBSD.
-- Wouter Verhelst <wouter@debian.org> Sun, 02 Oct 2011 11:35:05 +0200
nbd (1:2.9.24-1) unstable; urgency=low
* New upstream release.
- Adds support for directory of config file snippets, by request of
Vagrant Cascadian.
* Fix syntaxis of test for nbd-client connectivity. Closes: #641882.
-- Wouter Verhelst <wouter@debian.org> Sat, 01 Oct 2011 12:29:21 +0200
nbd (1:2.9.23-4) unstable; urgency=low
* Fix dh_installinit invocation. LP: #822304.
* Properly quote variables in nbd-client initscript and postinst.
Closes: #636401. Minor change to the patch: do not quote NBD_EXTRA
variables, as that one is supposed to be able to contain multiple
values.
* Also properly quote nbd-client.config. Closes: #628388.
* Improve error handling in nbd-client initscript. Closes: #628389
-- Wouter Verhelst <wouter@debian.org> Mon, 05 Sep 2011 23:34:20 +0200
nbd (1:2.9.23-3) unstable; urgency=low
* Disable integrityhuge test for now, as it deadlocks on some
architectures for no good reason.
-- Wouter Verhelst <wouter@debian.org> Fri, 22 Jul 2011 22:51:31 +0200
nbd (1:2.9.23-2) unstable; urgency=low
* Add missing dependency on initscripts (>= 2.88dsf-13.3), as the
bugreport tells me to, so that the migration to /run in the previous
upload doesn't break.
* Fix 32/64 bit pointer confusion, so that specifying a file size in
the config file works on big-endian architectures, too.
* Make oversized request log occur only once per client, so that we
don't overrun the buildd timeout on the integrityhuge test.
-- Wouter Verhelst <wouter@debian.org> Wed, 20 Jul 2011 21:00:50 +0200
nbd (1:2.9.23-1) unstable; urgency=low
* New upstream release.
* Migrate use of /lib/init/rw/sendsigs.omit.d to /run/sendsigs.omit.d.
Closes: #633032.
* Steal commit 4659322a6dee9cce51130df7e4d805bd6b0cb0c5 from git HEAD
so that it will actually work on FreeBSD again. I hope.
-- Wouter Verhelst <wouter@debian.org> Wed, 20 Jul 2011 19:02:30 +0200
nbd (1:2.9.22-3) unstable; urgency=low
* Add a delay between tests, so that 'make check' works again, rather
than failing to open a port. A proper fix for this was released
upstream, but that needs a bit of a wait, so this workaround should
be fine.
-- Wouter Verhelst <wouter@debian.org> Tue, 28 Jun 2011 22:07:46 +0200
nbd (1:2.9.22-2) unstable; urgency=low
* Make it a non-native package again.
* Updated translations:
- Swedish, by Martin Bagge; Closes: #628962
-- Wouter Verhelst <wouter@debian.org> Mon, 06 Jun 2011 13:09:51 +0200
nbd (1:2.9.22-1) unstable; urgency=low
* New upstream release
- Fixes CVE-2011-1925; Closes: #627042.
- Fixes a number of data corruption bugs in the handling of oversized
requests.
- Has far better test suite coverage.
- Adds -d option to nbd-server to run non-detached; Closes: #557809.
-- Wouter Verhelst <wouter@debian.org> Sun, 29 May 2011 09:40:55 +0200
nbd (1:2.9.21-1) unstable; urgency=low
* New upstream release
- Fixes a number of crashing bugs.
-- Wouter Verhelst <wouter@debian.org> Mon, 09 May 2011 20:15:01 +0200
nbd (1:2.9.20-3) unstable; urgency=low
* Fix incorrect getopt() usage (getopt returns an int, not a char, which
resulted in infinite loops on architectures that have unsigned chars by
default). This is the actual fix for what was originally reported as
#611722, but then another issue popped up there and I got confused.
I should have cloned the bug rather than think I fixed it with the
upload, but then this new bugreport was opened, so let's not do that
and rename the old. Or something. Closes: 613938.
* Updated translations:
- German, by Chris Leick; Closes: #613712.
- Spanish, by Camaleón; Closes: #614199.
* install modprobe.d file for nbd-client-udeb, too
* Was never uploaded.
-- Wouter Verhelst <wouter@debian.org> Wed, 09 Mar 2011 21:57:05 +0100
nbd (1:2.9.20-2) unstable; urgency=low
* Upload as 2.9.20-2 rather than -1; the previous release was supposed
to be uploaded to experimental, but was accidentally uploaded to
unstable instead. Hence, consider that one to be -1 and this one to
be -2, even though it wasn't.
* Steal two commits from git HEAD to fix handling of maxclients value
in modern protocol version (which causes a segfault in nbd-server on
some architectures), and to fix handling of an unexpected death of
the server in nbd-tester-client; Closes: #611722.
* Updated translations:
- Portuguese, by Américo Monteiro; Closes: #611836.
- Russian, by Yuri Kozlov; Closes: #611978.
- French, by Christian Perrier; Closes: #612388.
-- Wouter Verhelst <wouter@debian.org> Wed, 09 Feb 2011 13:49:08 +0100
nbd (1:2.9.20-1~1) unstable; urgency=low
* New upstream release
- Fixes old minor bugs in documentation (LP: #290076)
- Fixes handling of oversized requests (Closes: #611187)
-- Wouter Verhelst <wouter@debian.org> Wed, 26 Jan 2011 15:59:24 +0100
nbd (1:2.9.16-8) unstable; urgency=high
* Cherry-pick 3ef52043861ab16352d49af89e048ba6339d6df8 from git HEAD
to fix oversized requests again. This Closes: #611187, which is a
re-introduction of CVE-2005-3534, hence urgency=high
-- Wouter Verhelst <wouter@debian.org> Fri, 28 Jan 2011 14:06:48 +0100
nbd (1:2.9.16-7.1) unstable; urgency=low
* Non-maintainer upload.
* Fix encoding of German debconf translation.
-- Christian Perrier <bubulle@debian.org> Wed, 12 Jan 2011 19:52:48 +0100
nbd (1:2.9.18-1~1) experimental; urgency=low
* New upstream release
- Implements name-based exports.
* Implement support for name-based exports in nbd-client's debconf,
initramfs, and init scripts, in light of the above
* Same for nbd-server
* debian/nbd-client.README.Debian: Mention possibility of using DHCP for
configuration; update in light of name-based exports
* debian/rules: make debian/po/templates.pot a dependency of
override_dh_auto_configure, so that it is always up-to-date.
* debian/control: update Standards-Version header to what we're
actually already using (forgot to update in 1:2.9.16-1)
* debian/nbd-client.initrd: support netbooting through reading the
server's IP address from ROOTSERVER, but everything else from the
kernel command line. This to support inflexible setups where it is
possible to boot with PXE, but where it is not possible to set
random arguments, like, say root-path. Netbooting is a can of worms.
* debian/*.lintian-overrides: override
copyright-without-copyright-notice (we do list all authors, but in a
format that Lintian doesn't know about).
-- Wouter Verhelst <wouter@debian.org> Thu, 06 Jan 2011 02:02:14 +0100
nbd (1:2.9.16-7) unstable; urgency=low
* Updated translations:
- Vietnamese, by Clytie Siddall; Closes: #598561.
-- Wouter Verhelst <wouter@debian.org> Thu, 30 Sep 2010 10:35:12 +0200
nbd (1:2.9.16-6) unstable; urgency=low
* Remove cruft from source package.
-- Wouter Verhelst <wouter@debian.org> Thu, 23 Sep 2010 20:10:31 +0200
nbd (1:2.9.16-5) unstable; urgency=low
* Updated translations:
- Spanish, by Camaleón; Closes: #595730.
-- Wouter Verhelst <wouter@debian.org> Wed, 08 Sep 2010 15:21:30 +0200
nbd (1:2.9.16-4) unstable; urgency=low
* nbd-client.postrm: remove /etc/nbd-client on purge. Closes: #593783.
* nbd-client config template: remove semi-active nbd0 config, so that if
nothing is configured there isn't actually anything in the file.
* nbd-client.init.d: check for non-zeroness of ${NBD_TYPE[$i]} rather
than ${NBD_DEVICE[$i]}, in light of the above. Closes: #592905.
* Steal commit 29e70dc9 from git HEAD to make nbd-server somewhat less
scary upon bootup if no exports are configured. Closes: #594140.
-- Wouter Verhelst <wouter@debian.org> Mon, 23 Aug 2010 15:27:00 +0200
nbd (1:2.9.16-3) unstable; urgency=low
* Updated translations:
- Portuguese, by Américo Monteiro; Closes: #591019.
- French, by Christian Perrier; Closes: #591095.
- Russian, by Yuri Kozlov; Closes: #591239.
- Dutch, by myself. Apparently I missed some strings last time
around.
- Swedish, by Martin Bagge; Closes: #591309.
- Czech, by Miroslav Kure; Closes: #591845.
- German, by Chris Leick; Closes: #592352.
* Make nbd-client initramfs script not try to do networking unless
root-on-NBD was actually requested; also, make "root" kernel command
line parameter override the NBD device of the 3-option version of
nbdroot, so that order no longer matters. Thanks, Niall Walsh;
Closes: #591275. initramfs scripts *suck*.
* Fix regression, steal commit 02a1a143 from git HEAD: Return the
right value on nbd-client -c. This is necessary so that the scripts
don't get confused on what is connected and what isn't.
* Fix regression: update nbd.h so nbd-client -timeout works again.
-- Wouter Verhelst <wouter@debian.org> Mon, 09 Aug 2010 10:53:04 -0400
nbd (1:2.9.16-2) unstable; urgency=low
* Actually use the friggin' config file variable that we created in
the previous release. Oops.
-- Wouter Verhelst <wouter@debian.org> Wed, 28 Jul 2010 22:59:13 -0400
nbd (1:2.9.16-1) unstable; urgency=low
* New upstream release
* 2.9.16 reimplements command-line parsing so that order is less
significant; as such, add nbd-client/extra template (which is only
shown at low priority) and $NBD_EXTRA[] config file array to allow
people to specify random extra command-line options. Closes:
#539823.
* The above adds a template, so update Dutch translation. Christian
Perrier is going to hate me. I'll upload nbd for translations before
the release, promise!
* Replace nbd-client's Architecture: field by Architecture: linux-any,
which is allowed by Policy 3.9. Whee!
* Fix nbd-client initrd script, *again*. Sigh. Thanks, Vagrant.
Closes: #590749.
* silence the "grep KILLALL" call in nbd-client postinst
-- Wouter Verhelst <wouter@debian.org> Wed, 28 Jul 2010 22:21:02 -0400
nbd (1:2.9.15-4) unstable; urgency=low
* Be a bit more peculiar about what we do to devices on stop, to avoid
errors and (thus) delays on swapoff. Thanks, Toby Speight; Closes:
#582891.
* Add Spanish Debconf translation. Thanks, Camaleón; Closes: #583536.
* Bump Standards-Version to 3.9.0 (no changes applicable to nbd)
-- Wouter Verhelst <wouter@debian.org> Fri, 23 Jul 2010 22:57:26 +0200
nbd (1:2.9.15-3) unstable; urgency=low
* Apply patch from Petter Reinholdsen to make nbd-server depend on
$syslog. Closes: #579869.
-- Wouter Verhelst <wouter@debian.org> Tue, 04 May 2010 10:26:23 +0200
nbd (1:2.9.15-2) unstable; urgency=low
* Add extra configure_networking call in case of nbdroot=dhcp. Oops.
Closes: #568222.
-- Wouter Verhelst <wouter@debian.org> Tue, 30 Mar 2010 11:50:19 +0200
nbd (1:2.9.15-1) unstable; urgency=low
* New upstream release
- Adds IPv6 support; Closes: #382189. Thanks to Neutron Soutmun for
the patch.
- Allows for using hostnames as the listen address; Closes: #557810.
- nbd-server is now a bit more explicit when it exits. Closes: #571768.
-- Wouter Verhelst <wouter@debian.org> Wed, 24 Mar 2010 22:06:16 +0100
nbd (1:2.9.14-3) unstable; urgency=low
* Be more careful about what we unmount. Closes: #534728.
* Fix three-argument nbdroot= boot option parsing. Closes: #568221.
Thanks, Vagrant Cascadian.
* nbd-client initramfs script: Remove default fallback to eth0. This
was necessary in the past when initramfs-utils' configure_networking
function could only be called from /init, but it was a hack and a
workaround and it broke expectations. And it was ugly. Since
configure_networking can now in fact be called from elsewhere, why
bother with setting broken defaults, anyway? Right. Closes: #567232.
Thanks again, Vagrant Cascadian.
* Support setting root-on-NBD through DHCP by abusing the ROOTPATH
variable. Closes: #568222. This supersedes the previous (broken)
support that used ROOTSERVER -- broken, because the latter only
supported setting the server, not the port, and obviously that's not
enough. Thanks yet again, Vagrant.
* debian/control: declare conformance to policy 3.8.4 (no changes
applicable to nbd)
* Override init.d-script-missing-dependency-on-remote_fs lintian tag
for nbd-client. This is a false positive; we set $PATH to a sane
value so that any modifications would work, but we don't actually
use anything from /usr ourselves, and no, we really don't want to
depend on $remote_fs, since we might be providing something like
that ourselves, depending on setup.
-- Wouter Verhelst <wouter@debian.org> Sun, 28 Feb 2010 00:37:02 +0100
nbd (1:2.9.14-2) unstable; urgency=low
* nbd-client initramfs script: No longer hardcode to eth0, since
initramfs now exports the necessary variables by itself. Thanks,
Niall Walsh; Closes: #553019.
- Update README.Debian to reflect that.
* Eliminate usage of sed in initramfs script, since sed is
incompatibly incomplete in several completely different
implementations. Sigh. Thanks, Niall Walsh; Closes: #553022.
-- Wouter Verhelst <wouter@debian.org> Thu, 29 Oct 2009 11:56:48 +0100
nbd (1:2.9.14-1) unstable; urgency=low
* New upstream release. Closes: #550505
-- Wouter Verhelst <wouter@debian.org> Sat, 17 Oct 2009 20:24:17 +0200
nbd (1:2.9.13-6) unstable; urgency=low
* Make the manual install invocations install stuff to debian/tmp
rather than debian/nbd-{client,server}, so that they don't break if
we're not building nbd-client and therefore the debian/nbd-client
doesn't exist. This should make the build work again on kfreebsd-*.
-- Wouter Verhelst <wouter@debian.org> Sun, 27 Sep 2009 13:42:38 +0200
nbd (1:2.9.13-5) unstable; urgency=low
* nbd-server.postinst: Pass --debconf-ok parameter to ucf, to make it
stop yelling about not being able to use debconf (it was, and
db_stop wasn't called. This presumably was a bug, but whatever).
* Remove overrides for dh_gencontrol and dh_builddeb, since debhelper
7.4 no longer needs -s arguments. Bump required version of debhelper
in build-depends to 7.4.0
* Some more clarification and fixes to nbd-client README.Debian
* Remove stray 'file' with diff output
* Updated translation: Vietnamese, by Clytie Siddall. Closes: #548027.
* Fix message at failed umount. Closes: #539766.
* Add lintian overrides for "missing-stop" on nbd-client.init.d. We
really do not wish to stop for runlevel 1.
-- Wouter Verhelst <wouter@debian.org> Thu, 24 Sep 2009 23:21:25 +0200
nbd (1:2.9.13-4) unstable; urgency=low
* Make test for update-initramfs work, so that installation without it
works.
* Add Vcs-Browser and Homepage headers, too.
* Remove --sourcedir argument from dh_install. We don't run make
install ourselves, so this is a recipe for disaster.
* Apparently I lost the Dutch debconf translation somehow, so do it
again.
-- Wouter Verhelst <wouter@debian.org> Mon, 24 Aug 2009 17:25:54 +0200
nbd (1:2.9.13-3) unstable; urgency=low
* nbd-client initscript:
- replace `expr $i + 1` by $(( $i + 1 )), since expr is in /usr/bin
which may not yet be mounted when we run this initscript. Closes:
#539873.
- check whether a device is connected at startup, and ignore those
that are. Since we don't use 'set -e', that makes us compliant
with the 'must exit successfully and not start the daemon again'
part of policy 3.8.1.
* nbd-server.postinst: call adduser only if 'nbd' user does not yet
exist. Closes: #540604.
* Convert to debhelper 7's "dh" mode.
* Replace ifeq() make constructs with debhelper's -s option in a
couple of overrides. Thanks to Joey Hess for pointing out that the
option already exists when I filed a wishlist bug asking for it...
grin.
* Add debian packaging to git repository, and publish on
alioth.debian.org, aka git.debian.org.
* Add Vcs-Git header to debian/control.
* Policy 3.8.3 compliance
-- Wouter Verhelst <wouter@debian.org> Tue, 18 Aug 2009 18:16:49 +0200
nbd (1:2.9.13-2) unstable; urgency=low
* The "Black Finger DebConf" release.
* Add avr32 to nbd-client-udeb, too. Oops. Closes: #533694, hopefully
for good.
* nbd-client.README.Debian: add a bit more clarification on how
root-on-NBD is supposed to work.
* nbd-client.init.d: parse /proc/cmdline rather than /proc/mounts
(the same way as how nbd-client.initrd does it) to figure out what
the NBD root device is, so that root-on-LVM-on-nbd or something
equally batshit insane does not confuse the sendsigs.omit.d
generating code.
* nbd-client.init.d: add support for an OMITKILL variable that will
allow to specify extra nbd devices that should receive the same
protection as for the above.
* nbd-client.config: fetch KILLALL value from /etc/nbd-client (if it
exists) and use it to db_set nbd-client/killall
* nbd-client.postinst: fix so that KILLALL is correctly written to
/etc/nbd-client, even if the number of devices is zero.
* The above four were inspired by conversations with Vagrant
Cascadian, while he was working on LTSP support in Debian. Thanks!
* Updated Swedish translation. Thanks, Martin Bagge; Closes: #534246.
-- Wouter Verhelst <wouter@debian.org> Fri, 17 Jul 2009 01:25:26 +0200
nbd (1:2.9.13-1) unstable; urgency=low
* New upstream release
-- Wouter Verhelst <wouter@debian.org> Thu, 09 Jul 2009 11:18:51 +0200
nbd (1:2.9.12-3) unstable; urgency=low
* Add Finnish translation. Thanks, Esko Arajärvi; Closes: #533451.
* Add 'avr32' to nbd-client's 'Architecture:' list. Closes: #533694.
-- Wouter Verhelst <wouter@debian.org> Sat, 20 Jun 2009 16:30:40 +0200
nbd (1:2.9.12-2) unstable; urgency=low
* Steal a patch from git HEAD so that nbd-tester-client doesn't try to
do unaligned access on SPARC.
* Add German translation too. Oops. Closes: #530835.
-- Wouter Verhelst <wouter@debian.org> Sat, 06 Jun 2009 02:15:16 +0200
nbd (1:2.9.12-1) unstable; urgency=low
* The "spring cleaning" release.
* New upstream release.
- The meaning of the -swap option has been changed; rather than
trying to use a kernel patch which hasn't been maintained since
the Linux 2.1.something days, use mlockall() to make sure we don't
get swapped out. Closes: #409530.
- Steal patch from git HEAD to document this change in nbd-client(8).
- Removed (corrupt) winnbd.zip. Closes: #473823.
* The Debconf templates have been reviewed by the debian-l10n-english
team; incorporate those changes. Closes: #528476, 430701, 530711.
* Updated debconf translations, to reflect the above:
- Dutch, by myself
- Swedish, by Martin Bagge; Closes: #529859.
- Czech, by Miroslav Kure; Closes: #530236.
- French, by Christian Perrier and the French l10n team; Closes: #530332.
- Portuguese, by "Traduz - Portuguese Translation Team"; Closes: #531303.
* New debconf translations:
- Russian, by Yuri Kozlov; Closes: #531203.
* nbd-client: install nbd-client.modprobe using debhelper rather than
using our own 'install' invocation. This takes care of giving it the
proper name (re recent module-init-tools) and moving files from the
old to the new location. Depend on debhelper (>= 7.2.2) to make sure
it has the required functionality to handle this correctly.
* nbd-client.init.d: remove '-k' option from modprobe. This was once
useful in the 2.4 days, but module-init-tools modprobe has never
needed that option, and now produces an error message when it's
used. Closes: #531620.
* (Conditionally, compliant with the new DEB_BUILD_OPTIONS' "nocheck"
option) re-enable the test suite. It did /not/ give false positives,
ever. However, it did indeed break at some point...
* Update to debhelper compat level 7.
* nbd-client.postinst: don't use full path to update-initramfs.
* copyright: refer to common-licenses/GPL-2 rather than the versionless
variant.
* That leaves one TODO for Policy 3.8.1: initscripts must not error
out when 'start' is called and the daemon is already running. This
will require some work (it might be there already, but I'm not sure
and would need to test extensively).
-- Wouter Verhelst <wouter@debian.org> Fri, 05 Jun 2009 20:42:25 +0200
nbd (1:2.9.11-4) unstable; urgency=low
* Support third parameter in initrd script so that the user can
explicitly specify what device to connect. Useful when doing
something crazy like root-on-LVM-on-NBD.
* Added Swedish debconf translation. Thanks, Martin Bagge; Closes: #513654
-- Wouter Verhelst <wouter@debian.org> Sun, 15 Feb 2009 14:51:16 +0100
nbd (1:2.9.11-3) unstable; urgency=low
* use atoll() instead of atol(), so that it doesn't overflow on
positively huge export sizes. Closes: #513568.
-- Wouter Verhelst <wouter@debian.org> Sat, 31 Jan 2009 03:03:37 +0100
nbd (1:2.9.11-2) unstable; urgency=low
* The "merry christmas" release.
* nbd-client: Install /etc/modprobe.d/nbd, which specifies a
'max_part' parameter, to support partitions in NBD.
* nbd-client.initrd: Strip partition number off the nbdbasedev and
nbdrootdev parameters, to support booting off a partition rather
than a device, if that is wanted.
* nbd-client.init.d: In case of root-on-nbd, save our PID to
/lib/init/rw/sendsigs.omit.d, so that we don't lose our root
filesystem prematurely on shutdown.
* nbd-client.postinst: call update-initramfs -u, to make initramfs
script be actually installed.
* configure.ac: remove KLCC crap, so that compilation doesn't break if
klcc was accidentally installed. Is applied upstream for 2.9.12, but
that isn't ready yet. Also, re-run autoconf.
* nbd-server.1: clarify '-l host list' to be '-l host list filename',
which it really is. Closes: #507875.
* debian/control: bump standards-version to 3.8.0 (nothing applicable
to nbd); add ${misc:Depends} to depends line on both nbd-server and
nbd-client, both silence lintian to some extent.
* debian/nbd-client.README.Debian: update
-- Wouter Verhelst <wouter@debian.org> Wed, 24 Dec 2008 07:54:50 +0100
nbd (1:2.9.11-1) unstable; urgency=low
* New upstream release
- Fixes listenaddr handling; Closes: #478725.
-- Wouter Verhelst <wouter@debian.org> Thu, 01 May 2008 21:22:53 +0200
nbd (1:2.9.10-1) unstable; urgency=low
* New upstream release
- New '-c' option to check whether a device is active; Closes: #471712.
- No longer wakes up 100 times per second; Closes: #471269.
- No longer requires write access to the base file with copy-on-write
option. Closes: #470851.
* Changes to initramfs script:
- Get the NBD server name from DHCP if not otherwise specified; Closes:
#471591.
- Use the device that is specified on the root= parameter to set up the
nbd device, rather than hardcoding it to nbd0. Closes: #471592.
-- Wouter Verhelst <wouter@debian.org> Wed, 02 Apr 2008 16:09:18 +0200
nbd (1:2.9.9-6) unstable; urgency=low
* Disable the test suite for the time being, since it produces false
negatives.
-- Wouter Verhelst <wouter@debian.org> Sat, 26 Jan 2008 14:14:23 +0100
nbd (1:2.9.9-5) unstable; urgency=low
* Removed erroneous TODO item from previous changelog entry. Oops.
* Fix syntax error in update-rc.d call. Closes: #460967.
-- Wouter Verhelst <wouter@debian.org> Wed, 16 Jan 2008 17:18:23 +0100
nbd (1:2.9.9-4) unstable; urgency=low
* Don't touch devices that have the _netdev option.
* Move nbd-client initscript to 41 in runlevel S, and S34 in runlevel 0 and
6, so that it's called before resp. after mountnfs.sh
* Add NEWS file to document change from "noauto" to "_netdev", containing a
procedure for system administrators explaining how to do it.
* Fix LSB headers in both initscripts. Closes: #458837.
* Document root-on-NBD setup in nbd-client README.Debian.
* Updated debconf translations:
- Dutch, by $SELF
- Portuguese, by Américo Monteiro
- Vietnamese, by Clytie Siddall; Closes: #458619.
- Czech, by Miroslav Kure; Closes: #459330.
- French, by Christian Perrier and the French Cabal; Closes: #459347.
- German, by Helge Kreutzman; Closes: #459785.
* Updated nbd-client.templates to mention "_netdev" rather than "noauto",
and defuzzied translation files.
-- Wouter Verhelst <wouter@debian.org> Sun, 06 Jan 2008 17:39:24 +0100
nbd (1:2.9.9-3) unstable; urgency=low
* Fix nbd initramfs boot script. Silly me, why didn't I test that? Oh well.
-- Wouter Verhelst <wouter@debian.org> Sun, 30 Dec 2007 00:06:17 +0100
nbd (1:2.9.9-2) unstable; urgency=low
* Add nbd-client/killall template to disable killing of all nbd-client
devices. Set to 'no' if you want nbd-client to touch only those devices it
knows about in its config file; set to 'yes' if you want it to kill all
devices on 'stop' in the initscript. Closes: #457736
* Add lpia to nbd-client-udeb Architecture: line, too. Sorry, Ubuntu.
* Update Standards-Version to 3.7.3 (no changes applicable to nbd)
* Add "make check" to debian/rules build target.
* Add initrd support to nbd-client package, to allow for running root on
NBD. This is highly experimental for the moment, please proceed with
caution!
Note: this currently does not support complex cases yet, such as using
LVM-on-NBD or something equally insane. Stay tuned.
* Do not switch away from cfq if we're not at cfq to start with; this allows
for selecting something else than deadline if necessary.
-- Wouter Verhelst <wouter@debian.org> Thu, 27 Dec 2007 22:23:59 +0100
nbd (1:2.9.9-1) unstable; urgency=low
* New upstream release
- Fixes PID file naming; Closes: #450430.
- Fixes segfault on multiple exports in config file; Closes: #451231.
* Add experimental LSB headers. Initscript dependency info should really be
calculated dynamically, but at least this is better than nothing.
Closes: #448225.
-- Wouter Verhelst <wouter@debian.org> Wed, 14 Nov 2007 20:53:29 +0100
nbd (1:2.9.8-1) unstable; urgency=low
* New upstream release
-- Wouter Verhelst <wouter@debian.org> Fri, 26 Oct 2007 22:50:12 +0200
nbd (1:2.9.7-2) unstable; urgency=low
* Set scheduler for the nbd blockdevice to "deadline"; Closes: #447638.
-- Wouter Verhelst <wouter@debian.org> Tue, 23 Oct 2007 12:41:10 +0200
nbd (1:2.9.7-1) unstable; urgency=low
* New upstream release; contains patch for a segfault bug fixed by Ubuntu in
nbd 1:2.9.6-1ubuntu2.
* Updated translations:
- Dutch, by myself.
- French, by Christian Perrier; Closes: #439756
- German, by Helge Kreutzman; Closes: #438412
- Portuguese, by "Traduz - Portuguese Translation Team"; Closes: #438583
Apologies to all translators for failing to send them the final version of
the .po file last time. I suck, suck suck!
* Add lpia to nbd-client's architecture; Patch pulled from Ubuntu.
* Fix dh_installman usage: insall nbd-server.5 as well. Patch pulled from
Ubuntu, slightly modified by $SELF.
-- Wouter Verhelst <wouter@debian.org> Tue, 18 Sep 2007 13:55:27 +0200
nbd (1:2.9.6-2) unstable; urgency=low
* debian/nbd-server.postrm: don't break if ucf isn't available.
Closes: #431517.
* debian/nbd-server.postinst, debian/nbd-server.config,
debian/nbd-server.templates: overhaul config file generation. Rather than
generating an old-style config file and then converting that to the new
style (ugly, ugly), add a function to convert old-style config files to
the new style and then generate new-style config files. Still leave stuff
there for migration, however. Clarify templates regarding the new setup.
* debian/nbd-server.postinst: Don't forget to create the nbd system user
which we refer to in the default config file.
* debian/control: depend on adduser for the above
* Updated debconf translations:
- Dutch, by myself.
- Vietnamese, by Clytie Siddall; Closes: #436412.
- French, by Christian Perrier; Closes: #436832.
- Czech, by Miroslav Kure; Closes: #437224.
- German, by Helge Kreutzmann; Closes: #430700, #437689
* New debconf translation: Portuguese, by Américo Monteiro; Closes: #435301
* debian/rules: use DEB_HOST_GNU_SYSTEM rather than `uname -s`, to improve
crosscompilability.
-- Wouter Verhelst <wouter@debian.org> Tue, 14 Aug 2007 08:55:56 +0200
nbd (1:2.9.6-1) unstable; urgency=low
* New upstream (brown paper bag) release, that *really* fixes the segfault
this time.
-- Wouter Verhelst <wouter@debian.org> Thu, 19 Jul 2007 12:04:22 +0200
nbd (1:2.9.5-1) unstable; urgency=low
* New upstream release
- Fixes segfault in nbd-server
-- Wouter Verhelst <wouter@debian.org> Tue, 17 Jul 2007 09:34:26 +0200
nbd (1:2.9.4-2) unstable; urgency=low
* Generate dependencies for nbd-client-udeb, too
-- Wouter Verhelst <wouter@debian.org> Fri, 13 Jul 2007 03:58:33 +0200
nbd (1:2.9.4-1) unstable; urgency=low
* New upstream release
- Contains r258 proper
- Contains fix for and re-enables inetd mode. Hi, LTSP! Closes: #317888
* Modify debian/rules' clean: target to make lintian happy.
-- Wouter Verhelst <wouter@debian.org> Mon, 25 Jun 2007 20:51:30 +0100
nbd (1:2.9.3-3) unstable; urgency=low
* Add nbd-client-udeb
-- Wouter Verhelst <wouter@debian.org> Sun, 17 Jun 2007 16:20:39 +0100
nbd (1:2.9.3-2) unstable; urgency=low
* Use $TMPFILE only inside the if block where we defined it.
Closes: #428914.
-- Wouter Verhelst <wouter@debian.org> Fri, 15 Jun 2007 09:55:21 +0100
nbd (1:2.9.3-1) unstable; urgency=low
* New upstream release
* Steal r258 from SVN to allow generating config file fragments from command
lines
* Add code to postinst to convert old-style nbd-server config files to
new-style ones.
* The above uses ucf, so depend on that from nbd-server.
* Update nbd-server templates to reflect the new code.
* The update greatly simplifies nbd-server's init script, so that we don't
need bash anymore; Closes: #368224
* Add LSB-style headers to nbd-server's initscript. Closes: #426090. I think
the LSB headers are an ugly, ugly hack, but hey -- I don't have any better
alternative myself.
* Apply patch from Ubuntu to run mkswap on the device before doing swapon.
Closes: #426399.
* Still leaves #395295, but I need to give that some thought.
-- Wouter Verhelst <wouter@debian.org> Wed, 13 Jun 2007 13:39:25 +0100
nbd (1:2.8.7-5) unstable; urgency=low
* Add m32r to debian/control. Closes: #414070.
* Port fix for "config file isn't generated on first install" from
nbd-server to nbd-client. Squish this bug on my forehead with a giant
cluebat. Note to self: nbd has *two* binary packages, not one. Two. That
means bugs reported against one package will most likely occur in the
other, too, so need fixing there as well. Sigh. This Closes: #415580,
hopefully for good.
* Don't use debconf in postrm unless it really exists. Closes: #417010.
-- Wouter Verhelst <wouter@debian.org> Wed, 11 Apr 2007 21:59:42 +0200
nbd (1:2.8.7-4) unstable; urgency=low
* Properly quote NBD_SERVER_OPTS array stuff when rewriting nbd-server
config file.
* Properly quote same variable when testing it with [.
* The above two Closes: #406963.
-- Wouter Verhelst <wouter@debian.org> Tue, 16 Jan 2007 10:18:07 +0100
nbd (1:2.8.7-3) unstable; urgency=low
* Updated German debconf translation. Closes: #396916. Thanks, Helge
Kreutzmann.
-- Wouter Verhelst <wouter@debian.org> Sun, 31 Dec 2006 14:40:46 +0100
nbd (1:2.8.7-2) unstable; urgency=low
* Support armel
* Update Standards-Version: to 3.7.2, from 3.6.2. No changes applicable to
nbd
-- Wouter Verhelst <wouter@debian.org> Sat, 28 Oct 2006 02:08:56 +0200
nbd (1:2.8.7-1) unstable; urgency=low
* New upstream release. Contains build fix against nbd.h from linux
2.6.18.
-- Wouter Verhelst <wouter@debian.org> Tue, 17 Oct 2006 19:53:56 +0200
nbd (1:2.8.5-2) unstable; urgency=low
* Set a proper default value in processing the return value to the first
nbd-client debconf question, both in nbd-client.config and
nbd-client.postinst. Closes: #367437.
* Perform the same change for nbd-server.
* Set the template type of nbd-client/no-auto-config and nbd-server/autogen
to "error" instead of "text" resp. "note". Closes: #388942, #388943.
-- Wouter Verhelst <wouter@grep.be> Thu, 28 Sep 2006 15:42:54 +0200
nbd (1:2.8.5-1) unstable; urgency=low
* New upstream release
-- Wouter Verhelst <wouter@debian.org> Wed, 7 Jun 2006 10:26:30 +0200
nbd (1:2.8.4-1) unstable; urgency=low
* The "Fix bugs before they apper" release.
* New upstream release. Contained a one-line change compared to 2.8.3,
which was already in the Debian package; but, well, newer version
numbers look good :-)
* Use invoke-rc.d rather than directly running the initscript in
nbd-client.postinst.
-- Wouter Verhelst <wouter@debian.org> Mon, 3 Apr 2006 09:04:15 +0200
nbd (1:2.8.3-2) unstable; urgency=low
* Steal patch from CVS for nbd-server.c to make children exit when they
finish serving, rather than having them loop over "Help, I can't accept()
anymore!". Closes: #350357.
-- Wouter Verhelst <wouter@debian.org> Tue, 31 Jan 2006 11:17:25 +0100
nbd (1:2.8.3-1) unstable; urgency=low
* New upstream release; this one includes the fix for CVE-2005-3534 (and
some more stability improvements).
* Removed (outdated) local nbd.h, in favour of /usr/include/linux/nbd.h
(which was being used anyway).
-- Wouter Verhelst <wouter@debian.org> Thu, 22 Dec 2005 22:32:04 +0100
nbd (1:2.8.2-1) unstable; urgency=low
* New upstream release
- Fixes command line parsing; Closes: #338346.
* Updated debhelper compatibility level to 4.
-- Wouter Verhelst <wouter@debian.org> Thu, 10 Nov 2005 11:46:00 +0100
nbd (1:2.8.1-1) unstable; urgency=low
* New upstream release
* Seriously reduces the CLIENT struct in size. Not only is this a good idea
for 1023 int's that are hardly ever used, it also fixes an internal
compiler error on s390. There.
* Add armeb to debian/control. Closes: #335683.
* Remove debian/nbd-server.1, debian/nbd-client.8,
debian/nbd-server.manpages, and debian/nbd-client.manpages. They're old
cruft that should have been dead for _ages_. Whoops.
-- Wouter Verhelst <wouter@debian.org> Thu, 27 Oct 2005 21:54:09 +0200
nbd (1:2.8.0-2) unstable; urgency=low
* Add libglib2.0-dev to build-depends. Whoops.
-- Wouter Verhelst <wouter@debian.org> Tue, 25 Oct 2005 21:31:31 +0200
nbd (1:2.8.0-1) unstable; urgency=low
* New upstream release
-- Wouter Verhelst <wouter@debian.org> Tue, 25 Oct 2005 19:56:08 +0200
nbd (1:2.7.5-1) unstable; urgency=low
* New upstream release. Includes fixes to nbd-client manpage; Closes:
#317322.
* Grammar and spelling fixes to both templates files (with .po files
unfuzzied, as these are errors in the English version rather than
changes); Closes: #315707.
* Updated FSF address in debian/copyright.
-- Wouter Verhelst <wouter@debian.org> Tue, 20 Sep 2005 16:39:35 +0200
nbd (1:2.7.4-3) unstable; urgency=low
* Fix debian/rules to populate debian/nbd-client if DEB_HOST_GNU_SYSTEM is
"linux-gnu" in addition to when it is "linux". Closes: #321280. I hate it
when interfaces change (note to self: no late-night uploads anymore).
* While we're at it, make better use of debhelper. debian/nbd-client.dirs
doesn't need to contain /bin; and dh_movefiles has been deprecated ages
ago.
-- Wouter Verhelst <wouter@debian.org> Thu, 4 Aug 2005 20:52:02 +0200
nbd (1:2.7.4-2) unstable; urgency=low
* Add alternate dependency on the virtual package debconf-2.0
* Add ppc64 to the list of build architectures for nbd-client;
Closes: #318716.
* Add Vietnamese translation. Thanks, Clytie Siddall; Closes: #315705.
* Add Czech translation. Thanks, Miroslav Kure; Closes: #318912.
* Standards-Version bump to 3.6.2. No changes applicable to nbd.
-- Wouter Verhelst <wouter@debian.org> Wed, 3 Aug 2005 02:22:23 +0200
nbd (1:2.7.4-1) unstable; urgency=low
* New upstream release. Contains patches from Roy Keene to make it all work
a tad bit more reliable (thanks, Roy!)
-- Wouter Verhelst <wouter@debian.org> Sat, 7 May 2005 11:37:20 +0200
nbd (1:2.7.3-2) unstable; urgency=low
* Re-add nbd.h to the source package, so that it will (again) build on
non-linux ports
* As a precaution, modified the build target to barf out if it
disappears again.
-- Wouter Verhelst <wouter@debian.org> Mon, 4 Apr 2005 00:27:27 +0200
nbd (1:2.7.3-1) unstable; urgency=low
* New upstream release.
* Ensure we build as a non-native package again. Whoops.
* Remove docbook-to-man from build-depends, and don't remove the manpages in
the clean target. The upstream build system now supports this, and this
will reduce the load on buildd hosts (as if it'd matter for this little
package).
-- Wouter Verhelst <wouter@debian.org> Tue, 14 Dec 2004 15:41:58 +0100
nbd (1:2.7.1-4) unstable; urgency=low
* Remove the "docs" target from debian/rules. Docs are being generated from
the upstream makefile since ages, so we don't need to do it a second time.
* add --disable-dependency-tracking to configure call; that's only
interesting if you would change stuff between doing the configure and the
make, which we won't do, so don't waste time doing so. As if it'd
matter...
* nbd-server:
- Bail out if the path provided to nbd-server isn't fully qualified. This
won't work anyway (because we do daemon(), which changes the working
directory to be /), and we don't want to confuse people.
Closes: #274697.
-- Wouter Verhelst <wouter@debian.org> Tue, 26 Oct 2004 16:21:38 +0200
nbd (1:2.7.1-3) unstable; urgency=low
* Fix debian/copyright file to point to the sourceforge.net pages, and
to reflect the fact that I'm doing upstream maintenance these days as
well.
* Invoke "db_stop" at the right place in nbd-client.postinst, to make
sure upgrades don't hang.
-- Wouter Verhelst <wouter@debian.org> Wed, 18 Aug 2004 10:49:36 +0200
nbd (1:2.7.1-2) unstable; urgency=low
* Fix nbd-client initscript to use /sbin/nbd-client instead of
/bin/nbd-client. Closes: #254713.
-- Wouter Verhelst <wouter@debian.org> Sat, 19 Jun 2004 22:32:03 +0200
nbd (1:2.7.1-1) unstable; urgency=low
* New upstream release
* Fixes multiple file snprintf, so that the "normal" use of NBD works
again. Nbd-client will still hang when the server can't find a to be
exported file (since the server doesn't close the socket, as it
should), but that bug is a wee bit nastier, and this fix should get
into stable.
-- Wouter Verhelst <wouter@debian.org> Sat, 12 Jun 2004 12:19:24 +0200
nbd (1:2.7-3) unstable; urgency=low
* Add amd64 to debian/control. Closes: #251777.
* This release was never uploaded by itself
-- Wouter Verhelst <wouter@debian.org> Mon, 31 May 2004 10:36:57 +0200
nbd (1:2.7-2) unstable; urgency=low
* Cleaned up LFS fuckup. Closes: #250450
-- Wouter Verhelst <wouter@debian.org> Mon, 31 May 2004 10:36:35 +0200
nbd (1:2.7-1) unstable; urgency=low
* New upstream release
- uses automake instead of home-grown Makefile.in; fix debian/rules to
accomodate.
- nbd-client moved to sbin, where it belongs; make sure we catch that.
* Drop CFLAGS usage, use the --enable-* parameters instead.
* Added catalan debconf translations. Thanks, Aleix Badia i Bosch;
closes: #248727.
* Bumped Standards-Version to 3.6.1; no changes applicable to nbd.
-- Wouter Verhelst <wouter@debian.org> Mon, 17 May 2004 23:40:42 +0200
nbd (1:2.6-4) unstable; urgency=low
* Fix and document -m option (Closes: #246544, #264537)
-- Wouter Verhelst <wouter@debian.org> Wed, 12 May 2004 08:29:17 +0200
nbd (1:2.6-3) unstable; urgency=low
* The "There's more in this world than GNU/Linux" release.
* For all you FreeBSD/NetBSD/Hurd-using people pleasure, made sure the
package builds on non-Linux kernels, too. That's a two-line change to
debian/rules, and is so silly that it should perhaps actually be handled
in debhelper, but oh well.
Tested this on Debian GNU/KFreeBSD, and yes, it works. Have fun!
-- Wouter Verhelst <wouter@debian.org> Wed, 14 Jan 2004 20:42:40 +0100
nbd (1:2.6-2) unstable; urgency=low
* nbd-server.postinst: create a temporary file outside of the loop that
writes to it. sigh.
-- Wouter Verhelst <wouter@debian.org> Fri, 9 Jan 2004 14:22:20 +0100
nbd (1:2.6-1) unstable; urgency=medium
* New "upstream" release. Not much more than some code cleanup, really,
but I'd just like to avoid "new upstream!" bugs before they happen.
* nbd.h usage logic reversed: use the local one first; if that doesn't
work, fall back to <linux/nbd.h>.
* Include a (fixed) nbd.h. The kernel header will probably be fixed in
2.6.1; as this is only a two-line fix (one for #ifdef and one for
#endif), we won't wait for that. Closes: #223194. That's an RC bug,
so raising the urgency a little.
* This happens to fix a long-outstanding issue with nbd that I never
had the will to fix: it now should compile nbd-server cleanly on
non-linux systems, too. Reflected that in nbd-server's Architecture:
line in debian/control
-- Wouter Verhelst <wouter@debian.org> Tue, 23 Dec 2003 21:44:08 +0100
nbd (1:2.5-1) unstable; urgency=high
* New upstream release
* Bugfix: reset child_arraysize to zero when forking. When filed as a
debian bug, the right severity would be 'critical' (not doing the
child_arraysize reset can result in nbd-server sending SIGTERM to
_all_ processes on the system), so urgency=high.
-- Wouter Verhelst <wouter@debian.org> Mon, 29 Sep 2003 20:33:55 +0200
nbd (1:2.4-3) unstable; urgency=low
* Run db_stop in postinst, to make sure dpkg doesn't wait for nothing.
* Fixed a syntax error in nbd-server.1.sgml. Overlooked that.
-- Wouter Verhelst <wouter@debian.org> Thu, 11 Sep 2003 18:53:42 +0200
nbd (1:2.4-2) unstable; urgency=low
* Updated Brazilian Portuguese debconf translation. Thanks, Andre Luis
Lopez; Closes: #208033.
* Added '-l' option to nbd-server, to allow choosing a different name
for the .allow file at run time. Should fix the thing I broke with the
last upload, and adds the possibility to specify this file in the
initscript.
* fclose() the pid file after writing to it, so that start-stop-daemon
does not find an empty file.
* Some cosmetic change to nbd-server's initscript.
-- Wouter Verhelst <wouter@debian.org> Thu, 11 Sep 2003 18:49:42 +0200
nbd (1:2.4-1) unstable; urgency=low
* New upstream release:
- Keep track of our child PID's, and relay a SIGTERM to them if we
receive one
- Use daemon() before we do anything.
- Write our pid to /var/run/nbd-server.<port>.pid
This allows me to use start-stop-daemon, instead of having to do all
kinds of weird stuff in sh. And it also makes the postinst behave in
that it no longer hangs, waiting for something to happen which never
will. Woohoo!
It breaks one thing, though: nbd-server used to look in the 'current
directory' at the time it was started to find the 'nbd_server.allow'
file, a hosts.allow-style file containing machines that are allowed to
log on. Since the daemon() call requires to change the current
directory to the root-directory, it is now looked for at that
place. Will be fixed ASAP, but I wanted to get this out first.
* Actually changed to using start-stop-daemon.
* Updated nl.po. Closes: #204574.
-- Wouter Verhelst <wouter@debian.org> Fri, 22 Aug 2003 10:24:49 +0200
nbd (1:2.3-10) unstable; urgency=low
* Don't forget to write unchanged configurations to the options file;
also, make a backup of the configuration if we overwrite it. Closes:
#203352.
* Make sure NBD_SERVER_OPTS are being preserved.
* Make a backup of /etc/nbd-client, too.
-- Wouter Verhelst <wouter@debian.org> Sun, 3 Aug 2003 20:13:33 +0200
nbd (1:2.3-9) unstable; urgency=low
* Removed README.Debian; it was outdated, and no longer useful.
* Made sure the config script can handle being ran twice during the same
installation run. Closes: #198062.
* Made the templates in nbd-server and nbd-client about AUTO_GEN being
set more consistent. Closes: #198929.
* Added French debconf translation. Thanks, Christian Perrier;
Closes: #200363
-- Wouter Verhelst <wouter@debian.org> Mon, 7 Jul 2003 21:43:25 +0200
nbd (1:2.3-8) unstable; urgency=low
* Revamped debconf stuff. It's now possible to configure multiple
devices at installation time, while configuration changes should be
preserved even if AUTO_GEN isn't set. Yay!
Note that this is a short changelog for a lot of work; I mostly
rewrote two .postinsts, redid two .configs from scratch, and had to
rethink some things. I hope I caught all bugs :-)
* /etc/nbd-client is now no longer a conffile. Since it's modified by
postinst, it never should've been one anyway.
-- Wouter Verhelst <wouter@debian.org> Tue, 20 May 2003 23:41:03 +0200
nbd (1:2.3-7) unstable; urgency=low
* Removed assignment error from macro OFFT_MAX. This resulted in a
warning on all architectures, and reduced the usefullness of
nbd-server to nothing on 64bit architectures. It also
Closes: #187435, #188079. libc guys: sorry for the noise -- and thanks
for pointing me at that little detail which I overlooked, and which
proved to be the key (nbd-server::size_autodetect).
* prepended the 'nbd-server' call with nohup, to make upgrades work
again.
-- Wouter Verhelst <wouter@debian.org> Tue, 15 Apr 2003 03:31:18 +0200
nbd (1:2.3-6) unstable; urgency=low
* Removed a little spelling error from one of the Debconf
descriptions. Closes: #186947.
-- Wouter Verhelst <wouter@debian.org> Mon, 31 Mar 2003 20:22:19 +0200
nbd (1:2.3-5) unstable; urgency=low
* Fixed starting of nbd-server so that it properly detaches from a
terminal. Closes: #179889
* Converted to po-debconf
* Bumped Standards-version from 3.5.2 to 3.5.9 (no changes
applicable to nbd)
* Made sure debian/nbd-server/bin exists before trying to copy files
there, if we're not using dh_movefiles. Closes: #186668.
* Added debconf translations from ddtp.debian.org
-- Wouter Verhelst <wouter@debian.org> Sun, 30 Mar 2003 15:45:20 +0200
nbd (1:2.3-4) unstable; urgency=low
* Fixed syntax error in nbd-client's postinst.
* Removed duplicate update-rc.d commands (debhelper is nice, if it
actually works ;-)
-- Wouter Verhelst <wouter@debian.org> Tue, 26 Nov 2002 01:04:06 +0100
nbd (1:2.3-3) unstable; urgency=low
* Fixed code in kernel-version sanity check in initscript so that it
actually works now.
* Rearranged start target of initscript so that it now just calls a
'connect' and an 'activate' target of itself.
-- Wouter Verhelst <wouter@debian.org> Sat, 16 Nov 2002 21:24:28 +0100
nbd (1:2.3-2) unstable; urgency=low
* Replaced call to write() by a call to send(), so that NBD (hopefully)
doesn't hang anymore. For those interested: For NBD to have Large File
Support, it is being compiled with the precompiler directive
_LARGEFILE_SOURCE set, and with the precompiler directive
_FILE_OFFSET_BITS set to 64. As a result, all file operation syscalls
are being replaced by their 64 bit counterparts. That's not a good
idea to do on a socket, I believe...
* Removed a bug that sometimes left /etc/nbd-server empty after
(re-)install.
* Rewrote warning in description about accessing the block device
simultaneously from different clients to better reflect the
truth. Sorry, ddtp ;-)
* Added a sanity check to nbd-client's initscript: if the version of the
kernel is < 2.4, disconnecting the client is not available, so
restart will fail horribly, which also impacts upgrades. To avoid this
problem, restart is made non-functional on kernels < 2.4.
* Added a (conditional, as in sysvinit's /etc/init.d/checkfs.sh)
spinner-option to the fsck in nbd-client's initscript.
-- Wouter Verhelst <wouter@debian.org> Tue, 12 Nov 2002 23:45:00 +0100
nbd (1:2.3-1) unstable; urgency=low
* New upstream release. This version brings you:
- Real Large File Support, coding by yours truly. This probably
Closes: #161292. Please reopen the bugreport if not.
- Auto-switching to read-only mode when serving a file from a
read-only medium. This is useful for floppies, CD-ROMs or other host
filesystems that can't be written on.
- Updated manpage for nbd-server, documenting the new '-a' option.
* Modified nbd-server's initscript to wait a second between sending
SIGTERM and SIGKILL when stopping.
* Added -DISSERVER to CFLAGS, which will cause debugging messages to
go to syslog instead of stderr.
-- Wouter Verhelst <wouter@debian.org> Sun, 20 Oct 2002 16:13:14 +0200
nbd (1:2.1-1) unstable; urgency=low
* New upstream version. This one brings you:
- Reap zombies as they appear. Closes: #160374
- Make error message that appears at the client's side when the
server can't open the exported file a bit more helpful.
Closes: #127098
-- Wouter Verhelst <wouter@debian.org> Wed, 11 Sep 2002 17:52:03 +0200
nbd (1:2.0-6) unstable; urgency=low
* Modified architecture line to include sh3, sh3eb, sh4, and sh4eb
instead of just sh. Closes: #155523. See why there's #112325?
-- Wouter Verhelst <wouter@debian.org> Mon, 5 Aug 2002 23:33:10 +0200
nbd (1:2.0-5) unstable; urgency=low
* There was still one issue for mips and mipsel. Not anymore
-- Wouter Verhelst <wouter@debian.org> Sun, 21 Jul 2002 23:04:37 +0200
nbd (1:2.0-4) unstable; urgency=low
* Modified nbd-server.init.d to not kill itself, so that upgrading works
again. Closes: #151424
-- Wouter Verhelst <wouter@debian.org> Sun, 30 Jun 2002 16:24:56 +0200
nbd (1:2.0-3) unstable; urgency=low
* Added CFLAGS to allow using >2GB files. Closes: #150871
-- Wouter Verhelst <wouter@debian.org> Mon, 24 Jun 2002 22:57:14 +0200
nbd (1:2.0-2) unstable; urgency=low
* Reapplied build fix for mips and mipsel.
-- Wouter Verhelst <wouter@debian.org> Mon, 27 May 2002 11:10:24 +0200
nbd (1:2.0-1) unstable; urgency=low
* New upstream release. closes: #148092. Note that this was not a year
out-of-date as the bugreport claims; the previous Debian version was
pulled out of CVS at March 20th, 2002, at which time the new upstream
release was (at least) not yet in CVS.
* fixed nbd-server.postinst to 're'write /etc/nbd-server, even if it
does not exist yet. Grmbl. Closes: #148090.
* Modified manpages: fixed EXAMPLES, and a few other minor changes
-- Wouter Verhelst <wouter@debian.org> Sat, 25 May 2002 20:30:52 +0200
nbd (1:1.2cvs20020320-3) unstable; urgency=low
* added 'chmod +x configure' to debian/rules before configure is called
(closes: #140436)
-- Wouter Verhelst <wouter@debian.org> Fri, 29 Mar 2002 16:08:39 +0100
nbd (1:1.2cvs20020320-2) unstable; urgency=low
* Rebuilt with new unstable of the day, to fix the broken .diff.gz
(Closes: #140238).
-- Wouter Verhelst <wouter@debian.org> Wed, 27 Mar 2002 18:08:58 +0100
nbd (1:1.2cvs20020320-1) unstable; urgency=low
* The "Cleaning up the mess" release
* Added a "connect" target to nbd-client's /etc/init.d script. Use this
to reconnect clients that have lost the connection to the server but
still have an nbd blockdevice in use. No data will be lost that way,
which is not the case if you use a "restart".
* Since upstream is not really doing any "releases" anymore (there's one
stable CVS branch which is only updated as bugs are fixed), use
"1.2-cvsYYYYMMDD" as upstream version now.
* New CVS change: using setsockopt() in nbd-server so that a stopped
server doesn't need to wait for a timeout before it can be restarted.
* This time really removed the duplicate output to /etc/nbd-server. I
tried to be smart, but not anymore ;-)
* Since my manpages are accepted by upstream and in upstream CVS,
removed them from the debian/ directory.
-- Wouter Verhelst <wouter@debian.org> Sun, 24 Mar 2002 22:17:29 +0100
nbd (1:1.2-13) unstable; urgency=low
* Made /dev-entry debconf-question a bit clearer (Closes: #127094)
* Explained the use of the nbd_server.allow file in nbd-server's manpage
(partially closes #127098)
-- Wouter Verhelst <wouter@debian.org> Wed, 2 Jan 2002 23:49:43 +0100
nbd (1:1.2-12) unstable; urgency=low
* Corrected spelling errors in descriptions (Closes: #125167, #125168)
-- Wouter Verhelst <wouter@debian.org> Thu, 20 Dec 2001 00:40:13 +0100
nbd (1:1.2-11) unstable; urgency=low
* Added an invocation of fsck to nbd-client's initscript. This should've
been done in 1:1.2-1. Really.
-- Wouter Verhelst <wouter@debian.org> Wed, 31 Oct 2001 12:37:06 +0100
nbd (1:1.2-10) unstable; urgency=low
* Applied patch from Branden Robinson for nbd-server's initscript
(partially closes #117045)
* Modified nbd-server's postinst so that it doesn't write it's
information twice to /etc/nbd-server (Closes: #117045).
* Changed shebang-line of all scripts that source the configfile to use
/bin/bash instead of /bin/sh. I thought it would be no problem if I
don't actually use the variable, but even the variable name isn't
POSIXly correct (Closes: #117303).
* Changed priority of AUTO_GEN debconf to low. You don't want to see
this during an installation, only during a reconfigure. Also, added a
similar note to nbd-server, since it now supports this variable too.
-- Wouter Verhelst <wouter@debian.org> Sun, 28 Oct 2001 11:20:07 +0100
nbd (1:1.2-9) unstable; urgency=low
* Fixed nbd-server's debconf configuration so that it actually works
now. Always interesting, huh?
* Added some upstream-suggested changes to nbd-server.c so that it
should build on mips and mipsel too, now (Closes: #115110). Added mips
and mipsel to Architecture line (I created that line with the output
of madison nearby. But since it never built on mips before... well...)
* Fixed some minor bugs in initscripts and postinsts.
-- Wouter Verhelst <wouter@debian.org> Mon, 22 Oct 2001 16:47:05 +0200
nbd (1:1.2-8) unstable; urgency=low
* removed a syntaxis fault from nbd-server's postrm. Dunno why I
didn't find this earlier...
-- Wouter Verhelst <wouter@debian.org> Thu, 18 Oct 2001 00:08:17 +0200
nbd (1:1.2-7) unstable; urgency=low
* Since my TODO list is kinda complete now (Yeehaw!), remove the
reference to it from debian/control.
* Aestetical changes to initscript of nbd-server
* Uncommented things in nbd-client's initscript. It didn't work before,
but apparently it does now. I have no idea what was wrong; probably a
bug in another package (most likely, bash) that has been solved now
(it never looked wrong to me anyway). Please file a bug if I was
wrong... ;-)
* Now really modified nbd-client.postinst to do what it was supposed to
do in 1:1.2-6. Actually, in -6 I modified nbd-server.postinst, but
didn't touch nbd-client.postinst. I thus now modified
nbd-client.postinst to reflect changes made to nbd-server.postinst in
-6. Should've done that in the previous release, probably.
* Removed hurd-i386 from architecture, since it doesn't build there
after all.
There has been some effort to port NBD to the Hurd, though, so I'll
change the "Architecture:" line at some point in the future, when
everything compiles cleanly. Not now, though.
* Added pt_BR translations of both debconf templates. Thanks go to Andre
Luis Lopes <andrelop@ig.com.br> (Closes: #115617, 115621)
-- Wouter Verhelst <wouter@debian.org> Mon, 15 Oct 2001 00:18:13 +0200
nbd (1:1.2-6) unstable; urgency=low
* Added german translation of debian/nbd-server.templates. Thanks go to
Sebastian Feltel <sebastian@feltel.de> (Closes: #113486).
* Minor changes to nbd-server manpage.
* Made debian/nbd-server.postinst a bit more portable so that it creates
good output, even if /bin/sh does not point to /bin/bash. Also, added
support for extra options to /etc/nbd-server; add an array called
NBD_SERVER_OPTS with the options you'd like (Closes: #113726). Since
these options are probably quite rarely needed, I didn't change the
debconf-configuration.
* Slightly modified nbd-client.postinst so that grep dumps
"NBD_DEVICE[0]" to /dev/null instead of stdout (Ah! So it was grep!
;-)
* Made sure the "purge" target of nbd-server's postrm removes
/etc/nbd-server. Since /etc/nbd-server is created in postinst, it is
not part of any package or file, let alone it being a
conffile. Therefore, I have to remove it manually in the postrm.
-- Wouter Verhelst <wouter@debian.org> Sun, 30 Sep 2001 23:19:13 +0200
nbd (1:1.2-5) unstable; urgency=low
* Made sure /etc/nbd-server exists before trying to access it
(Closes: #113143)
-- Wouter Verhelst <wouter@debian.org> Sat, 22 Sep 2001 11:38:51 -0400
nbd (1:1.2-4) unstable; urgency=low
* Changed debian/rules file a bit so that this package should build the
nbd-server on non-linux ports (currently only The
Hurd). Unfortunately, I have to sum up each and every linux-port to
achieve this. Have a look at #112325 to find out why. Since nbd-client
needs support from the kernel, and since this is a linux-only thing,
it makes no sense compiling nbd-client on other kernels. Hence, I
don't try.
* Created manpages for both nbd-client and nbd-server (Closes: #112049)
* Now created an initscript for nbd-server too. Works the same way as
the nbd-client initscript.
-- Wouter Verhelst <wouter@debian.org> Thu, 20 Sep 2001 13:37:34 +0200
nbd (1:1.2-3) unstable; urgency=low
* Removed bugs from postinst and /etc/init.d/nbd-client (closes:
#112117)
-- Wouter Verhelst <wouter@debian.org> Thu, 13 Sep 2001 02:16:40 +0200
nbd (1:1.2-2) unstable; urgency=low
* Added debconf-configuration to install one nbd-client device. This
should work for most installations.
* Added information to /etc/nbd-client. See the file for details; it
allows for multiple clients to be ran and killed at boot
resp. shutdown.
* Changed init.d-script for nbd-client (the previous changelog-entry
fails to tell that the init.d-script is only for nbd-client too, BTW)
to reflect new situation.
-- Wouter Verhelst <wouter@debian.org> Tue, 11 Sep 2001 00:26:39 +0200
nbd (1:1.2-1) unstable; urgency=low
* Added init.d-script
* Added Build-Depends on kernel-headers, since #include "nbd.h" has
changed to #include <linux/nbd.h> in upstream sources
-- Wouter Verhelst <wouter@debian.org> Thu, 14 Jun 2001 22:23:38 +0200
nbd (14-2) unstable; urgency=low
* Did some cleanup of debian/rules
-- Wouter Verhelst <wouter@debian.org> Thu, 7 Jun 2001 00:51:36 +0200
nbd (14-1) unstable; urgency=low
* Initial Release. (Closes: 96728)
-- Wouter Verhelst <wouter@debian.org> Sat, 2 Jun 2001 12:44:24 +0200
|