1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456
|
isc-dhcp (4.4.1-2.3+deb11u2) bullseye; urgency=medium
* Non-maintainer upload.
* Backport missing IPv6 address lifetime handling. (closes: #1022969)
-- Bastian Blank <waldi@debian.org> Mon, 20 Feb 2023 09:19:43 +0100
isc-dhcp (4.4.1-2.3+deb11u1) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* An option refcount overflow exists in dhcpd (CVE-2022-2928)
* DHCP memory leak (CVE-2022-2929)
-- Salvatore Bonaccorso <carnil@debian.org> Tue, 04 Oct 2022 22:52:25 +0200
isc-dhcp (4.4.1-2.3) unstable; urgency=high
* Non-maintainer upload.
* A buffer overrun in lease file parsing code can be used to exploit a
common vulnerability shared by dhcpd and dhclient (CVE-2021-25217)
(Closes: #989157)
-- Salvatore Bonaccorso <carnil@debian.org> Thu, 27 May 2021 06:59:48 +0200
isc-dhcp (4.4.1-2.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix FTBFS due gcc 10 compilation issues in client/dhclient.c,
common/discover.c, relay/dhcrelay.c, server/mdb.c, server/mdb6.c
(closes: 957379).
-- Leonidas S. Barbosa <leo.barbosa@canonical.com> Wed, 05 Aug 2020 23:08:47 -0300
isc-dhcp (4.4.1-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix FTBFS due to gcc-9 adding --as-needed by default; patch by Reiner
Herrmann (Closes: #925720)
-- Paul Gevers <elbrus@debian.org> Wed, 22 Jan 2020 22:35:14 +0100
isc-dhcp (4.4.1-2) unstable; urgency=medium
* Set initial address to 0.0.0.0 on hurd (closes: #875566).
- Thanks to Joan Lledó.
* Update IPv4 address lifetimes on renew (closes: #834532).
- Thanks to Sven Ulland.
-- Michael Gilbert <mgilbert@debian.org> Tue, 11 Dec 2018 03:55:12 +0000
isc-dhcp (4.4.1-1) experimental; urgency=medium
* New upstream release.
- License changed from ISC license to MPL 2.0.
* Update debian/copyright.
* Drop unused libssl build dependency.
* Replace signing key with new upstream version.
* Update debian/watch to be slightly more robust.
* Support building with bind 9.11.5 (closes: #911975).
- Thanks to Thorsten Alteholz.
* Remove stale pid files in the server's postrm script (closes: #867362).
- Thanks to Thorsten Alteholz.
* Change maintainer email to isc-dhcp@packages.debian.org (closes: #899554).
-- Michael Gilbert <mgilbert@debian.org> Sun, 18 Nov 2018 00:07:49 +0000
isc-dhcp (4.3.5-4) unstable; urgency=medium
* Acknowledge and apply the non-maintainer upload.
- Thanks to Salvatore Bonaccorso.
* Fix build failure caused by bind 9.11.3 (closes: #894093).
-- Michael Gilbert <mgilbert@debian.org> Sun, 01 Apr 2018 05:37:25 +0000
isc-dhcp (4.3.5-3.1) unstable; urgency=medium
* Non-maintainer upload.
* Plugs a socket descriptor leak in OMAPI (CVE-2017-3144) (Closes: #887413)
* Corrected refcnt loss in option parsing (CVE-2018-5733) (Closes: #891785)
* Correct buffer overrun in pretty_print_option (CVE-2018-5732)
(Closes: #891786)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 04 Mar 2018 21:35:31 +0100
isc-dhcp (4.3.5-3) unstable; urgency=medium
* Add support for read-only /etc (closes: #642544).
- Thanks to Scott Moser.
* Wait for /etc/resolv.conf to become writable (closes: #687337).
- Thanks to Stéphane Graber.
* Suggest policykit-1 instead of depending on it (closes: #850726).
* Fix typo in --with-randomdev configure argument (closes: #838382).
* Touch dhcpd6.leases before starting an ipv6 server (closes: #824770).
- Thanks to Terry Burton.
* Use getifaddrs() system call to handle alias interfaces (closes: #605657).
- Thanks to Jiri Popelka.
-- Michael Gilbert <mgilbert@debian.org> Mon, 09 Jan 2017 04:55:32 +0000
isc-dhcp (4.3.5-2) unstable; urgency=medium
* Fix new upstream spelling errors.
* Add policykit-1 dependency to the server package (closes: #816325).
* Parse IPv6 server process id from the correct file (closes: #841766).
* Initialize all local variables in dhclient scripts (closes: #849100).
* Pass random device to configure when cross building (closes: #838382).
- Thanks to Helmut Grohne.
* Don't wait for a reply that will never come when releasing an ipv6 address
(closes: #769189).
-- Michael Gilbert <mgilbert@debian.org> Sun, 08 Jan 2017 23:11:52 +0000
isc-dhcp (4.3.5-1) unstable; urgency=medium
* New upstream release.
* Add lsb-base dependency to isc-dhcp-relay.
* Use the original author's dhcp-lease-list manpage.
* Correct the description of the common package (closes: #832782).
* If no interfaces have been specified, start servers for both IPv4 and IPv6
(closes: #815319).
-- Michael Gilbert <mgilbert@debian.org> Sat, 26 Nov 2016 06:44:09 +0000
isc-dhcp (4.3.5~b1-1) unstable; urgency=medium
* New upstream beta release.
* Fix some lintian warnings.
* Increase standards version.
* Update version control fields.
* Fix new upstream spelling mistakes.
-- Michael Gilbert <mgilbert@debian.org> Sun, 11 Sep 2016 22:59:15 +0000
isc-dhcp (4.3.4-1) unstable; urgency=medium
* New upstream stable release (closes: #817158).
* Touch dhcpd.leases in the server init script (closes: 765910).
-- Michael Gilbert <mgilbert@debian.org> Tue, 05 Apr 2016 03:27:34 +0000
isc-dhcp (4.3.4~b1-1) experimental; urgency=medium
* New upstream beta release:
- Fix CVE-2016-2774: limit the number of server TCP connections to 200.
* Link against bind 9.10.3.
* Include a manpage for dhcp-lease-list.
* Fix an error in the dhcpd.conf manpage.
-- Michael Gilbert <mgilbert@debian.org> Sat, 26 Mar 2016 01:55:17 +0000
isc-dhcp (4.3.3-9) unstable; urgency=medium
* Update standards version.
* Drop manpage hyphens patch.
* Install upstream changelogs.
* Install an example dhcpd6.conf file.
* Install upstream's README file (closes: #791788).
* Fix incorrect path in dhcp-lease-list script (closes: #814693).
* Add a status option to the relay init stript (closes: #726604).
* Check IPv4 and IPv6 server status independently (closes: #815180).
* Use /etc/dhcp/dhcpd6.conf for the IPv6 server settings (closes: #816008).
* Touch dhcpd.leases during postinst if it doesn't exist (closes: #765910).
-- Michael Gilbert <mgilbert@debian.org> Sun, 28 Feb 2016 20:38:52 +0000
isc-dhcp (4.3.3-8) unstable; urgency=medium
* Fix typos in recent changes to the server init script.
* Support server configurations still using INTERFACES (closes: #813339).
-- Michael Gilbert <mgilbert@debian.org> Sat, 13 Feb 2016 18:38:20 +0000
isc-dhcp (4.3.3-7) unstable; urgency=medium
* Migrate to dbgsym debug packages.
* Fix spelling error in changelog entry.
* Include LDFLAGS in all calls to configure.
* Fix relaying return packets (closes: #648401).
- Thanks to Steinar H. Gunderson.
* Fix cross-architecture building (closes: #812525).
- Thanks to Helmut Grohne.
* Initialize exit status in dhclient-script (closes: #800914).
* Fix CVE-2015-8605: maliciously crafted IPv4 packet can cause any of the
running DHCP applications to crash (closes: #810875).
-- Michael Gilbert <mgilbert@debian.org> Sun, 31 Jan 2016 01:31:59 +0000
isc-dhcp (4.3.3-6) experimental; urgency=medium
* Fix missing build flags from the last upload.
* Support IPv6 in the server init script (closes: #592539).
- Thanks to Florent Fourcot and Ron Murray.
* Don't assume an IPv6 prefix length of 64 (closes: #684009).
- Thanks to Arne Nordmark.
-- Michael Gilbert <mgilbert@debian.org> Sun, 04 Oct 2015 03:24:47 +0000
isc-dhcp (4.3.3-5) unstable; urgency=medium
* Add dependencies for the debug package.
* Fix comments in the debug script (closes: #773804).
* Add diversions for isc-dhcp-client-ddns (closes: #800749).
* Fix directory output by the debug script (closes: #794770).
* Fix exit code handling in dhclient-script (closes: #692846).
* Escape parentheses in init script sed command (closes: #771530).
* Add more IP address detail to dhclient output (closes: #486611).
* Add dhcp6.fqdn and dhcp6.sntp-servers to the default request options.
* Avoid infinite loop caused by misconfigured rfc3442-classless-static-routes
(closes: #730294).
-- Michael Gilbert <mgilbert@debian.org> Sat, 03 Oct 2015 18:41:26 +0000
isc-dhcp (4.3.3-4) unstable; urgency=medium
* Reenable NSUPDATE (closes: #798237).
* Add a DDNS enabled dhclient package.
* Include README file (closes: #791788).
* Recommend rather than depend on policycoreutils.
* Finish replacing macros in manpages (closes: #773801).
-- Michael Gilbert <mgilbert@debian.org> Sun, 20 Sep 2015 20:39:58 +0000
isc-dhcp (4.3.3-3) unstable; urgency=medium
* Revert change to lease file paths (closes: #798177).
-- Michael Gilbert <mgilbert@debian.org> Sun, 06 Sep 2015 16:47:39 +0000
isc-dhcp (4.3.3-2) unstable; urgency=medium
* Use default paths for lease files.
* Move omshell into the server package.
* Avoid unnecessary libirs dependencies.
* Recommend rather than depend isc-dhcp-common.
* Disable NSUPDATE (closes: #712503).
* Update translation (closes: #677918).
* Enable pid file logging (closes: #792928).
* Fix variables in manpages (closes: #570895).
* Use a symlink for the debug script (closes: #794771).
* Enable -user, -group, and -chroot server options (closes: #793490).
* Avoid launching the server when its already running (closes: #704175).
* Fix error when max lease time is used on 64-bit systems (closes: #795227).
-- Michael Gilbert <mgilbert@debian.org> Sun, 06 Sep 2015 04:21:05 +0000
isc-dhcp (4.3.3-1) unstable; urgency=medium
* New upstream release.
* Add uversionmangle to debian/watch.
* Restore Enhances field for the ldap package (closes: #790164).
* Add a logcheck snippet for the server package (closes: #688339).
- Thanks to Jonathan Wiltshire.
* Add DHCPv6 support to dhclient-script.linux.udeb (closes: #635897).
- Thanks to Colin Watson.
* Add policycoreutils dependency to isc-dhcp-server (closes: #797276).
* Fix undefined variables in dhclient-script.kfreebsd (closes: #691090).
- Thanks to Peter Marschall.
* Avoid condition where hostname could be set to '(none)' (closes: #604883).
- Thanks to Pavel Cahyna.
-- Michael Gilbert <mgilbert@debian.org> Sat, 05 Sep 2015 19:20:42 +0000
isc-dhcp (4.3.2-1) unstable; urgency=medium
* New upstream stable release.
- Many fixes to incorrect checksumming (closes: #353161, #652739).
- VLAN packets now only seen on VLAN interfaces (closes: #643564).
* Remove references to old dhcp3 packages (closes: #773476).
* Replace signing key with new upstream version.
* Fix typo in debug script (closes: #781768).
* Drop bind from the upstream tarball.
* Drop transitional debug packages.
* Drop dhcp3 conffile handling.
* Update debian/copyright.
-- Michael Gilbert <mgilbert@debian.org> Sun, 10 May 2015 22:44:17 +0000
isc-dhcp (4.3.1-6) unstable; urgency=medium
* Fix a regression in error handling for the server's init script
(closes: #755834).
- Thanks to François-Régis Vuillemin.
-- Michael Gilbert <mgilbert@debian.org> Fri, 13 Feb 2015 05:13:19 +0000
isc-dhcp (4.3.1-5) unstable; urgency=medium
* Dynamically link against system bind libraries.
-- Michael Gilbert <mgilbert@debian.org> Thu, 16 Oct 2014 01:28:44 +0000
isc-dhcp (4.3.1-4) unstable; urgency=medium
* Bump standards to 3.9.6.
* Correct netmask handling in dhclient-script.linux.udeb (closes: #759761).
* Fix missing alias_subnet_mask in dhclient-script.linux (closes: #691091).
-- Michael Gilbert <mgilbert@debian.org> Sun, 05 Oct 2014 22:10:15 +0000
isc-dhcp (4.3.1-3) unstable; urgency=medium
* Ignore arguments passed to sourced scripts (closes: #763208).
-- Michael Gilbert <mgilbert@debian.org> Sun, 28 Sep 2014 21:00:36 +0000
isc-dhcp (4.3.1-2) unstable; urgency=medium
* Use /bin/sh instead of /bin/bash for dhclient scripts (closes: #762923).
-- Michael Gilbert <mgilbert@debian.org> Sat, 27 Sep 2014 21:57:28 +0000
isc-dhcp (4.3.1-1) unstable; urgency=medium
* New upstream release.
* Avoid divide by zero issue (closes: #694650).
* Correct typo in dhclient-script.linux (closes: #748272).
* Ensure dhcpd.leases exists for the server init script (closes: #720860).
-- Michael Gilbert <mgilbert@debian.org> Wed, 13 Aug 2014 23:36:21 +0000
isc-dhcp (4.3.1~b1-1) experimental; urgency=medium
* New upstream beta release.
* Add debian/README.source.
-- Michael Gilbert <mgilbert@debian.org> Sat, 19 Jul 2014 22:06:23 +0000
isc-dhcp (4.3.0+dfsg-2) unstable; urgency=medium
* Ship dhcp-lease-list (closes: #741488).
* Fix lease removal in postrm (closes: #724033).
* Add upstream public signing key for uscan verification.
-- Michael Gilbert <mgilbert@debian.org> Mon, 09 Jun 2014 01:07:09 +0000
isc-dhcp (4.3.0+dfsg-1) unstable; urgency=medium
* New upstream stable release.
* Update debian/copyright to format 1.0.
* Depend on iproute2 instead of iproute (closes: #742151).
* Depend on freebsd-net-tools for kfreebsd (closes: #738934).
* Acknowledge and apply the non-maintainer upload (closes: #747017).
-- Michael Gilbert <mgilbert@debian.org> Sat, 24 May 2014 21:54:01 +0000
isc-dhcp (4.3.0a1-2.1) experimental; urgency=medium
* Non-Maintainer Upload
* rules: Fix bind patching.
* bind-patches/hurd: Add upstream patch to fix Hurd build.
* rules: Select proper backends in the Hurd case.
* dhclient-script.hurd, dhclient-script.hurd.udeb,
rfc3442-classless-routes.hurd: Add Hurd scripts.
* Closes: #616290.
-- Samuel Thibault <sthibault@debian.org> Sun, 06 Apr 2014 22:14:44 +0200
isc-dhcp (4.3.0a1-2) experimental; urgency=medium
* Remove unused template.
* Remove unnecessary breaks.
* Fix version control fields.
* Escape hyphens in manpages.
* Enable all build hardening flags.
* Fix init functions lintian warning.
* Create the /var/lib/dhcp directory (closes: #734773).
-- Michael Gilbert <mgilbert@debian.org> Fri, 10 Jan 2014 04:00:42 +0000
isc-dhcp (4.3.0a1-1) experimental; urgency=medium
* New upstream release.
* Use debhelper 9 and and simplified debian rules.
* Use a single package for debugging symbols.
* Bump standards to 3.9.5.
* Update watch file.
* Use dh-autoreconf.
-- Michael Gilbert <mgilbert@debian.org> Sat, 21 Dec 2013 22:04:30 +0000
isc-dhcp (4.2.4-7) unstable; urgency=low
* Set --with-ldapcrypto to restore openssl support (closes: #692808).
- Thanks to Christian Hoffmann and Stéphane Graber.
-- Michael Gilbert <mgilbert@debian.org> Mon, 27 May 2013 20:35:09 +0000
isc-dhcp (4.2.4-6) unstable; urgency=high
* Fix cve-2013-2494: issues with regular expression handling in the embedded
bind library (closes: #704426).
-- Michael Gilbert <mgilbert@debian.org> Sun, 31 Mar 2013 23:52:58 +0000
isc-dhcp (4.2.4-5) unstable; urgency=medium
* Handle dhclient.conf left behind during a prior lenny->squeeze upgrade,
upgrade it now to avoid an unnecessary conffile prompt (closes: #698582).
- Thanks to Gregor Herrmann for the patch.
* Also, do not copy dhclient.conf from /etc/dhcp3 anymore (closes: #700363).
-- Michael Gilbert <mgilbert@debian.org> Tue, 12 Feb 2013 03:14:13 +0000
isc-dhcp (4.2.4-4) unstable; urgency=medium
* Run exit hooks when "dhclient -1" fails (closes: #486520).
* Add dhcp6.name-servers and dhcp6.domain-search to the default request
options in dhclient.conf (closes: #693315).
-- Michael Gilbert <mgilbert@debian.org> Thu, 13 Dec 2012 21:44:18 -0500
isc-dhcp (4.2.4-3) unstable; urgency=high
* Maintainer security upload.
* Fix cve-2012-2248: as of 4.2.x the build system prefix now gets included
in CLIENT_PATH. This has security implications since the build system's
source path is now included in dhclient's search PATH on users' systems,
so sanitize the prefix to not include build system paths (closes: #690532)
- Patch thanks to Raphael Geissert
-- Michael Gilbert <mgilbert@debian.org> Mon, 15 Oct 2012 14:18:07 -0400
isc-dhcp (4.2.4-2) unstable; urgency=low
* Fix multiple security issues (closes: #686174)
- cve-2012-3570: buffer overflow via lanrge hardware address length.
- cve-2012-3571: denial-of-service via zero-length packets.
- cve-2012-3954: two potential memory leaks.
- cve-2012-3955: server abort due to certain lease time changes.
-- Michael Gilbert <mgilbert@debian.org> Fri, 14 Sep 2012 00:46:11 -0400
isc-dhcp (4.2.4-1) unstable; urgency=low
* New upstream release
* debian/control: reformatted Uploaders so that dch doesn't think I'm making
NMUs
* debian/rules: do a clean between the LDAP-enabled build and the
non-LDAP-enabled one, so that no LDAP-related artefacts are accidently
incorporated into the non-LDAP build
* debian/dhclient-script.*: conditionalise the chown/chmod of the new
resolv.conf on the existence of the old one (closes: #595400)
* debian/dhclient-script.linux: comply with RFC 3442 and ignore
the routers option if the rfc3442-classless-static-routes option is present
(closes: #592735)
* debian/dhclient-script.kfreebsd: fix subnet mask handling (closes: #677985)
-- Andrew Pollock <apollock@debian.org> Sat, 09 Jun 2012 14:01:05 -0700
isc-dhcp (4.2.2.dfsg.1-5) unstable; urgency=medium
[ Andrew Pollock ]
* debian/dhclient.conf: send the hostname (closes: #151820)
[ Michael Gilbert ]
* Fix cve-2011-4868: error in DDNS handling with IPv6 (closes: #655746)
* Fix cve-2011-4539: error in regular expression handling
(closes: #652259)
* Make dependencies diff-able
* Add myself to uploaders
* Remove all automatically generated files in clean rule
* Medium urgency for security updates
-- Michael Gilbert <mgilbert@debian.org> Sat, 28 Apr 2012 16:00:49 -0400
isc-dhcp (4.2.2.dfsg.1-4) unstable; urgency=low
* The "Zoe woke up at 4am and I couldn't get back to sleep so I had some
extra time to work on this" release
* patch the Makefile for the embedded BIND libraries so that autoconf is run
so that the modification to configure.in to fix the FTBFS on kFreeBSD
actually does something useful (closes: #643569)
-- Andrew Pollock <apollock@debian.org> Wed, 14 Mar 2012 06:25:28 -0700
isc-dhcp (4.2.2.dfsg.1-3) unstable; urgency=low
* debian/control: remove transitional packages
* debian/rules: apply the intent of Pierre Chifflier's patch to enable
hardening options (closes: #644413)
* debian/control: also add inetutils-ping to the dependencies for
isc-dhcp-client on hurd (closes: #648140)
* Convert to 3.0 (quilt) source format:
- debian/control: remove build-dep on dpatch
- debian/rules: stop including dpatch.make
- debian/rules: remove dpatch-related target dependencies
- convert patches from dpatch to pure quilt
- remove debian/README.source
* debian/rules: cleaned up the target names a bit to reflect the lack of
patching going on now
* repack bind.tar.gz in upstream source tarball to patch configure.in for
FTBFS on kFreeBSD and remove RFCs (closes: #643569, #645760)
* debian/watch: add dversionmangle to deal with dfsg upstream tarball
* Updated Dutch debconf template translation (closes: #651396)
* Added Polish debconf template translation (closes: #659372)
* Updated Brazilian Portugeuse debconf template translation (closes: #663494)
* debian/control: bumped Standards-Version (no changes)
-- Andrew Pollock <apollock@debian.org> Tue, 13 Mar 2012 22:04:53 -0700
isc-dhcp (4.2.2-2) unstable; urgency=low
* debian/rules: use dpkg-buildflags to set CFLAGS, and export CFLAGS (closes:
#643470)
* debian/dhclient.conf: revert hostname setting behaviour to something
equivalent to what upstream ships to avoid surprising people with unwanted
hostname changes when changing networks (closes: #648676)
* debian/dhclient-script.kfreebsd: apply patch from Robert Millan to resync
dhclient-script with FreeBSD version (closes: #645502)
* debian/control: add inetutils-ping to the dependencies for isc-dhcp-client
on kfreebsd (closes: #648140)
* Updated German debconf template translation (closes: #641843)
* added harding-wrapper to build dependencies and invoke it in debian/rules
(closes: #611192)
-- Andrew Pollock <apollock@debian.org> Sat, 19 Nov 2011 21:37:24 -0800
isc-dhcp (4.2.2-1) unstable; urgency=low
* New upstream release, includes security fixes for CVE-2011-2748 and
CVE-2011-2749 (closes: #638404)
* Remove obsolete patches, refit remaining patches
* Remove LDAP patch, it's finally upstream now (yay!)
* debian/rules: adjust double build for the non-existence of the LDAP patch
* debian/isc-dhcp-server-ldap.docs: update for new location of documentation
* debian/rules: added build-arch and build-indep targets
* debian/rules: applied patch from Kees Cook to call dh_link (closes: #614992)
* debian/dhclient-script.linux: applied patch from Colin Watson to make
dhclient-script support stateless DHCPv6 (closes: #632888)
* debian/dhclient-script.linux: fix regression for MTU <= 576 handling
(closes: #638267)
* Apply patch from Peter Marschall to split the rfc3442-classless-routes hook
into a Linux and a kFreeBSD variant, so that the Linux one can use iproute
(closes: #630519)
* debian/isc-dhcp-server.postinst: apply patch from Peter Marschall to
document new variables in /etc/default/isc-dhcp-server
* debian/isc-dhcp-server.init.d: apply patch from Peter Marschall to
- make the name of the default file configurable
- make the name of the server configuration file configurable (closes:
#590158, #565650)
- allow passing additional options to dhcpd (closes: #613734)
- read PID from config file
* Add Catalan debconf template translation (closes: #628372)
* debian/isc-dhcp-client,dhcp3-client}.links: apply patch from Peter
Marschall to move old compatibility links to the old compatibility package
(closes: #614992)
* debian/isc-dhcp-server.postinst: apply patch from Peter Marschall to fix
comment in /etc/default/isc-dhcp-server (closes: #616417)
* debian/control: apply patch from Peter Marschall to add a Provides:
dhcp-client to isc-dhcp-client (closes: #236001)
* debian/dhclient-script.{linux,kfreebsd}: apply patch from Peter Marschall
to fix metric calculation (closes: #629632)
* debian/dhclient-script.linux: apply patches from Peter Marschall to support
IPv6 link-local resolvers
* debian/dhclient-script.{linux,kfreebsd}: applied patch from Peter Marschall
to factor out the hostname setting to a separate function
* debian/dhclient-script.{linux,kfreebsd}: applied patch from Peter Marschall
to harmonize the logic for setting the hostname (closes: #246155)
* apply patch from Peter Marschall to use one common script for the debug
hooks
* debian/rfc3442-classless-routes.{linux,kfreebsd}: applied patch from Peter
Marschall to take care of link-local routes (closes: #521024)
* debian/dhclient-script.*: apply patch from Peter Marschall to use alternate
value expansion
* debian/isc-dhcp-server.postinst: eliminate an error message from sed if no
interfaces are provided
-- Andrew Pollock <apollock@debian.org> Sun, 28 Aug 2011 22:12:21 -0700
isc-dhcp (4.1.1-P1-18) unstable; urgency=low
* debian/control: fix short description for dhcp3-client package
* debian/rfc3442-classless-routes: convert to using iproute (closes: #630519)
-- Andrew Pollock <apollock@debian.org> Sat, 18 Jun 2011 10:07:16 -0700
isc-dhcp (4.1.1-P1-17) unstable; urgency=low
* Incorporate and acknowledge NMU
* Apply a multitude of patches from Peter Marschall (closes: #609408)
- fix domain_name in domain_search check in dhclient-script
(closes: #567141)
- fix indentation in dhclient-script to improve readability
- remove bashisms from dhclient-script
- fix setting of hostname in dhclient-script
- remove bashisms from rfc3442-classless-routes hook
- check for $new_domain_search in dhclient-script
- synchronize the Linux dhclient-script more with the kFreeBSD one
- general readability improvements to dhclient-script
- add DHCPv6 support to the Linux dhclient-script (closes: #591589)
- expand the variables reported by the debug hooks
- remove unused variables from dhclient-script
- convert the Linux dhclient-script to use iproute2 (closes: #275653)
* debian/control: bumped Standards-Version (no changes)
-- Andrew Pollock <apollock@debian.org> Wed, 18 May 2011 23:02:44 -0700
isc-dhcp (4.1.1-P1-16.1) unstable; urgency=high
* Non-maintainer upload.
* Fix cve-2011-0997: remote code execution vulnerability in dhclient
(closes: #621099).
* Fix ftbfs with 'ld --no-as-needed' (closes: #602312).
-- Michael Gilbert <michael.s.gilbert@gmail.com> Sat, 09 Apr 2011 10:57:14 -0400
isc-dhcp (4.1.1-P1-16) unstable; urgency=high
* Patch by Raphael Geissert from 4.1-ESV for CVE-2011-0413 (closes: #611217)
-- Andrew Pollock <apollock@debian.org> Thu, 03 Feb 2011 22:20:55 -0800
isc-dhcp (4.1.1-P1-15) unstable; urgency=low
* Remove isc-dhcp/server/dhcpv6.c.orig from CVE-2010-3611.dpatch
-- Andrew Pollock <apollock@debian.org> Sat, 27 Nov 2010 09:42:20 -0800
isc-dhcp (4.1.1-P1-14) unstable; urgency=low
* Backport fix for CVE-2010-3611 from 4.1.2
-- Andrew Pollock <apollock@debian.org> Fri, 19 Nov 2010 20:54:19 -0800
isc-dhcp (4.1.1-P1-13) unstable; urgency=low
* Updated Spanish debconf template translation (closes: #603122)
-- Andrew Pollock <apollock@debian.org> Sun, 14 Nov 2010 13:16:13 -0800
isc-dhcp (4.1.1-P1-12) unstable; urgency=low
* Updated patch to correct groff warnings in man pages, to be more
anatomically correct (thanks to Colin Watson) (closes: #602114)
* Updated Vietnamese debconf template translation (closes: #601535)
* Added patch that came from Ubuntu by way of Colin Watson to update
dhclient-script(8) to mention the exit hook functionality (closes: #469203)
-- Andrew Pollock <apollock@debian.org> Tue, 02 Nov 2010 23:27:59 -0700
isc-dhcp (4.1.1-P1-11) unstable; urgency=low
* debian/control: make isc-dhcp-client's dependency on iproute Linux-only
(closes: #601154)
-- Andrew Pollock <apollock@debian.org> Sat, 23 Oct 2010 14:26:41 -0700
isc-dhcp (4.1.1-P1-10) unstable; urgency=low
* Updated Japanese debconf template translation (closes: #590239)
* Updated Russian debconf template translation (closes: #591240)
* Updated Swedish debconf template translation (closes: #592044)
* Updated Spanish debconf template translation (closes: #592173)
* Updated Galacian debconf template translation (closes: #592810)
* Updated Czech debconf template translation (closes: #593228)
* Updated Italian debconf template translation (closes: #593576)
* debian/dhcp3-server.postinst: reinstate, remove obsolete init script
(closes: #594527)
* debian/dhcp3-relay.postinst: reinstate, remove obsolete init script
* debian/control: make all of the transitional dummy packages Priority: extra
and Section: oldlibs (closes: #594339)
* debian/control: add iproute to dependencies of isc-dhcp-client
* Updated Portugeuse debconf template translation (closes: #597143)
* Added Danish debconf template translation (closes: #600748)
* debian/control: bumped Standards-Version (no changes)
* debian/control: added pkg-config to Build-Depends
* Added patch from Simon McVittie to stop unnecessary linking with libcrypto
(closes: #592361)
* debian/control: added Vcs-Git and Vcs-Browser fields
* debian/README.source: made a more explicit mention of how the build works
* Add debian/source/format (sticking with 1.0 for now)
-- Andrew Pollock <apollock@debian.org> Thu, 21 Oct 2010 22:25:59 -0700
isc-dhcp (4.1.1-P1-9) unstable; urgency=high
* debian/control: really don't make the new packages conflict with the
old/transitional packages (closes: #590186)
* debian/control: rather than depend on the version of ifupdown that invokes
dhclient correctly, conflict with older versions of ifupdown that do not
(closes: #546883, #590092)
* Updated Russian debconf template translation (closes: #589252)
* Updated Swedish debconf template translation (closes: #589261)
* Updated French debconf template translation (closes: #589492)
* Updated German debconf template translation (closes: #589578)
-- Andrew Pollock <apollock@debian.org> Sat, 24 Jul 2010 10:33:04 -0700
isc-dhcp (4.1.1-P1-8) unstable; urgency=low
* debian/dhcp3-client.postrm: bring back to clean up cruft (closes: #588203)
* debian/dhcp3-server.postrm: bring back to clean up cruft
* Updated French debconf templates translation (closes: #588281)
* debian/isc-dhcp-server.templates: corrected /etc/dhcp3 -> /etc/dhcp
* debian/rules: correctly build LDAP-enabled DHCP server (closes: #574754)
* debian/control: build-depend on autoconf and automake
* debian/control: bump Standards-Version (no changes)
-- Andrew Pollock <apollock@debian.org> Wed, 14 Jul 2010 22:28:21 -0700
isc-dhcp (4.1.1-P1-7) unstable; urgency=low
* The "There goes the neighbourhood" release
* No changes rebuild to upload to unstable
-- Andrew Pollock <apollock@debian.org> Sun, 04 Jul 2010 22:58:02 -0700
isc-dhcp (4.1.1-P1-6) experimental; urgency=low
* debian/rules: configure client to use correct path for DHCPv6 leases file
(closes: #587884)
-- Andrew Pollock <apollock@debian.org> Fri, 02 Jul 2010 21:04:16 -0700
isc-dhcp (4.1.1-P1-5) experimental; urgency=low
* split out the udeb dhclient-script so there's one for Linux and one for
kFreeBSD (closes: #551054)
-- Andrew Pollock <apollock@debian.org> Tue, 29 Jun 2010 22:34:06 -0700
isc-dhcp (4.1.1-P1-4) experimental; urgency=low
* debian/rules: really enable DHCPv6 (closes: #587269)
* debian/control: conflict with resolvconf <= 1.45 (closes: #586095)
-- Andrew Pollock <apollock@debian.org> Sat, 26 Jun 2010 22:33:43 -0700
isc-dhcp (4.1.1-P1-3) experimental; urgency=low
* debian/rules: stop invoking dh_installinit with --noscripts so the
update-rc.d stuff is done properly
* debian/isc-dhcp-{relay,server}.{postinst,postrm}: remove calls to
update-rc.d and invoke-rc.d, let dh_installinit handle it
* debian/isc-dhcp-server.init.d: add a start-time dependency on $named
(closes: #586035)
* debian/{rules,isc-dhcp-server.{prerm,postinst}}: ignore failure to start
the DHCP server
-- Andrew Pollock <apollock@debian.org> Tue, 15 Jun 2010 23:20:30 -0700
isc-dhcp (4.1.1-P1-2) experimental; urgency=low
* debian/isc-dhcp-{server,relay}.init: go back to not mentioning any
runlevels for Default-Stop
* debian/isc-dhcp-server.postinst: don't specify any runlevels for stop
scripts when invoking update-rc.d
-- Andrew Pollock <apollock@debian.org> Mon, 07 Jun 2010 19:41:25 -0700
isc-dhcp (4.1.1-P1-1) experimental; urgency=low
* New Upstream Version
- Fix for fencepost error on zero-length client identifier
- CVE-2010-2156
- VU#541921
* debian/isc-dhcp-{server,relay}.init: adjust Default-Stop to match
invocation of update-rc.d in postinst to avoid warning from update-rc.d
-- Andrew Pollock <apollock@debian.org> Mon, 07 Jun 2010 09:41:34 -0700
isc-dhcp (4.1.1-3) experimental; urgency=low
* debian/control: don't make the new packages conflict with the
old/transitional packages
-- Andrew Pollock <apollock@debian.org> Sun, 06 Jun 2010 20:01:22 -0700
isc-dhcp (4.1.1-2) experimental; urgency=low
* debian/control: make dhcp3-* packages match what the override file says
* debian/rules: DHCPv6 support builds now, stop disabling (closes: #549060)
* debian/README.Debian: stop mentioning DHCPv6 is disabled
-- Andrew Pollock <apollock@debian.org> Fri, 04 Jun 2010 10:46:42 -0700
isc-dhcp (4.1.1-1) experimental; urgency=low
* New Upstream Version
* Re-add LDAP patches
* debian/control: bump Standards-Version (no changes)
* debian/isc-dhcp-server.init.d: don't mention any runlevels for Default-Stop
-- Andrew Pollock <apollock@debian.org> Sat, 06 Mar 2010 18:59:54 -0800
isc-dhcp (4.1.0-2) experimental; urgency=low
* debian/README.Debian: update for current upstream version, specifically
mention that DHCPv6 is disabled
* debian/rules: provide a pointer to why DHCPv6 is disabled
* Fix dhclient-script so that changes in the DHCP-provided hostname
cause a hostname change to occur on the client
* Remove unnecessary sleep from dhclient-script
* Updated LDAP patch
-- Andrew Pollock <apollock@debian.org> Sun, 01 Nov 2009 15:02:10 -0800
isc-dhcp (4.1.0-1) experimental; urgency=low
* The "throw everything out and start over" release
* New upstream release
* debian/control: drop 3 from the binary package names, adjust dependencies,
maintainer scripts, accordingly
* use debhelper more extensively, de-cruft debian/rules
* remove dhcp-server preinst
* add debug packages
* add transitional packages
* add debian/README.source
* debian/control: bumped Standards-Version
* debian/isc-dhcp-server.postinst: transfer existing config and lease files
when upgrading from dhcp3-server
* debian/isc-dhcp-client.postinst: transfer existing config file when
upgrading from dhcp3-client
* debian/changelog: added marker for legacy malformed changelog entry to
placate Lintian
* add a patch to correct groff warnings in man pages
* add a patch to ignore checksums on the loopback interface
* debian/control: make isc-dhcp-client depend on ifupdown that invokes
/sbin/dhclient correctly
-- Andrew Pollock <apollock@debian.org> Wed, 02 Sep 2009 22:34:25 -0700
dhcp3 (3.1.2-1) unstable; urgency=low
* New upstream release
* Removed pretty_print_option() patch (incorporated upstream)
* debian/dhclient-script.linux: apply patch from Kees Cook to ignore
DHCP-supplied MTUs below 576 (closes: #513616)
* debian/dhclient.conf: (re)add ntp-servers to the request list (closes:
#407667)
* debian/rfc3442-classless-routes: also run for REBOOT reason (closes:
#515756)
* debian/control: bumped Standards-Version (no changes)
* debian/compat: bump compatibility to 5
* debian/dhcp3-server.NEWS: adjust indenting to please Lintian
* debian/control: added ${misc:Depends} to dependencies of dhcp-client and
dhcp3-dev
-- Andrew Pollock <apollock@debian.org> Wed, 01 Apr 2009 22:26:51 -0700
dhcp3 (3.1.1-7) unstable; urgency=low
* debian/control: make dhcp-client Priority: extra
-- Andrew Pollock <apollock@debian.org> Sun, 01 Feb 2009 22:37:55 -0800
dhcp3 (3.1.1-6) unstable; urgency=low
* debian/dhcp3-server.init: use -q in test_config()
* debian/dhcp3-server.NEWS: added a mention of the requirement for
consistent naming of failover peers (closes: #513506)
* debian/dhcp3-server.NEWS: merged NEWS.Debian, removed
debian/dhcp3-server.docs
-- Andrew Pollock <apollock@debian.org> Sun, 01 Feb 2009 18:51:06 -0800
dhcp3 (3.1.1-5) unstable; urgency=high
* Really incorporate previous (3.1.1-3.1) NMU (closes: #484424, #484261)
* Updated Brazilian Portugeuse debconf template translation (closes:
#501641)
-- Andrew Pollock <apollock@debian.org> Thu, 16 Oct 2008 22:29:41 -0700
dhcp3 (3.1.1-4) unstable; urgency=high
* Acknowledge and incorporate previous NMU (closes: #484424)
* debian/dhcp3-server.postinst: run restorecon to correct the SELinux
context (closes: #499266)
* Updated Swedish debconf template translation (closes: #491762)
-- Andrew Pollock <apollock@debian.org> Sat, 04 Oct 2008 12:54:42 -0700
dhcp3 (3.1.1-3) unstable; urgency=low
* debian/dhcp3-server.init: correct typoed invocation of log_daemon_msg
(closes: #489506)
-- Andrew Pollock <apollock@debian.org> Sun, 06 Jul 2008 14:08:21 -0700
dhcp3 (3.1.1-2) unstable; urgency=low
* The "ISC will get domain-search right one of these releases" release
* Patch pretty_print_option() to return all domains provided in the
domain-search option (code taken from 4.0.0)
* debian/control: add Suggests/Enhances relationship between
dhcp3-server/dhcp3-server-ldap
* debian/control: add a dhcp-client dummy package for transitioning from
etch to lenny
* debian/control: bumped Standards-Version (no changes)
* debian/control: s/Uploader/Uploaders/
* debian/rules: removed some old cruft predating use of dpatch for patch
management
* removed debian/scripts, nothing in there is referenced any more
* debian/debug-{enter,exit}: update debug hooks to also log the
domain-search option
* Added hook to dhclient to support RFC3442 (classless static route option)
and add rfc3442-classless-static-routes to the options requested (closes:
#396545)
* Updated debian/patches/dhcp-3.1.0-ldap-code.dpatch (gracias José):
- Corrected to use /var/lib/dhcp3 directory (closes: #484424)
- Fixed LDAP bind connection (closes: #484261)
* debian/dhcp3-client.prerm: removed, it wasn't doing anything
* Added Lintian override for possible-gpl-code-linked-with-openssl to
dhcp3-server-ldap
* debian/dhclient-script.{linux,kfreebsd}: stop stripping out literal \032
from $new_domain_search. It only gets in there if the domain-search is
incorrectly specified as a single string of multiple space-separated
domains.
* debian/dhclient-script.{linux,kfreebsd}: only prepend the contents of the
domain-name option to the contents of the domain-search option if it is
not already present
* debian/rules: remove client/scripts/debian on clean (closes: #486514)
* debian/{dhcp3-server.init.d,dhcp3-server.postinst}: apply patch from
Martin Pitt to not call init script on halt/reboot. Also remove stop
symlinks from runlevels 0 and 6 for people upgrading (closes: #486518)
* debian/dhcp3-server.init: applied patch from Martin Pitt to use LSB
functions (closes: #486508)
* debian/control: add lsb-base to dependencies of dhcp3-server
-- Andrew Pollock <apollock@debian.org> Mon, 16 Jun 2008 21:11:57 -0700
dhcp3 (3.1.1-1) unstable; urgency=low
* New upstream release
* Refit debian/patches/dhclient.c.stale-pids.dpatch
* Remove debian/patches/fix-agent-options.dpatch (fixed upstream)
* debian/dhcp3-server.init: add slapd to Should-{Start,Stop} (closes:
#478662)
* Apply kfreebsd patch unconditionally (closes: #470989)
* debian/dhclient-script.{linux,kfreebsd}: Applied patch from Bart Oldeman
to really fix support for point-to-point Ethernet (closes: #472962)
-- Andrew Pollock <apollock@debian.org> Wed, 14 May 2008 22:44:23 -0700
dhcp3 (3.1.0-5) unstable; urgency=low
* debian/control: Make priority of dhcp3-server-ldap optional (closes:
#469514)
-- Andrew Pollock <apollock@debian.org> Tue, 11 Mar 2008 12:02:43 -0700
dhcp3 (3.1.0-4) unstable; urgency=low
* Created a dhcp3-server-ldap package (Gracias José L. Redrejo Rodríguez)
(Closes: #215968):
- debian/control: added needed dependencies for building the new package.
- created debian/patches/dhcp-3.1.0-ldap-docs.dpatch and
debian/patches/dhcp-3.1.0-ldap-code.dpatch files.
- debian/rules: modified to build both versions of dhcp3-server.
- Added needed debian/dhcp3-server-ldap.* files.
* debian/copyright: revamped
* debian/control: formally becoming the maintainer after 3 years
-- Andrew Pollock <apollock@debian.org> Sun, 02 Mar 2008 22:26:51 -0800
dhcp3 (3.1.0-3) unstable; urgency=low
* debian/dhclient-script.{linux,kfreebsd}: modified per Thomas Brunko's
suggestion to handle transitioning from sites that were using the
domain-name option with multiple domains to jury rig a search path.
* debian/control: remove Matt Zimmerman from Uploaders at his request
* debian/dhclient-script.{linux,kfreebsd}: if there's a domain-name option
and no domain-search option, put the domain-name option contents into the
search line of /etc/resolv.conf (closes: #462570)
* Updated Japanese debconf template translation (closes: #463239)
* Added a patch to make dhclient ignore ARPHRD_VOID interfaces (closes:
#463499)
* Added patch from Frédéric Brière to fix spurious "option space agent does
not exist, but is configured" messages from dhclient (closes: #460833,
#460837)
* debian/dhcp3-client.NEWS: thoroughly discussed the new domain-search
option and the new treatment of the domain-name option in light of it
* debian/dhcp3-server.NEWS: advised against putting multiple domains in the
domain-search option
-- Andrew Pollock <apollock@debian.org> Sun, 03 Feb 2008 15:11:06 -0800
dhcp3 (3.1.0-2) unstable; urgency=low
* debian/dhclient-script.{linux,kfreebsd}: Applied patch from Yves-Alexis
Perez to properly remove all instances of \032 in the domain-search option
not just the first one (closes: #461056)
* Applied patch from Frans Pop to incorporate the light-weight
debian-installer dhclient-script into the dhcp3-client-udeb package
(closes: #461098, #313866)
* debian/dhclient-script.{linux,kfreebsd}: added fix suggested by Helmar
Gerloni for static leases without a default gateway option (closes:
#399084)
-- Andrew Pollock <apollock@debian.org> Fri, 18 Jan 2008 16:35:39 -0800
dhcp3 (3.1.0-1) unstable; urgency=low
* New upstream release
* Removed patch for #152287 to increase IP TTL, as upstream now increase it
even further
* Refit patches
* debian/rules: only call "make distclean" if Makefile exists
* debian/control: change ${Source-Version} to ${binary:Version}
* debian/control: bumped Standards-Version to 3.7.3
* debian/dhcp3-{relay,server}.init.d: applied patches from Petter
Reinholdtsen to correct LSB headers (closes: #458509)
* debian/dhcp3-client.postinst: applied patch from Michael Vogt to fix
upgrading in non-interactive mode (closes: #456891)
* debian/dhclient-script.{linux,kfreebsd}: Added domain-search (option 119)
support (closes: #274308)
* debian/dhclient.conf: request domain-search as well (closes: #274308)
* debian/dhclient-script.{linux,kfreebsd}: if the domain-name option is set,
set "domain" in /etc/resolv.conf, if the domain-search option is set, set
"search" in /etc/resolv.conf
* debian/dhclient-script.kfreebsd: Syncronised a bunch of previous changes
to the Linux-specific version
* debian/dhcp3-relay.dirs: usr/share/man/man5 was empty, stop making it
* Updated Basque debconf template translation (closes: #457286)
* Added Finnish debconf template translation (closes: #447401)
* Added Slovak debconf template translation (closes: #438574)
* debian/rules: Applied patch from Neil Williams to add cross build support
(closes: #451139)
-- Andrew Pollock <apollock@debian.org> Sun, 13 Jan 2008 17:32:12 -0800
dhcp3 (3.0.6-1) unstable; urgency=low
* New upstream release
* debian/rules: remove Conflicts: dhcp-client-udeb for dhcp3-client-udeb
* Added Korean debconf template translation (closes: #429773)
* Updated Dutch debconf template translation (closes: #427533)
* Remove patch to fix #147582 as it has been incorporated upstream
* Removed documentation patch as it has been incorporated upstream
-- Andrew Pollock <apollock@debian.org> Fri, 20 Jul 2007 23:25:29 -0700
dhcp3 (3.0.5-3) unstable; urgency=low
* debian/rules: Don't ship dhclient-script in the udeb (closes: #398966)
* debian/dhcp3-client-udeb.postinst: symlink /etc/dhclient-script to
/sbin/dhclient-script until netcfg installs it in the right place
-- Andrew Pollock <apollock@debian.org> Sat, 23 Jun 2007 16:06:51 +0100
dhcp3 (3.0.5-2) unstable; urgency=low
* The "as Lintian clean as it's gonna get" release
* debian/rules: Invoke configure such that the compiler flags can be
influenced by DEB_BUILD_OPTIONS (I finally figured it out)
* debian/dhcp-{prerm,postinst}.{prerm,postinst}: unconditionally use invoke-rc.d
* debian/control: Bumped Standards-Version to 3.7.2.2 (huzzah! finally!)
* debian/dhclient.conf: revert change in 3.0.5-1 to not request anything
in particular, seems to break some peoples networking (closes: #430064)
* debian/dhclient.conf: request ntp-servers as well (closes: #407667)
-- Andrew Pollock <apollock@debian.org> Fri, 22 Jun 2007 13:33:39 +0100
dhcp3 (3.0.5-1) unstable; urgency=low
* New upstream release
* Remove patch for 64-bit, it's fixed upstream
* debian/rules: move debhelper compatibility level setting to debian/compat
* debian/dhclient.conf: don't restrict what parameters will be received (closes: #398378, #407667)
* Remove a bunch of debconf messages that pertain to upgrading from Sarge (closes: #422037)
* Updated Vietnamese debconf template translation (closes: #426993)
* Updated German debconf template translation (closes: #428453)
* Updated Portuguese debconf template translation (closes: #426919)
* Updated Czech debconf template translation (closes: #427018)
* Updated Russian debconf template translation (closes: #427823)
* Added Tamil debconf template translation (closes: #428133)
* Updated Italian debconf template translation (closes: #428152)
* Updated Turkish debconf template translation (closes: #426490, #426400, #417548)
* Updated Swedish debconf template translation (closes: #426270)
* Updated Galician debconf template translation (closes: #426285)
* Updated Spanish debconf template translation (closes: #426434)
* Added Basque debconf template translation (closes: #426496)
* Debconf templates and debian/control reviewed by the debian-l10n-english
team as part of the Smith review project (closes: #425704)
-- Andrew Pollock <apollock@debian.org> Sat, 16 Jun 2007 14:21:59 +0000
dhcp3 (3.0.4-14) unstable; urgency=low
* Updated Portuguese debconf template translation (closes: #413765)
-- Andrew Pollock <apollock@debian.org> Tue, 6 Mar 2007 20:14:46 -0800
dhcp3 (3.0.4-13) unstable; urgency=low
* Added Portuguese debconf template translation (closes: #389507)
* Added Galician debconf template translation (closes: #405394)
* Updated Czech debconf template translation (closes: #407808)
* Updated Swedish debconf template translation (closes: #407844)
-- Andrew Pollock <apollock@debian.org> Sun, 21 Jan 2007 15:48:22 -0800
dhcp3 (3.0.4-12) unstable; urgency=high
* The final chapter in the ongoing saga of the override file discrepancies
* debian/control: dhcp3-client-udeb Priority: extra
-- Andrew Pollock <apollock@debian.org> Fri, 15 Dec 2006 04:06:20 -0800
dhcp3 (3.0.4-11) unstable; urgency=high
* debian/control: make Priority: standard for dhcp3-client-udeb (I swear
I'll get rid of these override disparities eventually)
* Updated Italian debconf template translation (closes: #395074)
* Updated Dutch debconf template translation (closes: #395958)
* Updated Japanese debconf template translation (closes: #396205)
* Updated German debconf template translation (closes: #396960)
* Updated Russian debconf template translation (closes: #398812)
* Updated Brazilian Portuguese debconf template translation (closes:
#400528)
* Updated Spanish debconf template translation (closes: #401966)
* Updated French debconf template translation (closes: #402211)
-- Andrew Pollock <apollock@debian.org> Sat, 9 Dec 2006 12:33:51 -0800
dhcp3 (3.0.4-10) unstable; urgency=low
* debian/control: make Priority: optional for dhcp3-{server,relay,dev} and
udeb
* debian/dhclient-script.*: ignore insane MTU values
* debian/control: dhcp3-client suggests avahi-autoipd (closes: #391925)
* Added patch to dhclient to not tie up the current working directory
(closes: #387723)
* debian/dhcp3-{server,relay}.prerm: only try to call init script if it
exists (closes: #387667)
-- Andrew Pollock <apollock@debian.org> Tue, 17 Oct 2006 22:08:54 -0700
dhcp3 (3.0.4-9) unstable; urgency=low
* Updated Italian debconf template translation (closes: #386692)
* Updated Dutch debconf template translation (closes: #386766)
* debian/dhcp3-{client,relay}.templates: improved some of the wording
(closes: #386764)
* Updated Russian debconf template translation (closes: #387172)
* Updated French debconf template translation (closes: #389003)
* debian/dhcp3-{server,relay}.init: added LSB comment block
* debian/dhcp3-client.postinst: made the priority of a couple of debconf
notes "high" (closes: #388885)
* debian/control: increased Priority to important
-- Andrew Pollock <apollock@debian.org> Sat, 14 Oct 2006 21:47:52 -0700
dhcp3 (3.0.4-8) unstable; urgency=high
* urgency=high because of fix for RC bug
* Added a mention of dhcp-eval(5) to dhclient(8) and dhclient.conf(5)
(closes: #382177)
* debian/rules: call debconf-updatepo before dh_clean, not after (closes:
#384169)
* debian/{dhcp3-client,dhcp3-relay,dhcp3-server}.template: rephrased
descriptions and corrected typos (closes: #384180)
* dhcp3-client.preinst: do not clobber the dhclient.conf that ships with the
package when upgrading from dhcp-client (v2), just copy it aside (only if
it was modified) (closes: #386051)
* dhcp3-client.postinst: when upgrading from dhcp-client (v2), clobber the
dhclient.conf that ships with the package with the version that was copied
aside from dhcp-client
* debian/control: build-depend on po-debconf
-- Andrew Pollock <apollock@debian.org> Fri, 25 Aug 2006 21:40:45 -0700
dhcp3 (3.0.4-7) unstable; urgency=low
* Added debconf templates to mention that dhclient doesn't get restarted
(closes: #368922)
* debian/patches/Makefile.dpatch: removed hunks that stopped manpage
token substitution from occurring, modify value for ETC so manpage paths
are all anatomically correct (closes: #162808)
* Updated Brazilian Portuguese debconf template translation (closes:
#374031)
* Updated Turkish debconf template translation
* Updated Japanese debconf template translation
* Added Italian debconf template translation (grazie Luca Monducci) (closes:
#381830)
* Updated documentation patch to fix a couple of spelling mistakes in
dhcpd3(8) and dhcpd.conf(5) (closes: #383117, #383122)
-- Andrew Pollock <apollock@debian.org> Sun, 20 Aug 2006 14:12:28 -0700
dhcp3 (3.0.4-6) unstable; urgency=high
* The "For crying out loud, actually apply the patch" release
* debian/patches/00list: really apply the 64-bit patch (closes: #368302)
* debian/dhclient.conf: also request the interface-mtu setting (closes:
#372689)
* Updated Brazilian Portuguese debconf template translation (closes:
#374031)
-- Andrew Pollock <apollock@debian.org> Tue, 20 Jun 2006 11:11:59 -0700
dhcp3 (3.0.4-5) unstable; urgency=low
* The "There can never be too much testing" release
* debian/dhcp3-client.postinst: move debconf note about dhclient-script
moving to /sbin to postinst
* debian/dhcp3-client.config: now redundant, remove
* debian/dhcp3-relay.prerm: fix if-clause (closes: #370173)
* Incorporate upstream patch to fix problems on 64-bit architectures
(closes: #368302)
* debian/dhcp3-server.init.d: be less verbose when configuration fails
verification (closes: #369595)
* dhcp3-client: override Lintian warnings for no-debconf-config and
postinst-uses-db-input
-- Andrew Pollock <apollock@debian.org> Tue, 6 Jun 2006 22:48:40 -0700
dhcp3 (3.0.4-4) unstable; urgency=high
* Added a patch (still awaiting one from upstream) to fix problems on 64-bit
architectures (closes: #368302)
-- Andrew Pollock <apollock@debian.org> Mon, 22 May 2006 16:28:09 -0700
dhcp3 (3.0.4-3) unstable; urgency=low
* The "I really need to use revision control for this package" release
* debian/rules: invoke dh_builddeb the right way so the udeb gets uploaded
* Updated Brazilian Portuguese debconf template translation
-- Andrew Pollock <apollock@debian.org> Sun, 21 May 2006 14:50:06 -0700
dhcp3 (3.0.4-2) unstable; urgency=low
* The "Return of the udeb" release
* It's baaaack! Re-add udeb support to debian/rules and debian/control
* debian/rules: install dhclient-script into /sbin instead of /etc (closes:
#336290)
* debian/dhcp3-client.preinst: remove /etc/dhcp3/dhclient-script if it
hasn't changed from the previous version of the package
* debian/dhcp3-client.postrm: only try to remove /var/lib/dhcp3 if it exists
* debian/dhcp3-client.config: add message if /etc/dhcp3/dhclient-script has
been customised notifying that it won't be used any more (but kept)
* really apply Martin Pitt's patch to prevent multiple dhclients starting on
the same interface (closes: #178885)
* really apply patch to close lease database before calling dhclient-script
* Updated Spanish debconf template translation
* Updated Russian debconf template translation (closes: #367139, #367174)
* Updated Vietnamese debconf template translation
-- Andrew Pollock <apollock@debian.org> Mon, 15 May 2006 07:17:50 -0700
dhcp3 (3.0.4-1) unstable; urgency=low
* New upstream release
* Added debian/watch
* Stripped non-free documents from source tarball (closes: #365191)
* Cease applying and remove dhcpd.conf manpage and unknown interfaces
patches as they are now incorporated upstream
-- Andrew Pollock <apollock@debian.org> Sat, 6 May 2006 17:24:50 -0700
dhcp3 (3.0.3-9) unstable; urgency=low
* debian/dhcp3-common.docs: don't install the RFCs (closes: #365191)
-- Andrew Pollock <apollock@debian.org> Sat, 29 Apr 2006 10:18:15 -0700
dhcp3 (3.0.3-8) unstable; urgency=low
* debian/patches/00list.kfreebsd-i386 copied to 00list.kfreebsd-amd64 to
address the same FTBFS issue on kfreebsd-amd64 (closes: #355279)
* Updated Dutch debconf template translation (closes: #358055)
-- Andrew Pollock <apollock@debian.org> Sat, 25 Mar 2006 19:29:11 -0800
dhcp3 (3.0.3-7) unstable; urgency=low
* The "I'm sick of asking for dhcp3 to be allowed into testing because it
makes a udeb" release
* Stop making dhcp3-client udeb (it isn't being used anyway)
* Updated French debconf template translation (closes: #345389)
* Updated German debconf template translation (closes: #345695)
* debian/rules: bump debhelper compatibility level to 4
* Updated Swedish debconf template translation (closes: #347604)
* debian/control: bump build-dependency on dpkg-dev to 1.13.2 (closes:
#352495)
-- Andrew Pollock <apollock@debian.org> Wed, 22 Feb 2006 15:44:05 -0800
dhcp3 (3.0.3-6) unstable; urgency=low
* The "Long time coming" release
* Updated Czech debconf template translation
* Added Spanish debconf template translation (gracias César) (closes:
#336065)
* Fix dhclient-script (Linux version) to pass argument to exit_with_hooks()
to the hooks themselves (closes: #289943)
* Fixed file locations in debconf note on next-server (closes: #340123)
* debian/control: increased Priority to standard (closes: #340138)
* debian/control: removed references to non-support of kernels that are no
longer shipping with Debian anyway (closes: #344174)
-- Andrew Pollock <apollock@debian.org> Wed, 28 Dec 2005 12:28:02 -0800
dhcp3 (3.0.3-5) unstable; urgency=low
* Updated French debconf template translation (closes: #331683)
* debian/control: Removed debconf dependency, put ${misc:Depends} instead,
to fix explicit dependency on debconf (closes: #331800)
* Added Swedish debconf template translation (Tack Daniel Nylander) (closes:
#333492)
-- Andrew Pollock <apollock@debian.org> Wed, 12 Oct 2005 21:24:59 +1000
dhcp3 (3.0.3-4) unstable; urgency=low
* Renamed debian/patches/00list.kfreebsd to
debian/patches/00list.kfreebsd-i386 so it actually gets applied on
kfreebsd (closes: #328637)
* debian/rules: added debconf-updatepo to clean target (closes: #328844)
* Updated Dutch debconf template translation (closes: #329437)
* Updated Vietnamese debconf template translation
* Added patch from Marius Gedminas to ignore irda0 (closes: #239907)
* Extended above patch to ignore sit0 interface (closes: #256851)
* Extended above patch to ignore IEEE1394 interfaces
* debian/rules: install Japanese manpages into /usr/share/man/ja (closes:
#285838)
-- Andrew Pollock <apollock@debian.org> Mon, 26 Sep 2005 13:56:54 +1000
dhcp3 (3.0.3-3) unstable; urgency=low
* The "principle of least surprise" release
* dhcp3-server.template: Added debconf note regarding change in next-server
behaviour
* dhcp3-server.config: display aforementioned note for upgrades from
anything prior to this version.
* Updated Russian template translation (closes: #328093)
* Patched dhcpd.conf.5 manpage to update behaviour of next-server directive
(closes: #327829, #328254)
* debian/*.doc: only install documentation into dhcp3-common (closes:
#286006)
* debian/control: make the udeb Priority: extra
* debian/dhclient-script.linux: applied patch from Samuel Thibault to
only mess with the IPv4 settings on the interface (closes: #323254)
* debian/dhclient-script.{linux,kfreebsd}: remove triplication of content
(closes: #325691)
* Rejigged dpatch patch so kfreebsd patch is only applied on kfreebsd
* debian/debug-exit: fixed comment to correctly indicate how to enable
(closes: #267639)
-- Andrew Pollock <apollock@debian.org> Fri, 16 Sep 2005 20:23:10 +1000
dhcp3 (3.0.3-2) unstable; urgency=low
* debian/control: change priority to optional (I'll get this right
eventually)
* Really get that NEWS.Debian into the dhcp3-server package... (closes:
#325392)
-- Andrew Pollock <apollock@debian.org> Sun, 28 Aug 2005 21:22:32 +1000
dhcp3 (3.0.3-1) unstable; urgency=low
* New upstream release (closes: #324886)
* Added NEWS.Debian regarding change in functionality with respect to
next-server now being required for booting.
-- Andrew Pollock <apollock@debian.org> Thu, 25 Aug 2005 13:47:41 +1000
dhcp3 (3.0.2-4) unstable; urgency=low
* Added patch from Aurelien Jarno to support GNU/kFreeBSD (closes: #321028)
* debian/dhcp3-server.preinst: fixed bashism
* debian/dhcp3-relay.prerm: fixed bashisms
* debian/dhcp3-client.preinst: fixed bashisms
* Updated Czech debconf templates translation (closes: #321734)
* debian/dhcp3-server.init.d: Applied patch from Stephen Gildea to provide
status option (closes: #320683)
-- Andrew Pollock <apollock@debian.org> Thu, 25 Aug 2005 10:38:46 +1000
dhcp3 (3.0.2-3) unstable; urgency=low
* debian/rules: fixed up installation of client/scripts/debian in build
target (closes: #320713)
-- Andrew Pollock <apollock@debian.org> Mon, 1 Aug 2005 20:20:08 +1000
dhcp3 (3.0.2-2) unstable; urgency=low
* debian/control: change to Priority: extra
* debian/dhcp3-server.config: lower priority for interfaces question and
remove note about requiring configuration (closes: #225893)
* debian/dhclient-script: avoid any possibility of mv asking questions
(closes: #238823)
* debian/control: bumped Standards-Version to 3.5.7
* debian/dhcp3-server.init.d: removed bashism in test_config() (closes:
#315309, #316729)
* Updated Vietnamese debconf template translation (closes: #315806)
* Updated Dutch debconf template translation (closes: #315844)
* Updated French debconf template translation (closes: #316058)
-- Andrew Pollock <apollock@debian.org> Wed, 29 Jun 2005 13:27:02 +1000
dhcp3 (3.0.2-1) unstable; urgency=low
* The "Look Mum, it's nearly Lintian clean!" release
* New upstream release
* debian/dhcp3-server.postinst: Applied patch from Robert Millan to handle
interface names with slashes in them (closes: #290431)
* debian/dhcp3-server.postinst: move startup to 40 instead of 20 so as to
allow PCMCIA interfaces to exist (closes: #292357)
* debian/dhcp3-server.init.d: explictly define a $PATH (closes: #311723)
* Added Russian debconf templates translation (спасибо Yuriy Talakan)
(closes: #310074)
* debian/dhcp3-server.templates: fixed typo (closes: #310225)
* debian/dhcp3-server.init.d: only restart if the config file is sane
(closes: #300513)
* Added Vietnamese debconf templates translation (Cám ón ông Clytie Siddall)
(closes: #310224)
* Added Czech debconf templates translation (dêkuji Jan Outrata) (closes:
#266574)
* Added Brazilian Portuguese debconf templates translation (Obrigado!,
Obrigada! Andre Luis Lopez) (closes: #281989)
* debian/rules: use dh_link to make a policy compliant dhclient -> dhclient3
symlink
* debian/control: Add dpatch to build-dependencies
* debian/rules: rejig to use dpatch
* redo all patches for dpatch.
* debian/changelog: fixed a dodgey email address that made Lintian cry
* debian/dhclient-script: applied patch from Faidon Liambotis to support
point-to-point Ethernet links (netmask of 255.255.255.255) (closes:
#283388)
* Don't install the omshell.1 manpage incorrectly into section 3 in
dhcp3-server as well as correctly in section 1 in dhcp3-common
* Applied patch from Martin Pitt to prevent multiple dhclients starting on
the same interface (closes: #178885)
* Applied patch from Olivier Houchard to add libdst.a to dhcp3-dev (closes:
#220525)
* debian/control: [dhcp3-client] make conflict with dhcp-client versioned
(closes: #279338)
* debian/control: [dhcp3-client-udeb] Added XC-Package-Type: udeb
* debian/rules: Removed all the special-case handling for dhcp3-client-udeb
-- Andrew Pollock <apollock@debian.org> Thu, 16 Jun 2005 20:50:34 +1000
dhcp3 (3.0.1-2) unstable; urgency=high
* The "Let's fix those really old and annoying bugs" release
* urgency=high because I'd like this to make sarge before any potential
freezing of udebs for d-i rc3 (but I've probably missed the boat anyway)
* debian/control: Adding myself to Uploaders:
* debian/dhclient-script: Remove useless checks for kernel versions that
this doesn't even work with, and causes errors on systems that mount /usr
via NFS (closes: #269014, #286011)
* debian/dhclient-script: Applied patch from Paul Kremer to update
/etc/resolv.conf if only a nameserver is provided (closes: #159529,
#171797, #287693)
* debian/control: rephrased description synopsis for dhcp3-common
-- Andrew Pollock <apollock@debian.org> Mon, 28 Feb 2005 22:24:47 +1100
dhcp3 (3.0.1-1) unstable; urgency=low
* New upstream version.
* Apply patch from martin f krafft <madduck@debian.org> to get rid
of /etc/dhcp3/{dhclient-enter-hooks.d/debug-enter,
dhclient-exit-hooks.d/debug-exit} if they exist. I am not implementing
for now Thomas Hood <jdthood@yahoo.co.uk>'s suggestion in #200501 of
grepping the hook scripts for "exit". I might do so in the future
if this continues to cause problems.
(closes: #255555, #200501)
* Depend on debianutils >= 2.8.2. (closes: #255997)
* Document dhclient's -e option. Thanks Chip Salzenberg
<chip@tytlal.perlsupport.com>. (closes: #235994)
* Add German translation of the debconf templates. Thanks
Erik Schanze <schanzi_usenet@gmx.de>. (closes: #252178)
* Add Turkish translation of the debconf templates. Thanks
Recai Oktas <roktas@omu.edu.tr>. (closes: #249126)
* Add Duth translation of the debconf templates. Thanks
Frans Pop <aragorn@tiscali.nl>. (closes: #239243)
* Add Japanese translation of the debconf templates. Thanks
Hideki Yamane <henrich@samba.gr.jp> and Kenshi Muto <kmuto@debian.org>.
(closes: #226948)
* dhcp3-client suggests resolvconf. (closes: 208094)
-- Eloy A. Paris <peloy@debian.org> Wed, 21 Jul 2004 10:24:45 -0400
dhcp3 (3.0+3.0.1rc14-1) unstable; urgency=high
* New upstream version. Urgency high because of this version fixes
multiple vulnerabilities. See:
http://www.us-cert.gov/cas/techalerts/TA04-174A.html.
-- Eloy A. Paris <peloy@debian.org> Tue, 22 Jun 2004 15:04:18 -0400
dhcp3 (3.0+3.0.1rc13-2) unstable; urgency=low
* Incorporate debconf translation for French. Thanks Nicolas
Bertolissio <nico.bertol@free.fr>, Christian Perrier
<bubulle@debian.org> and the people in the debian-l10n-french
mailing list. (closes: #211279)
* Patch from Chip Salzenberg <chip@debian.org> to specify the interface
name when adding a route, in case there are multiple interfaces on the
same subnet (Closes: #235977)
* Patch from Chip Salzenberg <chip@debian.org> to allow for specifying a
route metric using a "metric" option in /etc/network/interfaces
(Closes: #235136)
* Call "update-rc.d ... remove" from dhcp3-{server,relay}.postrm.
-- Eloy A. Paris <peloy@debian.org> Wed, 26 May 2004 13:06:59 -0400
dhcp3 (3.0+3.0.1rc13-1) unstable; urgency=low
* Eloy Paris <peloy@debian.org>:
- New upstream version. (closes: #231577)
+ Dropping dhcrelay.c.patch since a similar version is now
included upstream. This patch was applied in 3.0+3.0.1rc11-3
to prevent a DoS condition.
- Have the dhcp3-server init script exit if dhcp3 is removed but not purged
by testing for the existence of /usr/sbin/dhcpd3 (Closes: #201086)
- Tighten versioned dependency on debianutils, since we need run-parts
--list (Closes: #204329)
- Added the "netbios-scope" option to the list of options the DHCP
client requests from the server to play nicely with the samba
package.
- Prevent dh_md5sums from creating a md5sums file for dhcp3-client-udeb.
* Matt Zimmerman <mdz@debian.org>:
- Switch to using a Debian-specific dhclient-script, rather than
patching upstream's "linux" one
- More or less rewrite dhclient-script
- Clean up accumulated shell nastiness
- Improve readability
- Be careful when handling resolv.conf, to avoid breaking it
if something goes wrong (Closes: #211261)
- New resolv.conf handling is also symlink-friendly (Closes: #177846)
- Treat a hostname of "(none)" the same as a null hostname
(Closes: #165086)
- Still proceed with resolver configuration if nameservers are available
but a domain name is not (Closes: #110927)
- Use exit status 2, rather than 1, to indicate that binding failed,
so that unrelated errors do not result in DHCPDECLINE (your ISP will
thank you)
- Don't let a failing dhcp3-server init script abort installation; it
will usually be unconfigured on new installations (Closes: #217769)
- Increase IP TTL for DHCP packets from 16 to 128 (Closes: #152287)
- Apply patch from Christian Perrier <bubulle@debian.org> to switch to
using po-debconf (Closes: #208549)
- Have dhcpd chdir to / as a well-behaved daemon should
(Closes: #95262)
-- Eloy A. Paris <peloy@debian.org> Tue, 24 Feb 2004 12:06:30 -0500
dhcp3 (3.0+3.0.1rc11-5) unstable; urgency=low
* We now source the scripts in /etc/dhcp3/dhclient-{exit,enter}-hooks.d
instead of executing them. Updated the sample debug-enter and
debug-exit scripts to accomodate this change. Thanks go to Thomas
Hood for the patch, the patience and the perseverance :)
(closes: #171798, #196476)
* Added debconf question for dhcp3-relay options. Thanks to Ralf
Heiringhoff <rh@mediaways.net> for the patch. (closes: #165054)
* Several changes to /etc/dhcp3/dhclient-script:
- Source hooks instead of executing them (see above).
- Call logger if one hook returns a non-zero exit status.
- Not exporting dhclient-script's variables since we are now
sourcing instead of executing.
* Fixed /etc/init.d/dhcp3-server so it returns an error code of 1 if
dhcpd can't start. Thanks to Alexander R. Perlis <aprl@math.arizona.edu>.
Closes: #198992.
-- Eloy A. Paris <peloy@debian.org> Mon, 30 Jun 2003 15:53:31 -0400
dhcp3 (3.0+3.0.1rc11-4) unstable; urgency=low
* Exit with an exit status of 0 in /etc/init.d/dhcp3-server if
/etc/default/dhcp3-server does not exist so the init script can
be called with a "stop" argument and package removal does not
fail if this file does not exist. (closes: #184943 - missing
config file blocks package removal)
* Added verbiage to the package descriptions to make it clear what
the difference between these packages and the dhcp3-* packages is.
-- Eloy A. Paris <peloy@debian.org> Sun, 16 Mar 2003 21:48:38 -0500
dhcp3 (3.0+3.0.1rc11-3) unstable; urgency=low
* Preserve ownership/permissions of /etc/default/dhcp3-{server,relay}
in dhcp3-{server,relay}.postinst.
* Applied patch to dhcrelay from Florian Lohoff <flo@rfc822.org> to
prevent DoS attack against DHCP servers by sending malicious BOOTP
packets to the DHCP relay.
* Tweak dhcp3-{server,relay}.config so user configuration in
/etc/default/dhcp3-{server,relay} is preserved when the packages
are upgraded. (closes: #177933)
-- Eloy A. Paris <peloy@debian.org> Wed, 29 Jan 2003 14:44:48 -0500
dhcp3 (3.0+3.0.1rc11-2) unstable; urgency=low
* s/netbios-name-server/netbios-name-servers/ in sample
dhclient.conf. (closes: #177232)
-- Eloy A. Paris <peloy@debian.org> Sat, 18 Jan 2003 10:52:53 -0500
dhcp3 (3.0+3.0.1rc11-1) unstable; urgency=low
* New upstream version - fixes potential buffer overflow reported by
the ISC.
* During purge, don't try to remove /var/lib/dhcp3 if it doesn't exist
(Closes: #173328)
* Added a "require" statement to the provided conffile
/etc/dhcp3/dhclient.conf so the DHCP client requests from the DHCP
server the netbios-name-server DHCP in addition to the default DHCP
options (closes: #175501)
-- Eloy A. Paris <peloy@debian.org> Thu, 16 Jan 2003 09:58:40 -0500
dhcp3 (3.0+3.0.1rc10-1) unstable; urgency=low
* New upstream version.
* Minor fixes to dhcp-eval.5. (Closes: #158007)
-- Eloy A. Paris <peloy@debian.org> Thu, 7 Nov 2002 21:32:08 -0500
dhcp3 (3.0+3.0.1rc9-5) unstable; urgency=low
* In dhcp3-server postinst, create the temp file for rewriting
/etc/default/dhcp3-server in the same directory as the file itself.
This helps SE Linux create it with the correct type.
-- Eloy A. Paris <peloy@debian.org> Sat, 27 Jul 2002 13:23:37 -0400
dhcp3 (3.0+3.0.1rc9-4) unstable; urgency=low
* Make the default IP time to live compliant with the RFC (it was
16 and it should be 64 according to Chad Walstrom
<chewie@wookimus.net>). Thanks Chad.
-- Eloy A. Paris <peloy@debian.org> Thu, 25 Jul 2002 22:43:16 -0400
dhcp3 (3.0+3.0.1rc9-3) unstable; urgency=low
* Close lease database before executing dhclient-script (not need
to have it open, possible security risk.) (Closes: #147582)
* Quoting shell variables in dhclient-script. (Closes: #150006)
* Make sure /var/lib/dhcp3/ exists before attempting to remove it
in dhcp3-server.postrm. (Closes: #151844)
-- Eloy A. Paris <peloy@debian.org> Tue, 9 Jul 2002 00:07:41 -0400
dhcp3 (3.0+3.0.1rc9-2) unstable; urgency=low
* Fix silly mistake in dhclient-script. This slipped in when I
prepared 3.0.1rc9 in a hurry. (Closes: #146450)
-- Eloy A. Paris <peloy@debian.org> Thu, 9 May 2002 23:22:20 -0400
dhcp3 (3.0+3.0.1rc9-1) unstable; urgency=low
* New upstream release.
* Minor fix to a comment in the sample /etc/dhcp3/dhcpd.conf.
(Closes: #145008)
-- Eloy A. Paris <peloy@debian.org> Wed, 8 May 2002 14:47:05 -0400
dhcp3 (3.0+3.0.1rc8-7) unstable; urgency=low
* Applied patch from Joshua Rosen <jrosen@transcept.com> that
prevents dhclient-script from deconfiguring an interface when
reason=TIMEOUT, which causes further DHCP broadcasts to fail.
(Closes: #144666)
* Make /etc/init.d/dhcp3-server not start if /etc/default/dhcp3-server
does not exist. Same thing for /etc/init.d/dhcp3-relay.
(Closes #144360)
-- Eloy A. Paris <peloy@debian.org> Sun, 5 May 2002 16:05:10 -0400
dhcp3 (3.0+3.0.1rc8-6) unstable; urgency=medium
* /etc/dhcp3/dhclient-script now exports all important variables
so the scripts in the .d directories have a clue of what's going
on. See the debug-enter and debug-exit scripts in the .d
directories for an example of what's available.
* Fixed location of dhclient-script in the sample dhclient.conf (it
was commented out, but just in case :)
* Got rid of Wichert's rebindsignal patch as I think it is not
needed for ISC DHCP version 3 (we have OMAPI now to control lots of
things in dhclient's behavior.)
* We are not calling anymore update-inetd to enable and disable bootps
in dhcp3-server's postinst and postrm scripts respectively. This is
historical baggage that we don't even now why it is there. So,
we don't need to depend on netbase and people don't have to have
inetd to be able to use the DCHP server. (Closes: #143337)
-- Eloy A. Paris <peloy@debian.org> Wed, 24 Apr 2002 22:15:02 -0400
dhcp3 (3.0+3.0.1rc8-5) unstable; urgency=low
* Fixed typo in /etc/dhcp3/dhclient-script. (Closes: #141609)
-- Eloy A. Paris <peloy@debian.org> Sun, 7 Apr 2002 20:42:22 -0400
dhcp3 (3.0+3.0.1rc8-4) unstable; urgency=low
* Commenting out all subnet declarations in the sample
/etc/dhcp3/dhcpd.conf.
* Hacked dhcpd.c so 'ddns-update-style' defaults to 'none' in the
absence of this statement in the dhcpd.conf config. file.
This gets rid of the misleading ddns-update-style message that
shows up in the syslog. (Closes: #138677)
* Added debconf note to clarify new non-authoritative behavior.
* Make dhclient-script run the enter and exit hooks as documented in
the man pages. In addition to this we are providing two
directories where admins. can put additional scripts to be run
by run-parts. (Closes: #139546)
* Renamed binaries once again: dhcpd-3.x -> dhcpd3, etc. Renamed man
pages so the have the same name as the binaries.
* Created symlink /sbin/dhclient that points to /sbin/dhclient3.
(Closes: #139071, #139134)
* Added cheap logic to /etc/init.d/dhcp3-server to detect whether
the DHCP server daemon started succesfully. (Closes: #138674)
-- Eloy A. Paris <peloy@debian.org> Wed, 27 Mar 2002 12:08:33 -0500
dhcp3 (3.0+3.0.1rc8-3) unstable; urgency=low
* Remove excessive junk in syslog when the daemons start and
there is a configuration problem. (Closes: #138564)
* Minor fixes to README.Debian. (Closes: #138667)
* Install README.Debian in all packages. (Closes: #138663)
* Adding a ddns-update-style statement to the sample dhcpd.conf.
Setting its value to 'none' to keep compatibility with dhcpd
v2. (Closes: #138676)
* Using /etc/default/dhcp3-server instead of /etc/default/dhcp and
/etc/init.d/dhcp3-relay instead of /etc/default/dhcp-relay to
not conflict with the v2 packages.
* Avoid data file conflicts with the old 2.x packages, so that purging
the old packages doesn't remove files used by the new packages
(Closes: #138693)
- /var/lib/dhcp -> /var/lib/dhcp3
- dhcpd -> dhcp-3.x
- dhclient -> dhclient-3.x
- dhcrelay -> dhcrelay-3.x
- /etc/dhcp -> /etc/dhcp3
* Migrate server and client leases from /var/lib/dhcp if they exist, for
a smooth upgrade from 2.x
* Add #DEBHELPER# token where missing
* Rearrange ordering in maintainer scripts so that #DEBHELPER# stuff
always gets executed
-- Matt Zimmerman <mdz@debian.org> Sun, 17 Mar 2002 19:35:18 -0500
dhcp3 (3.0+3.0.1rc8-2) unstable; urgency=low
* Fix typo in _PATH_DHCLIENT_CONF in debian/rules
-- Matt Zimmerman <mdz@debian.org> Fri, 15 Mar 2002 18:42:36 -0500
dhcp3 (3.0+3.0.1rc8-1) unstable; urgency=low
* First upload to unstable.
* Addresses many bugs reported against the dhcp 2.x packages
* New naming scheme ("old version + changes") to cope with upstream's
naming convention. Matt and I don't like the previous naming convention
we were using (3.0.1betaRC7-1, 3.0.1betaRC7-1, 3.0.1final-1, etc.)
Now we will have a proper 3.0.1-1 when it is released.
* Started to use invoke-rc.d so administrators can disable services
without worrying about these services being started during package
upgrades.
-- Matt Zimmerman <mdz@debian.org> Wed, 13 Mar 2002 19:28:26 -0500
dhcp3 (3.0.1betaRC8-1) unstable; urgency=low
* Move all config files to /etc/dhcp
* Use DH_COMPAT=3
* Rename source package to dhcp3
-- Matt Zimmerman <mdz@debian.org> Wed, 6 Mar 2002 00:22:37 -0500
dhcp (3.0.1betaRC7-1) unstable; urgency=low
* New upstream version: 3.0.1 Release Candidate 7 (3.0.1rc6)
* Renamed all packages to dhcp3*. The DHCP server now lives in
the dhcp3-server package. New package dhcp3-common.
* /etc/default/{dhcp3,dhcp3-relay} are generated by the postinst
if they do not exist. The postrm then removes these files on
purge.
* debian/control: dhcp-relay3 does not conflict with dhcp3.
Closes: #118906 dhcp-relay: Don't conflict with dhcp.
-- Eloy A. Paris <peloy@debian.org> Wed, 20 Feb 2002 23:10:32 -0500
dhcp (3.0.1betaRC4-1) experimental; urgency=low
* This is 3.0.1 Release Candidate 4 (3.0.1RC4) Upstream continues
with these goofy version numbers, forcing me to use goofy
version numbers as well...
-- Eloy A. Paris <peloy@debian.org> Sat, 15 Dec 2001 21:42:54 -0500
dhcp (3.0final-1) experimental; urgency=low
* Finally, 3.0 is here. Not uploading to unstable yet because that
would destabilize the work the boot-floppies team is doing
in preparation to woody's release. The problem is that the new
dhclient is too big for the boot floppies.
-- Eloy A. Paris <peloy@debian.org> Fri, 5 Oct 2001 20:05:13 -0400
dhcp (3.0beta2RC12-1) experimental; urgency=low
* New upstream version. This will hopefully be the last release
before the final 3.0. Then this baby will go directly to unstable.
-- Eloy A. Paris <peloy@debian.org> Fri, 24 Aug 2001 00:02:22 -0400
dhcp (3.0beta2RC11-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Wed, 15 Aug 2001 00:00:13 -0400
dhcp (3.0beta2RC10-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Sun, 1 Jul 2001 23:18:49 -0400
dhcp (3.0beta2RC9-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Fri, 29 Jun 2001 01:06:33 -0400
dhcp (3.0beta2RC8-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Mon, 18 Jun 2001 18:45:06 -0400
dhcp (3.0beta2RC7-6) experimental; urgency=low
* Crap! It's not /var/state/, it's /var/lib/ !!! Moving leases to
/var/lib/dhcp/.
-- Eloy A. Paris <peloy@debian.org> Fri, 1 Jun 2001 23:45:40 -0400
dhcp (3.0beta2RC7-5) experimental; urgency=low
* Fixed dhcp and dhcp-client's postrm scripts to have correct new
location of the lease databases.
-- Eloy A. Paris <peloy@debian.org> Wed, 30 May 2001 14:44:35 -0400
dhcp (3.0beta2RC7-4) experimental; urgency=low
* Getting rid of all dhcp-client configuration work I did before:
now there is not /etc/init.d/dhcp-client script and dhclient
should be started by either the ifup mechanism (edit
/etc/network/interfaces), or by the PCMCIA subsystem (the
/etc/pcmcia/network script - edit /etc/pcmcia/network.opts) This
should make things a lot easier for everybody.
* Moved lease file from /var/dhcp/ to /var/state/dhcp/.
-- Eloy A. Paris <peloy@debian.org> Wed, 30 May 2001 12:40:43 -0400
dhcp (3.0beta2RC7-3) experimental; urgency=low
* Reworked a bit configuration of dhcp-client: now the debconf variable
that controls how dhclient will start is not of type 'choice' but
rather a 'boolean'. This simplifies some things.
-- Eloy A. Paris <peloy@debian.org> Tue, 29 May 2001 00:08:14 -0400
dhcp (3.0beta2RC7-2) experimental; urgency=low
* At long last, debconf support is here. Please be easy on me since
this is my first debconf'nified package.
-- Eloy A. Paris <peloy@debian.org> Mon, 28 May 2001 12:26:32 -0400
dhcp (3.0beta2RC7-1) experimental; urgency=low
* New upstream version. This is 3.0 Release Candidate 7. I skipped
RC[4-6].
-- Eloy A. Paris <peloy@debian.org> Fri, 18 May 2001 01:42:15 -0400
dhcp (3.0beta2RC3-1) experimental; urgency=low
* New upstream version. This is 3.0 Release Candidate 3.
-- Eloy A. Paris <peloy@debian.org> Fri, 27 Apr 2001 20:54:20 -0400
dhcp (3.0beta2RC2-1) experimental; urgency=low
* New upstream version. This is 3.0 Release Candidate 2.
* Changed section of package dhcp-dev from dev to devel.
-- Eloy A. Paris <peloy@debian.org> Sat, 21 Apr 2001 17:23:17 -0400
dhcp (3.0beta2RC1-1) experimental; urgency=low
* New upstream version. This is 3.0 Release Candidate 1. This upstream
version number (3.0rc1) screwed up my version numbers. Thanks to
Joy, doogie and hmh on #debian-devel for the suggestion of this
Debian version number.
* /etc/init.d/dhcp: got rid of the flag that prevents dhcp from starting
at boot time if set to 0. This was done to prevent starting until
a valid /etc/dhcpd.conf was configured. Change requested by Joy
on #debian-devel. I need to figure out a better way of handling this
but right now I don't have time. Any bugs because of this will
go to /dev/null until I find time to move to debconf and deal with
this properly.
-- Eloy A. Paris <peloy@debian.org> Tue, 17 Apr 2001 23:35:18 -0400
dhcp (3.0b2pl24-1) experimental; urgency=low
* New upstream version.
* Added groff to Build-depends.
Closes: #88711: error in build dependencies.
Closes: #91988: failed autobuild: missing groff build-depends.
* Added force-reload support to /etc/init.d/dhcp.
Closes: #89639: /etc/init.d/dhcp doesn't support force-reload.
* dhclient-exit-hooks does not need to be executable in dhclient's script.
Closes: #91306: dhclient-exit-hooks does not need to be executable.
* Applied patch to dhclient.c from Wichert to force a DHCP refresh. Sorry
it took so long, Wichert.
Closes: #84883: force DHCP refresh.
-- Eloy A. Paris <peloy@debian.org> Sun, 8 Apr 2001 17:09:43 -0400
dhcp (3.0b2pl22-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Tue, 20 Mar 2001 17:55:11 -0500
dhcp (3.0b2pl21-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Tue, 20 Mar 2001 12:52:06 -0500
dhcp (3.0b2pl19-1) experimental; urgency=low
* New upstream release.
-- Eloy A. Paris <peloy@debian.org> Fri, 16 Mar 2001 18:14:28 -0500
dhcp (3.0b2pl18-1) experimental; urgency=low
* New upstream release (don't know what happened with 3.0b2pl17.)
-- Eloy A. Paris <peloy@debian.org> Tue, 27 Feb 2001 16:15:04 -0500
dhcp (3.0b2pl16-2) experimental; urgency=low
* Changed "if [ -x /etc/dhclient-enter-hooks ]; then ..." to
[ -f /etc/dhclient-enter-hooks ]; then ..." in client/scripts/linux
(the dhclient configuration script.) The script was checking that
the file was executable but then it was dotting it, and for this it
does not have to be executable.
Closes: Bug#84768: dhcp-client: dhclient-enter-hooks does not need to be
executable.
-- Eloy A. Paris <peloy@debian.org> Tue, 6 Feb 2001 22:56:05 -0500
dhcp (3.0b2pl16-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Tue, 6 Feb 2001 22:56:00 -0500
dhcp (3.0b2pl15-2) experimental; urgency=low
* Created two new packages: dhcp-dev and dhcp-client-udeb. dhcp-dev
contains the files that provide an API for accessing and modifying
the DHCP server and client state. dhcp-client-udeb is a minimal
dhcp package used by the debian-installer. dhcp-client-udeb patch
provided by David Whedon <dwhedon@gordian.com>.
Closes: #83001 - [PATCH] : dhcp-client-udeb for debian-installer.
* Updated README.Debian.
-- Eloy A. Paris <peloy@debian.org> Sun, 28 Jan 2001 13:01:30 -0500
dhcp (3.0b2pl15-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Fri, 26 Jan 2001 18:22:33 -0500
dhcp (3.0b2pl14-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Fri, 19 Jan 2001 10:03:08 -0500
dhcp (3.0b2pl13-2) experimental; urgency=low
* Transition from suidmanager to dpkg-statoverride.
-- Eloy A. Paris <peloy@debian.org> Fri, 19 Jan 2001 00:30:05 -0500
dhcp (3.0b2pl13-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Thu, 18 Jan 2001 10:02:08 -0500
dhcp (3.0b2pl11-2) experimental; urgency=low
* Pretty much same changes as in 2.0pl5-2.
* Using /bin/sh instead of /bin/bash in scripts.
* Using alternatives to handle the ocurrence of the dhcp-options.5 manual
page in all the dhcp* packages.
Closes: #80034: dhcp-relay: Contains /usr/share/man/man5/dhcp-options.5.gz,
conflicting with dhcp-client.
Closes: #78646: dhcp and dhcp-client packages both provide
dhcp-options.5.gz man page.
Closes: #82106: dhcp-client: dhcp-options.5.gz also in package dhcp.
* Added patch from bug #79578 to allow the dhcp client and server to
work under Debian-ARM (these patches are actually upstream already, I only
had to apply a small chunk.)
Closes: #79578: dhcp: NMU: Debian-ARM patches.
Closes: #62940: dhcp: NMU: Debian-ARM changes (alignment fix).
* Removed comment misleading comment in /etc/init.d/dhcp. I plan to move
to debconf soon and then people will be able to specify the interfaces
on which to run DHCP.
Closes: #71310: /etc/init.d/dhcp has misleading comments.
-- Eloy A. Paris <peloy@debian.org> Sun, 14 Jan 2001 23:15:12 -0500
dhcp (3.0b2pl11-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Sun, 14 Jan 2001 23:14:47 -0500
dhcp (3.0b2pl9-1) experimental; urgency=low
* New upstream version.
* Dropped patches to server/dhcpd.conf since the two problems that
were in there having fixed upstream.
-- Eloy A. Paris <peloy@debian.org> Mon, 16 Oct 2000 20:10:05 -0400
dhcp (3.0b2pl6-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Thu, 5 Oct 2000 16:03:32 -0400
dhcp (3.0b2pl5-1) experimental; urgency=low
* New upstream version.
* Dropped patch to client/scripts/linux and that solved #66173
(dhcp-client: dhclient-script doesn't do what its manpage says) in
3.0b1pl17-1 because the patch is in this new upstream version.
-- Eloy A. Paris <peloy@debian.org> Sat, 23 Sep 2000 18:10:20 -0400
dhcp (3.0b2pl4-1) experimental; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Tue, 19 Sep 2000 18:43:39 -0400
dhcp (3.0b2pl3-1) experimental; urgency=low
* New upstream version (never knew about 3.0b2pl2.)
* Added the -q switch to the invocation of the dhcp* daemons (dhcpd,
dhclient, and dhcrelay) in the corresponding /etc/init.d/dhcp*
script (dhcpd, dhcp-client and dhcp-relay) so programs don't print
a lot of junk when they start.
Closes: Bug#71309 - dhcpd wraper should call with -q.
Closes: Bug#59280 - dhcp: Too verbose.
* Added code to /etc/init.d/dhcp-client to test if the new scheme for
network configuration is being used (the /etc/network/* stuff). If
this is the case then the init.d script just exists without doing
anything.
Closes: Bug#61092 - dhclient loads twice under new interfaces
configuration.
-- Eloy A. Paris <peloy@debian.org> Mon, 11 Sep 2000 23:32:23 -0400
dhcp (3.0b2pl1-1) experimental; urgency=low
* New upstream version. This is the "first official release to
include the DHCP Failover Protocol, OMAPI, and a few other goodies."
Not recomended for production environments yet, though.
* Dynamic DNS is now compiled in.
* 2.0.x Linux kernels are not supported anymore, the binaries in this
package will not run in a system running a 2.0.x kernel. Enough is
enough people, please upgrade to a 2.2.x or 2.4.x kernel. I am tired
of maintaining this backward compatibility baggage. There are not
wrapper scripts anymore and no build tricks to support the 2.0.x
kernels.
* Updated README.Debian.
-- Eloy A. Paris <peloy@debian.org> Sun, 3 Sep 2000 13:27:12 -0400
dhcp (3.0b1pl17-3) experimental; urgency=low
* Same changes as in 2.0pl3-3.
* Call the configure scripts as "/bin/sh debian/configure-xx" instead
of just "debian/configure" so no non-executable scripts are found
during building.
Closes: Bug#68462 - dhcp: non-executable script during building.
-- Eloy A. Paris <peloy@debian.org> Sun, 6 Aug 2000 18:47:45 -0400
dhcp (3.0b1pl17-2) experimental; urgency=low
* Same changes as in 2.0pl3-2.
* OK, I screwed it up: the fact that it is entirely possible to have
a DHCP server and a DHCP client running at the same time in the same
machine never crossed my mind, so I made each of the dhcp* packages
conflict with each other in 2.0pl3-1. Big mistake! So I corrected
that and just left dhcp-client to conflict with dhcpcd. I hope that
nobody is using ISC DHCP client and dhcpcd in the same machine and at
the same time because I'm going to be pissed.
Closes: Bug#68445: dhcp: shouldn't conflict with dhcp-client.
-- Eloy A. Paris <peloy@debian.org> Thu, 3 Aug 2000 23:46:07 -0400
dhcp (3.0b1pl17-1) experimental; urgency=low
* New upstream release.
* Same changes as in dhcp-2.0pl3-1 which is being uploaded to unstable
(woody.)
* Made /etc/init.d/dhcp-client a conffile to prevent an overwrite at
install time without the user knowing it. In the future I will use
debconf to take care of interface configuration.
Closes: Bug#67873: dhcp-client: init.d script is overwritten on upgrade.
* Applied patch from Jun Hamano <junio@siamese.dhis.twinsun.com> to
fix kernel version identifiaction problems in /etc/dhclient-script
(thanks Jun!)
Closes: #66472: dhcp-client: /etc/dhclient-script bugfix.
* Applied patch from steve@nyongwa.montreal.qc.ca to fix problems
reported in bug #66173 (thanks Steve!) Also, fixed dhclient.conf(5)
to reference dhclient.leases(8) instead of dhclient-lease(8) as well
as dhclient-script in the description of the "script" statement.
Closes: #66173: dhcp-client: dhclient-script doesn't do what its
manpage says.
* Added to the control section of the dhcp-client package a conflict
with the dhcpcd package.
Closes: #65524: dhcp-client needs a "conflicts" with dhcpcd.
* Made each of the dhcp* packages (dhcp, dhcp-relay and dhcp-client)
conflict with each other so only one of them can be installed at
the same time.
* Now dhcp-options(5) is installed in each of the dhcp* packages.
Closes: #61716: dhcp-client: dhcp-options(5) man page missing.
-- Eloy A. Paris <peloy@debian.org> Sun, 30 Jul 2000 12:14:33 -0400
dhcp (3.0b1pl13-1) experimental; urgency=low
* New upstream release.
* I screwed the way I am building the binaries for Linux 2.0.x and
Linux 2.2.x when I first packaged the 3.0 beta series of ISC DHCP.
The reason was that the configure script changed between the 2.0 and
the 3.0 series so I can't do what I was doing in the 2.0 series to
build both Linux 2.0.x and 2.2.x versions. I ended adding a dirty
hack (creating configure-2.0.x and configure-2.2.x scripts) that
I hope to get rid of in the future by hacking the original configure
script.
-- Eloy A. Paris <peloy@debian.org> Wed, 9 Feb 2000 07:52:26 -0500
dhcp (3.0b1pl12-1) experimental; urgency=low
* I finally found some time to package the latest development version
of the ISC DHCP package, which promises lots of new cool features.
I don't plan to upload this to Potato as dhcp-beta, dhcp-client-beta,
etc. packages because I don't like the mess this creates. Instead,
I'll upload this to project/experimental and when 3.0 final hits the
streets I'll just upload to unstable.
* There's no CHANGES file in the 3.0 sources - made the appropriate change
to debian/rules.
-- Eloy A. Paris <peloy@debian.org> Mon, 27 Dec 1999 00:32:29 -0500
dhcp (2.0-3) unstable; urgency=low
* The sample /etc/dhclient.conf is now provided completely commented
out so existing installations are not broken after upgrading
to dhcp-client 2.0-3 and above.
(Closes: Bug#50592: default dhclient.conf is a killer).
-- Eloy A. Paris <peloy@debian.org> Thu, 18 Nov 1999 21:34:29 -0500
dhcp (2.0-2) unstable; urgency=low
* Compiled two sets of binaries: one for 2.0.x kernels and another
one for 2.2.x kernels. Created three wrapper scripts (dhcpd,
dhclient, and dhcrelay) that call the appropiate version
depending on the version of the running kernel. I also needed
to tweak dhcp's init.d script to accomodate for the change (now
I am calling "start-stop-daemon --stop" with the --pid-file argument
and not with bot the --pid-file and the --exec arguments.
Closes: Bug#41974 (dhcp requires kernel 2.2??)
* Took care of the /usr/doc/* -> /usr/share/doc/* move (had to
tweak the postinst and prerm scripts to take care of the link since
I am not letting debhelper generate these scripts automatically).
* Man pages now installed in /usr/share/man/.
* Fixed a little the init.d script for dhcp-relay, although this file
was so broken that I believe nobody is using this package.
* Fixed a minor typo in the sample server/dhcpd.conf file
("domain-name-servers" instead of "name-servers").
* s/reload/restart/g in /etc/init.d/dhcp.
* Updated README.Debian and descriptions in debian/control.
* Removed Bashism from /etc/dhclient-script.
Closes: Bug#44977 (Bashism in /etc/dhclient-script)
* Included /etc/dhclient.conf and made it a conffile for dhcp-client.
Closes: Bug#45537 (significant error in dhclient man pages)
* Added a /etc/init.d/dhcp-client script. The script won't start
dhclient if /sbin/cardmgr exists (this normally means
that PCMCIA is installed and that dhclient will be started by the
cardmgr daemon). The script is run early in the boot sequence.
Closes: Bug#48952 (missing /etc/init.d/dhcp-client?)
-- Eloy A. Paris <peloy@debian.org> Tue, 2 Nov 1999 23:41:00 -0500
dhcp (2.0-1) unstable; urgency=low
* Final release of dhcp-2.0.
* Removed "-beta" suffix from all the packages. This package now replaces
the old dhcp-1.0 package and the -beta packages no longer exist.
-- Eloy A. Paris <peloy@debian.org> Wed, 23 Jun 1999 12:28:12 -0400
dhcp-beta (2.0b1pl27-1) unstable; urgency=low
* New upstream version (never uploaded to master).
-- Eloy A. Paris <peloy@debian.org> Sun, 25 Apr 1999 14:21:39 -0400
dhcp-beta (2.0b1pl26-1) unstable; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Fri, 16 Apr 1999 09:21:46 -0400
dhcp-beta (2.0b1pl18-1) unstable; urgency=low
* New upstream version.
-- Eloy A. Paris <peloy@debian.org> Sun, 7 Mar 1999 09:09:59 -0400
dhcp-beta (2.0b1pl17-1) unstable; urgency=low
* New upstream version.
* Fixed dhcp-beta's postinst and prerm scripts to call update-rc.d
to update the rc links to /etc/init.d/dhcp-beta.
-- Eloy A. Paris <peloy@debian.org> Sun, 28 Feb 1999 13:32:13 -0400
dhcp-beta (2.0b1pl14-1) unstable; urgency=low
* New maintainer (temporary, while Rich Sahlender is out of scene).
* New upstream version.
* Moved from debstd to debhelper.
* Modified /etc/init.d/dhcp-beta to start/stop dhcpd by using the
PID file /var/run/dhcpd.pid.
* Re-worked a lot debian/rules (I actually wrote it again from scratch).
* The patches in the last NMU done by Vincent Renardias <vincent@waw.com>
are not included since I tested dhclient and it ran just fine. Please
give this new version a shot and let me know of any problems.
-- Eloy A. Paris <peloy@debian.org> Fri, 19 Feb 1999 19:39:20 -0400
dhcp-beta (2.0b1pl6-0.2) frozen unstable; urgency=medium
* NMU:
Fix Grave bug #18322 with the provided patch.
Fix Important bug #19767: dhcp-client-beta did not contain
any /usr/doc/dhcp-client-beta directory.
Fix bug #20532 bad option in /etc/dhcpd.conf.
Close bug #20533 file location prob (Fixed by previous upload).
Close bug #22081 dhcpd-beta (Fixed by previous upload).
Close bug #19768 /etc/dhclient-script is not a conffile
(Already fixed).
Fix bug #28164 by included a new dhclient script.
-- Vincent Renardias <vincent@waw.com> Tue, 5 Jan 1999 23:23:47 +0100
dhcp-beta (2.0b1pl6-0.1) frozen unstable; urgency=medium
* Non-maintainer upload that fixes "important" bugs #24445 ([SECURITY]
dhcp-beta: potential buffer overflow problems) and #24442
(/etc/init.d/dhcp-beta sources inexistent /etc/init.d/functions).
* New upstream release (this new release is what solves bug #24445).
* Removed from /etc/init.d/dhcp sourcing of /etc/init.d/functions because
this file is obsolete and is not present in newer Debian releases
(>= 2.0). This fixes #24442 and #19654 (/etc/init.d/functions should
not be used).
* Changed _PATH_DHCPD_DB in dhcpd.h to /var/dhcp/dhcpd.leases (it was
/var/lib/dhcpd/dhcpd.leases, which we are not using anymore). So,
now the leases database will be in /var/dhcp/dhcpd.leases. No more
files in /var/dhcpd/ nor /var/lib/dhcpd/.
* Changed VARDB (in the linux-2.0 section of Makefile.dist) to be
/var/dhcp/ instead of /var/dhcpd/ (this was done to support the
change of the leases database to /var/dhcp/). The consequence of this
is that /var/dhcpd/ is not provided in the .deb anymore (which is
fine because this directory is not used).
* Defined PATH_DHCPD_DB as a constant equal to "/var/dhcp/dhcpd.leases"
in the postinst. Used this constant in all references to the leases
database througout the postinst.
* s%ETCDIR%/etc/%g, s%DBDIR%/var/dhcp/%g and s%RUNDIR%/var/run/%g in
dhcpd.8 and dhcpd.leases.5, so the man pages show the correct directory.
* The last 4 changes fix #23089 (/var/lib/dhcpd does not exist so dhcpd
can't start).
* Made the default _not_ to run dhcpd. This was done by setting run_dhcpd
to 0 in the default /etc/init.d/dhcp.
* Change comments that are printed out in the last part of the postinst
to explain that editing of /etc/dhcpd.conf and /etc/init.d/dhcp is
necessary in order to be able to run dhcpd.
* Fixed a small typo in /etc/init.d/dhcp (diasble -> disable).
* Added the word "server" to the short description of dhcp-beta in
the control file. This fixes #17558 (dhcp-beta: unclear description).
-- Eloy A. Paris <peloy@debian.org> Fri, 17 Jul 1998 00:06:50 -0400
dhcp-beta (2.0b1pl1-1) frozen unstable; urgency=low
* New upstream patches fixing security and other bugs.
* New Maintainer.
-- Rich Sahlender <rsahlen@debian.org> Thu, 28 May 1998 23:02:43 -0400
dhcp-beta (2.0b1pl0-2) unstable; urgency=low
* #17939 dhcplient problem with environment variable.
-- Christoph Lameter <clameter@debian.org> Mon, 16 Feb 1998 19:46:47 -0800
dhcp-beta (2.0b1pl0-1) unstable; urgency=low
* Generate additional binaries dhcp-relay-beta and dhcp-client-beta.
dhcp-client beta is not working.
* New Beta Version with support for multiple interfaces etc.
* debian/config did not support multi-binary targets cleanly. Removed.
* Note: The relay does not properly handle the -i option but scans all
interfaces (upstream issue)
-- Christoph Lameter <clameter@debian.org> Sun, 4 Jan 1998 13:12:05 -0800
dhcp (1.0.0-1) debs; urgency=low
* Upstream non-beta release. Name changed to dhcp.
-- Christoph Lameter <clameter@debian.org> Sun, 4 Jan 1998 09:34:44 -0800
dhcpd (0.5.16.1-4) unstable; urgency=low
* One interface only. If the 2.0.31 feature becomes finally available
also in 2.1.x then I will include the multi interface feature again.
* Customize /etc/dhcpd.conf so that it should work after installation with
some possibly wrong defaults.
* Linux configuration reworked for glibc. Build on hamm.
-- Christoph Lameter <clameter@debian.org> Thu, 4 Sep 1997 16:19:25 -0700
dhcpd (0.5.16.1-3) unstable; urgency=low
* Documentation changes. Linus has included SO_BINDTODEVICE in the latest
pre patches for Kernel 2.0.31
-- Christoph Lameter <clameter@debian.org> Mon, 4 Aug 1997 20:45:21 -0700
dhcpd (0.5.16.1-2) unstable; urgency=low
* /etc/init.d/dhcpd: Add initializing routes to 255.255.255.255.
* README.debian: Given the correct name and added some more information.
-- Christoph Lameter <clameter@debian.org> Wed, 11 Jun 1997 22:31:36 -0700
dhcpd (0.5.16.1-1) unstable; urgency=low
* Include CHANGES file as upstream changelog
* Update to latest upstream release. Support for multiple interfaces
using Linux 2.0.31-2 and higher now available. This version will not work
with older version of Linux.
* Make dhcpd build using debmake's build command.
* Include dhcp relay agent and dhcp client
* Update messages that appear on the screen
-- Christoph Lameter <clameter@debian.org> Wed, 11 Jun 1997 13:30:00 -0700
dhcpd (0.5.14-2) unstable; urgency=low
* Moved leases file into /var/lib/dhcp/ (#5689).
-- Joey Hess <joeyh@master.debian.org> Tue, 25 Feb 1997 20:27:54 -0500
dhcpd (0.5.14-1) unstable; urgency=low
* New upstream release.
* New maintainer.
* Old version had incorrect name for directory in .orig.tar.gz file;
corrected this.
* Modifications for new debmake.
* This needs some testing. I can't test it becuase the computer on my
network that uses DHCP isn't here right now.
* Remove leases file on purge.
-- Joey Hess <joeyh@master.debian.org> Sun, 9 Feb 1997 20:16:08 -0500
dhcpd (0.5.13-4) unstable; urgency=low
* debmake bug: no scripts installed in -3
-- Christoph Lameter <clameter@debian.org> Thu, 17 Oct 1996 07:12:44 +0800
dhcpd (0.5.13-3) unstable; urgency=low
* added a touch /etc/dhcpd.leases to postinst on suggestion of Joey Hess.
* Uses debmake: compressed manpages + documentation
-- Christoph Lameter <clameter@debian.org> Wed, 16 Oct 1996 18:21:15 +0800
dhcpd (0.5.13-2) unstable; urgency=low
* Forgot to include conffiles in binary
* Documentation moved around
-- Christoph Lameter <clameter@debian.org> Mon, 16 Sep 1996 14:51:46 +0800
dhcpd (0.5.13-1) unstable; urgency=low
* New upstream version
-- Christoph Lameter <clameter@debian.org> Mon, 16 Sep 1996 14:51:46 +0800
dhcpd (0.5.11-1) unstable; urgency=high
* New upstream version
-- Christoph Lameter <clameter@waterf.org> Wed, 11 Sep 1996 14:51:46 +0800
dhcpd (0.5.9-1) unstable; urgency=high
* New upstream version
* Debian changelog made available in /usr/doc/dhcpd
-- Christoph Lameter <clameter@waterf.org> Wed, 4 Sep 1996 14:51:46 +0800
dhcpd (0.5.7-1) unstable; urgency=high
* New upstream version
-- Christoph Lameter <clameter@waterf.org> Wed, 4 Sep 1996 14:51:46 +0800
Old Changelog:
dhcpd (0.5.5-1) experimental; urgency=low
* Initial Release
|