File: changelog

package info (click to toggle)
bind9 1%3A9.7.3.dfsg-1~squeeze19
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 31,548 kB
  • ctags: 26,523
  • sloc: ansic: 270,641; sh: 23,834; xml: 17,623; makefile: 4,373; perl: 3,866; cpp: 1,803; tcl: 842; python: 109
file content (1629 lines) | stat: -rw-r--r-- 53,824 bytes parent folder | download
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
bind9 (1:9.7.3.dfsg-1~squeeze19) squeeze-lts; urgency=high

  * Non-maintainer upload.
  * CVE-2015-8704: Specific APL data could trigger an INSIST in apl_42.c.
    A buffer size check used to guard against overflow could cause named to
    exit with an INSIST failure In apl_42.c.

 -- Salvatore Bonaccorso <carnil@debian.org>  Sun, 17 Jan 2016 11:11:14 +0100

bind9 (1:9.7.3.dfsg-1~squeeze18) squeeze-lts; urgency=medium

  * Non-maintainer upload by the Squeeze LTS Team.
  * Add patch to fix CVE-2015-8000.
    CVE-2015-8000: Insufficient testing when parsing a message allowed
    records with an incorrect class to be be accepted, triggering a REQUIRE
    failure when those records were subsequently cached.
    (patch borrowed from Wheezy, thanks to Salvatore Bonaccorso)

 -- Thorsten Alteholz <debian@alteholz.de>  Wed, 16 Dec 2015 22:35:15 +0100

bind9 (1:9.7.3.dfsg-1~squeeze17) squeeze-lts; urgency=medium

  * Non-maintainer upload by the Squeeze LTS Team.
  * CVE-2015-5722: maliciously crafted DNSSEC key can cause named to crash.

 -- Santiago Ruano Rincón <santiagorr@riseup.net>  Tue, 08 Sep 2015 22:28:01 +0200

bind9 (1:9.7.3.dfsg-1~squeeze16) squeeze-lts; urgency=high

  * Non-maintainer upload.
  * CVE-2015-5477: A failure to reset a value to NULL in tkey.c could
    result in an assertion failure.

 -- Salvatore Bonaccorso <carnil@debian.org>  Tue, 28 Jul 2015 07:45:38 +0200

bind9 (1:9.7.3.dfsg-1~squeeze15) squeeze-lts; urgency=medium

  * Non-maintainer upload by the Squeeze LTS Team.
  * CVE-2015-4620: Specially constructed zone data can cause a resolver to
    crash when validating.

 -- Santiago Ruano Rincón <santiagorr@riseup.net>  Sat, 11 Jul 2015 16:54:49 +0200

bind9 (1:9.7.3.dfsg-1~squeeze14) squeeze-lts; urgency=high

  * Non-maintainer upload by the Squeeze LTS Team.
  * CVE-2015-1349: avoid crash due to managed-key rollover.
    Revoking a managed trust anchor and supplying an untrusted replacement
    could cause named to crash with an assertion failure.
    (Closes: #778733)

 -- Thorsten Alteholz <debian@alteholz.de>  Sun, 01 Mar 2015 13:47:15 +0100

bind9 (1:9.7.3.dfsg-1~squeeze13) squeeze-lts; urgency=medium

  * Non-maintainer upload by the Squeeze LTS Team.
  * SECURITY UPDATE: denial of service via delegation handling defect
    - limit max recursion in bin/named/config.c, bin/named/query.c,
      bin/named/server.c, lib/dns/adb.c, lib/dns/include/dns/adb.h,
      lib/dns/include/dns/resolver.h, lib/dns/resolver.c,
      lib/export/isc/Makefile.in, lib/isc/Makefile.in, lib/isc/counter.c,
      lib/isc/include/isc/counter.h, lib/isc/include/isc/Makefile.in,
      lib/isc/include/isc/types.h, lib/isc/tests/counter_test.c,
      lib/isccfg/namedconf.c.
    - Based on patch provided by upstream.
    - CVE-2014-8500
  * Based on 1:9.7.0.dfsg.P1-1ubuntu0.12 provided by Marc Deslauriers from the
    Canonical Security Team. Thanks Marc!

 -- Holger Levsen <holger@debian.org>  Mon, 15 Dec 2014 18:18:15 +0100

bind9 (1:9.7.3.dfsg-1~squeeze12) squeeze-lts; urgency=medium

  * Non-maintainer upload by the Squeeze LTS Team.
  * Fix CVE-2014-0591: denial of service when processing NSEC3-signed zone
    queries, fixed by not calling memcpy with overlapping ranges in
    bin/named/query.c. - patch backported from 9.8.6-P2 by Marc Deslauriers
    from the Ubuntu Security team.

 -- Holger Levsen <holger@debian.org>  Fri, 05 Sep 2014 18:11:18 +0200

bind9 (1:9.7.3.dfsg-1~squeeze11) squeeze-security; urgency=high

  * Non-maintainer upload by the Security Team.
  * CVE-2013-4854: A specially crafted query that includes malformed rdata can
    cause named to terminate with an assertion failure while rejecting the
    malformed query. (Closes: #717936).

 -- Salvatore Bonaccorso <carnil@debian.org>  Sat, 27 Jul 2013 11:09:40 +0200

bind9 (1:9.7.3.dfsg-1~squeeze10) squeeze-security; urgency=high

  * Non-maintainer upload by the Security Team.
  * Compile without regular expression support to fix CVE-2013-2266.
    Prevent a denial of service vulnerability found in the libdns
    library. A remote attacker could use this flaw to send a specially-
    crafted DNS query to named that, when processed, would cause
    named to use an excessive amount of memory, or possibly crash.
    (Closes: #704174)

 -- Salvatore Bonaccorso <carnil@debian.org>  Fri, 29 Mar 2013 08:03:20 +0100

bind9 (1:9.7.3.dfsg-1~squeeze9) squeeze-proposed-updates; urgency=low

  * Update db.root with new IP for D.root-servers.net.  Closes: #697352

 -- LaMont Jones <lamont@debian.org>  Tue, 08 Jan 2013 07:07:02 -0700

bind9 (1:9.7.3.dfsg-1~squeeze8) squeeze-security; urgency=high

  * Apply patch extracted from 9.7.6-P4 to fix CVE-2012-5166

 -- Florian Weimer <fw@deneb.enyo.de>  Sat, 20 Oct 2012 19:39:32 +0200

bind9 (1:9.7.3.dfsg-1~squeeze7) squeeze-security; urgency=high

  * Apply patch extracted from 9.7.6-P3 to fix CVE-2012-4244

 -- Florian Weimer <fw@deneb.enyo.de>  Wed, 12 Sep 2012 20:00:45 +0200

bind9 (1:9.7.3.dfsg-1~squeeze6) squeeze-security; urgency=high

  * Non-maintainer upload by the Security Team.
  * Fi denial of service through assert because of using bad cache
    data before initialization (CVE-2012-3817).

 -- Nico Golde <nion@debian.org>  Mon, 30 Jul 2012 10:47:30 +0000

bind9 (1:9.7.3.dfsg-1~squeeze5) squeeze-security; urgency=high

  * Apply patch from ISC to fix zero-length RDATA handling (CVE-2012-1667)

 -- Florian Weimer <fw@deneb.enyo.de>  Mon, 04 Jun 2012 21:05:55 +0200

bind9 (1:9.7.3.dfsg-1~squeeze4) squeeze-security; urgency=high

  * Apply patch from ISC to fix query.c crash (CVE-2011-4313)

 -- Florian Weimer <fw@deneb.enyo.de>  Wed, 16 Nov 2011 20:12:40 +0100

bind9 (1:9.7.3.dfsg-1~squeeze3) squeeze-security; urgency=high

  * Apply patch from ISC BIND 9.7.3-P3 to address CVE-2011-2464.

 -- Florian Weimer <fw@deneb.enyo.de>  Tue, 05 Jul 2011 18:47:02 +0200

bind9 (1:9.7.3.dfsg-1~squeeze2) squeeze-security; urgency=high

  * Apply patches from 9.7.3-P1 to address crasher in negative caching
    (CVE-2011-1910) and resolution failures in DLV mode.

 -- Florian Weimer <fw@deneb.enyo.de>  Fri, 27 May 2011 20:04:04 +0200

bind9 (1:9.7.3.dfsg-1~squeeze1) stable-security; urgency=high

  * Build for squeeze-security

 -- Florian Weimer <fw@deneb.enyo.de>  Tue, 29 Mar 2011 22:24:54 +0200

bind9 (1:9.7.3.dfsg-1) unstable; urgency=low

  [Peter Palfrader]

  * Add db-4.6 to bdb_libnames in dlz/config.dlz.in so that it finds the right
    db.

  [Internet Systems Consortium, Inc]

  * 9.7.3 - Closes: #612287

  [Mahyuddin Susanto]

  * Updated Indonesian debconf templates.  Closes: #608559

  [LaMont Jones]

  * soname changes

 -- LaMont Jones <lamont@debian.org>  Wed, 23 Feb 2011 09:14:36 -0700

bind9 (1:9.7.3.dfsg~rc1-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * New upstream

  [Peter Palfrader]

  * Add db-4.6 to bdb_libnames in dlz/config.dlz.in so that it finds the right
    db.

  [Mahyuddin Susanto]

  * Updated Indonesian debconf templates.  Closes: #608559

  [LaMont Jones]

  * soname changes for new upstream

 -- LaMont Jones <lamont@debian.org>  Fri, 04 Feb 2011 21:20:05 -0700

bind9 (1:9.7.2.dfsg.P3-1) unstable; urgency=high

  [ISC]
  * Fix denial of service via ncache entry and a rrsig for the
    same type (CVE-2010-3613)
  * answers were incorrectly marked as insecure during key algorithm
    rollover (CVE-2010-3614)
  * Using "allow-query" in the "options" or "view" statements to
    restrict access to authoritative zones had no effect.
    (CVE-2010-3615)

  [LaMont Jones]

  * Adjust indentation for dpkg change.  Closes: #597171

 -- LaMont Jones <lamont@debian.org>  Wed, 01 Dec 2010 16:32:48 -0700

bind9 (1:9.7.2.dfsg.P2-3) unstable; urgency=low

  [LaMont Jones]

  * Adjust indentation for dpkg change.  Closes: #597171
  * acknowledge and incorporate ubuntu change.

 -- LaMont Jones <lamont@debian.org>  Fri, 26 Nov 2010 05:18:43 -0700

bind9 (1:9.7.2.dfsg.P2-2ubuntu1) natty; urgency=low

  [ Andres Rodriguez ]
  * Add apport hook (LP: #533601):
    - debian/bind9.apport: Added.

  [ Martin Pitt ]
  * debian/rules: Install Apport hook when building on Ubuntu.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 26 Nov 2010 10:50:17 +0100

bind9 (1:9.7.2.dfsg.P2-2) unstable; urgency=low

  [Roy Jamison]

  * lib/isc/unix/resource.c was missing inttypes.h include.  LP: #674199

 -- LaMont Jones <lamont@debian.org>  Fri, 12 Nov 2010 10:52:32 -0700

bind9 (1:9.7.2.dfsg.P2-1) unstable; urgency=low

  [Joe Dalton]

  * Add Danish translation of debconf templates.  Closes: #599431

  [Internet Software Consortium, Inc]

  * v9.7.2-P2

  [José Figueiredo]

  * Add Brazilian Portuguese debconf templates translation.  Closes: #597616

  [LaMont Jones]

  * drop this v3 (quilt) source format idea.  Closes: #589916

 -- LaMont Jones <lamont@debian.org>  Sun, 10 Oct 2010 19:01:57 -0600

bind9 (1:9.7.1.dfsg.P2-2) unstable; urgency=low

  * Correct conflicts for bind9-host

 -- LaMont Jones <lamont@debian.org>  Fri, 16 Jul 2010 05:24:38 -0600

bind9 (1:9.7.1.dfsg.P2-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * Temporarily and partially disable change 2864 because it would cause
    inifinite attempts of RRSIG queries.  This is an urgent care fix; we'll
    revisit the issue and complete the fix later.  [RT #21710]
  * Temporarially rollback change 2748. [RT #21594]
  * Named failed to accept uncachable negative responses from insecure zones.
    [RT# 21555]

  [LaMont Jones]

  * freshen copyright file

 -- LaMont Jones <lamont@debian.org>  Thu, 15 Jul 2010 15:07:54 -0600

bind9 (1:9.7.1.dfsg.0-1) unstable; urgency=low

  * Repack to drop zkt/doc/{draft,rfc}*  Closes: #588055

 -- LaMont Jones <lamont@debian.org>  Mon, 05 Jul 2010 07:21:34 -0600

bind9 (1:9.7.1.dfsg-2) unstable; urgency=low

  [Regid Ichira]

  * explicitly add nsupdate to dynamic updates in README.Debian. 
    Closes: #577398

  [LaMont Jones]

  * Cleanup bind9-host description.  Closes: #579421
  * switch to 3.0 (quilt) source format, but not to quilt.  Closes: #578210

  [Stephen Gran]

  * updated geoip patch for ipv6, based on work by John 'Warthog9' Hawley
    <warthog9@eaglescrag.net>.  Closes: #584603

 -- LaMont Jones <lamont@debian.org>  Fri, 02 Jul 2010 08:19:29 -0600

bind9 (1:9.7.1.dfsg-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * 9.7.1

  [LaMont Jones]

  * Add freebsd support.  Closes: #578447
  * soname changes
  * freshen root cache.  LP: #596363

 -- LaMont Jones <lamont@debian.org>  Mon, 21 Jun 2010 09:53:30 -0600

bind9 (1:9.7.0.dfsg.P1-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * 9.7.0-P1
    - 2852. [bug] Handle broken DNSSEC trust chains better. [RT #15619]

 -- LaMont Jones <lamont@debian.org>  Wed, 17 Mar 2010 08:06:42 -0600

bind9 (1:9.7.0.dfsg.1-1) unstable; urgency=low

  [Niko Tyni]

  * fix mips/mipsel startup.  Closes: #516616

  [LaMont Jones]

  * ignore failures due to a lack of /etc/bind/named.conf*.  LP: #422968
  * ldap API changed regarding % sign.  LP: #227344
  * Drop more rfc and draft files.  Closes: #572606
  * update config.guess, config.sub.  Closes: #572528

 -- LaMont Jones <lamont@debian.org>  Fri, 12 Mar 2010 14:56:08 -0700

bind9 (1:9.7.0.dfsg-2) unstable; urgency=low

  [Aurelien Jarno]

  * kfreebsd has linux threads.  Closes: #470500

  [LaMont Jones]

  * do not error out on initial install.  Closes: #572443

 -- LaMont Jones <lamont@debian.org>  Thu, 04 Mar 2010 09:32:13 -0700

bind9 (1:9.7.0.dfsg-1) unstable; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Wed, 17 Feb 2010 14:53:36 -0700

bind9 (1:9.7.0.dfsg~rc2-1) experimental; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Jan 2010 05:46:50 -0700

bind9 (1:9.7.0.dfsg~b3-2) experimental; urgency=low

  * merge changes from 9.6.1.dfsg.P2-1
  * meta: drop verisoned depends from library packages, for less upgrade pain
  * apparmor: allow named to create /var/run/named/session.key

 -- LaMont Jones <lamont@debian.org>  Sun, 06 Dec 2009 11:46:17 -0700

bind9 (1:9.7.0.dfsg~b3-1) experimental; urgency=low

  [Internet Software Consortium, Inc]

  * 9.7.0b3

  [LaMont Jones]

  * Merge remote branch 'origin/master'
  * soname changes

 -- LaMont Jones <lamont@debian.org>  Mon, 30 Nov 2009 21:07:58 -0700

bind9 (1:9.6.1.dfsg.P2-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * 9.6.1-P2
    - When validating, track whether pending data was from the
      additional section or not and only return it if validates
      as secure. [RT #20438] CVE-2009-4022

  [LaMont Jones]

  * prerm: do not stop named on upgrade.  Closes: #542888
  * Drop some RFCs that crept into the diff.
  * meta: add ${misc:Depends}
  * lintian: update config.guess, config.sub in idnkit-1.0 tree
  * dnsutils: remove pre-sarge dpkg-divert calls in postinst
  * meta: soname changes
  * l10n: missing newline in pofile.

 -- LaMont Jones <lamont@debian.org>  Fri, 27 Nov 2009 10:07:10 -0700

bind9 (1:9.7.0.dfsg~b2-2) experimental; urgency=low

  * dnsutils: remove pre-sarge dpkg-divert calls in postinst

 -- LaMont Jones <lamont@debian.org>  Tue, 17 Nov 2009 22:42:40 -0600

bind9 (1:9.7.0.dfsg~b2-1) experimental; urgency=low

  [Internet Software Consortium, Inc]

  * 9.7.0b2

  [LaMont Jones]

  * /etc/bind/bind.keys need not be executable.
  * bind9: drop old stale code from postinst
  * prerm: do not stop named on upgrade.  Closes: #542888
  * Drop some RFCs that crept into the diff.
  * meta: add ${misc:Depends}
  * lintian: update config.guess, config.sub in idnkit-1.0 tree
  * l10n: missing newline in pofile.

 -- LaMont Jones <lamont@debian.org>  Mon, 16 Nov 2009 18:53:24 -0700

bind9 (1:9.7.0~a1.dfsg-0) experimental; urgency=low

  [Internet Software Consortium, Inc]

  * 9.7.0a1

 -- LaMont Jones <lamont@debian.org>  Wed, 24 Jun 2009 15:10:08 -0600

bind9 (1:9.6.1.dfsg.P1-3) unstable; urgency=low

  * Build-Depend on the fixed libgeoip-dev.  Closes: #540973

 -- LaMont Jones <lamont@debian.org>  Mon, 17 Aug 2009 06:53:11 -0600

bind9 (1:9.6.1.dfsg.P1-2) unstable; urgency=low

  [Jamie Strandboge]

  * reload individual named profile, not all of apparmor.  LP: #412751

  [Guillaume Delacour]

  * bind9 did not purge cleanly.  Closes: #497959

  [LaMont Jones]

  * postinst: do not append a blank line to /etc/default/bind9. 
    Closes: #541469
  * init.d stop needs to not error out.  LP: #398033
  * meta: fix build-depends.  Closes: #539230

 -- LaMont Jones <lamont@debian.org>  Fri, 14 Aug 2009 17:03:31 -0600

bind9 (1:9.6.1.dfsg.P1-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * A specially crafted update packet will cause named to exit. 
    CVE-2009-0696, CERT VU#725188.  Closes: #538975

  [InterNIC]

  * Update db.root hints file.

  [LaMont Jones]

  * Move default zone definitions from named.conf to named.conf.default-zones.
     Closes: #492308
  * use start-stop-daemon if rndc stop fails.  Closes: #536487
  * lwresd: pidfile name was wrong in init script.  Closes: #527137

 -- LaMont Jones <lamont@debian.org>  Tue, 28 Jul 2009 22:03:14 -0600

bind9 (1:9.6.1.dfsg-2) unstable; urgency=low

  * ia64: fix atomic.h

 -- LaMont Jones <lamont@debian.org>  Tue, 23 Jun 2009 01:56:35 -0600

bind9 (1:9.6.1.dfsg-1) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * 9.6.1

 -- LaMont Jones <lamont@debian.org>  Mon, 22 Jun 2009 14:33:20 -0600

bind9 (1:9.6.0.dfsg.P1-3) unstable; urgency=low

  [Martin Zobel-Helas]

  * GEO-IP Patch from
    git://git.kernel.org/pub/scm/network/bind/bind-geodns.git.  Closes: #395191

  [LaMont Jones]

  * Remove /var/lib/bind on purge.  Closes: #527613
  * Build-Depend: libdb-dev (>4.6).  Closes: #527877, #528772
  * init.d: detect rndc errors better.  LP: #380962
  * init.d: clean up exit status.  Closes: #523454
  * Enable pkcs11 support, and then Revert - causes assertion failures
    c.f.: #516552

 -- LaMont Jones <lamont@debian.org>  Mon, 22 Jun 2009 13:58:32 -0600

bind9 (1:9.6.0.dfsg.P1-2) unstable; urgency=low

  * random_1 broke memory usage assertions.

 -- LaMont Jones <lamont@debian.org>  Thu, 23 Apr 2009 05:15:45 -0600

bind9 (1:9.6.0.dfsg.P1-1) experimental; urgency=low

  [Michael Milligan]

  * Add min-cache-ttl and min-ncache-ttl keywords

  [LaMont Jones]
  
  * Fix merge errors from 9.6.0.dfsg.P1-0

 -- LaMont Jones <lamont@debian.org>  Fri, 20 Mar 2009 15:50:50 -0600

bind9 (1:9.6.0.dfsg.P1-0) experimental; urgency=low

  [Internet Software Consortium, Inc]

  * 9.6.0-P1

  [LaMont Jones]

  * meta: fix override disparity
  * meta: soname package fixups for 9.6.0
  * meta: update Standards-Version: 3.7.3.0
  * upstream now uses a bind subdir.  Closes: #212659

  [Sven Joachim]

  * meta: pass host and build into configure for hybrid build machines. 
    Closes: #515110

 -- LaMont Jones <lamont@debian.org>  Fri, 20 Mar 2009 11:54:55 -0600

bind9 (1:9.5.1.dfsg.P1-3) unstable; urgency=low

  * package -2 for unstable

 -- LaMont Jones <lamont@debian.org>  Wed, 18 Mar 2009 09:40:18 -0600

bind9 (1:9.5.1.dfsg.P1-2) stable; urgency=low

  [Juhana Helovuo]

  * fix atomic operations on alpha.  Closes: #512285

  [Dann Frazier]

  * fix atomic operations on ia64.  Closes: #520179

  [LaMont Jones]

  * build-conflict: libdb4.2-dev.  Closes: #515074, #507013

  [localization folks]

  * l10n: Basque debconf template.  Closes: #516549 (Piarres Beobide)

 -- LaMont Jones <lamont@debian.org>  Wed, 18 Mar 2009 05:30:22 -0600

bind9 (1:9.5.1.dfsg.P1-1) unstable; urgency=low

  * New upstream patch release
    - supportable version of fix from 9.5.0.dfsg.P2-5.1
    - CVE-2009-0025:  Closes: #511936
    - 2475: Overly agressive cache entry removal.  Closes: #511768
    - other bug fixes worthy of patch-release inclusion

 -- LaMont Jones <lamont@debian.org>  Mon, 26 Jan 2009 10:33:42 -0700

bind9 (1:9.5.0.dfsg.P2-5.1) unstable; urgency=low

  * Non-maintainer upload.
  * Apply upstream ACL fixes from 9.5.1 to fix RC bug. Patch was provided
    by Evan Hunt (upstream bind9 developer) after Emmanuel Bouthenot
    contacted him. Closes: #496954, #501800.
  * Remove obsolete dh_installmanpages invocation which was adding
    unwanted manual pages to bind9. Closes: #486196.

 -- Ben Hutchings <ben@decadent.org.uk>  Fri, 02 Jan 2009 16:51:42 +0000

bind9 (1:9.5.0.dfsg.P2-5) unstable; urgency=low

  [ISC]

  * 2463: IPv6 Advanced Socket API broken on linux.  LP: #249824

  [Jamie Strandboge]

  * apparmor: add capability sys_resource
  * apparmor: add krb keytab access.  LP: #277370

  [LaMont Jones]

  * apparmor: allow proc/*/net/if_inet6 read access too.  LP: #289060
  * apparmor: add /var/log/named/* entries.  LP: #294935

  [Ben Hutchings]

  * meta: Add dependency of bind9 on net-tools (ifconfig used in init script)
  * meta: Fix bind9utils Depends.
  * meta: fix typo in package description

  [localization folks]

  * l10n: add polish debconf translations.  Closes: #506856 (L)

 -- LaMont Jones <lamont@debian.org>  Sun, 07 Dec 2008 21:03:29 -0700

bind9 (1:9.5.0.dfsg.P2-4) unstable; urgency=low

  * meta: fix typo in Depends: lsb-base.  Closes: #501365

 -- LaMont Jones <lamont@debian.org>  Tue, 07 Oct 2008 17:20:11 -0600

bind9 (1:9.5.0.dfsg.P2-3) unstable; urgency=low

  [LaMont Jones]

  * enable largefile support.  Closes: #497040

  [localization folks]

  * l10n: Dutch translation.  Closes: #499977 (Paul Gevers)
  * l10n: simplified chinese debconf template.  Closes: #501103 (LI Daobing)
  * l10n: Update spanish template.  Closes: #493775 (Ignacio Mondino)

 -- LaMont Jones <lamont@debian.org>  Sun, 05 Oct 2008 20:20:00 -0600

bind9 (1:9.5.0.dfsg.P2-2) unstable; urgency=low

  [Kees Cook]

  * debian/{control,rules}: enable PIE hardening (from -1ubuntu1)

  [Nicolas Valcárcel]

  * Add ufw integration (from -1ubuntu2)

  [Dustin Kirkland]

  * use pid file in init.d/bind9 status.  LP: #247084

  [LaMont Jones]

  * dig: add -DDIG_SIGCHASE to compile options.  LP: #257682
  * apparmor profile: add /var/log/named

  [Nikita Ofitserov]

  * ipv6 support requires _GNU_SOURCE definition.  LP: #249824

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Aug 2008 23:08:36 -0600

bind9 (1:9.5.0.dfsg.P2-1) unstable; urgency=low

  [LaMont Jones]

  * default to using resolvconf if it is installed
  * fix sonames and dependencies.  Closes: #149259, #492418
  * Do not build-depend libcap2-dev on non-linux.  Closes: #493392
  * drop unused query-loc manpage.  Closes: #492564
  * lwresd: Deliver /etc/bind directory.  Closes: #490027
  * fix query-source comment in default install

  [Internet Software Consortium, Inc]

  * 9.5.0-P2.  Closes: #492949

  [localization folks]

  * l10n: Spanish debconf translation.  Closes: #492425 (Ignacio Mondino)
  * l10n: Swedish debconf templates.  Closes: #491369 (Martin Ã…gren)
  * l10n: Japanese debconf translations.  Closes: #492048 (Hideki Yamane
    (Debian-JP))
  * l10n: Finnish translation.  Closes: #490630 (Esko Arajärvi)
  * l10n: Italian debconf translations.  Closes: #492587 (Alessandro Vietta)

 -- LaMont Jones <lamont@debian.org>  Sat, 02 Aug 2008 14:20:20 -0600

bind9 (1:9.5.0.dfsg.P1-2) unstable; urgency=low

  * Revert "meta: merge the mess of single-lib packages back into one large
    one." - That way lies madness and pain.
  * init.d/bind9: implement status function.  LP: #203169

 -- LaMont Jones <lamont@debian.org>  Tue, 08 Jul 2008 21:56:58 -0600

bind9 (1:9.5.0.dfsg.P1-1) unstable; urgency=low

  * Repackage 9.5.0.dfsg-5 with the -P1 tarball.

 -- LaMont Jones <lamont@debian.org>  Tue, 08 Jul 2008 15:06:07 -0600

bind9 (1:9.5.0.dfsg-5) unstable; urgency=low

  [Internet Software Consortium, Inc]

  * Randomize UDP query source ports to improve forgery resilience.
    (CVE-2008-1447)                                                                              

  [LaMont Jones]

  * add build-depends: texlive-latex-base, xsltproc, remove Bv9ARM.pdf in clean
  * fix sonames
  * drop unneeded build-deps, since we do not actually deliver B9vARM.pdf
  * meta: cleanup libbind9-41 Provides/Conflicts
  * build: fix sonames for new libraries
  * postinst: really restart bind/lwresd in postinst

 -- LaMont Jones <lamont@debian.org>  Sun, 06 Jul 2008 21:34:18 -0600

bind9 (1:9.5.0.dfsg-4) unstable; urgency=low

  [LaMont Jones]

  * control: fix dnsutils description to avoid list reformatting. 
    Closes: #480317
  * lwresd: restart in postinst.  Closes: #486481
  * meta: merge the mess of single-lib packages back into one large one.
  * apparmor: allow bind to create files in /var/{lib,cache}/bind
  * build: drop .la files.  Closes: #486969
  * build: drop the extra lib path from the library-package merge
  * meta: liblwres40 does not conflict with the libbind9-40-provided libbind0

  [localization folks]

  * l10n: German debconf translation.  Closes: #486547 (Helge Kreutzmann)
  * l10n: Indonesian debconf translations.  Closes: #486503 (Arief S Fitrianto)
  * l10n: Slovak po-debconf translation Closes: #488905 (helix84)
  * l10n: Turkish debconf template.  Closes: #486479 (Mert Dirik)

 -- LaMont Jones <lamont@debian.org>  Mon, 30 Jun 2008 11:22:05 -0600

bind9 (1:9.4.2-12) unstable; urgency=low

  * apparmor: allow bind to create files in /var/{lib,cache}/bind

 -- LaMont Jones <lamont@debian.org>  Mon, 30 Jun 2008 11:17:53 -0600

bind9 (1:9.4.2-11) unstable; urgency=low

  * apparmor: add dnscvsutil package files
  * lwresd Depends: adduser
  * control: fix dnsutils description to avoid list reformatting. 
    Closes: #480317

 -- LaMont Jones <lamont@debian.org>  Tue, 17 Jun 2008 21:30:12 -0600

bind9 (1:9.5.0.dfsg-3) unstable; urgency=low

  [LaMont Jones]

  * bind9utils Depends: libbind9-40.  Closes: #486194
  * bind9 should not deliver manpages for nonexistant binaries. 
    Closes: #486196

  [localization folks]

  * l10n: Vietnamese debconf templates translation update.  Closes: #486185
    (Clytie Siddall)
  * l10n: Russian debconf templates translation.  Closes: #486191 (Yuri Kozlov)
  * l10n: Galician debconf template.  Closes: #486215 (Jacobo Tarrio)
  * l10n: French debconf templates.  Closes: #486325 (CALARESU Luc)
  * l10n: Czech debconf translation.  Closes: #486337 (Miroslav Kure)
  * l10n: Updated Portuguese translation.  Closes: #486267 (Traduz -
    Portuguese Translation Team)

 -- LaMont Jones <lamont@debian.org>  Sun, 15 Jun 2008 18:25:02 -0600

bind9 (1:9.5.0.dfsg-2) unstable; urgency=low

  [Tim Spriggs]

  * init.d: Nexenta has different ifconfig arguments

  [LaMont Jones]

  * templates rework from debian-l10n-english
  * reload named when an interface goes up or down.  LP: #226495
  * build: need to create the directories for interface restart triggering
  * Build-Depends: libcap2-dev.  Closes: #485747
  * Leave named running during update.  Closes: #453765
  * Fix path to uname, cleaning up the nexenta checks.
  * l10n: avoid double-question in templates.

  [localization folks]

  * l10n: Vietnamese debconf translations.  Closes: #483911 (Clytie Siddall)
  * l10n: Portuguese debconf translations.  Closes: #483872 (Traduz -
    Portuguese Translation Team)

 -- LaMont Jones <lamont@debian.org>  Fri, 13 Jun 2008 16:54:42 -0600

bind9 (1:9.5.0.dfsg-1) unstable; urgency=low

  [LaMont Jones]

  * manpages: fix references that should say /etc/bind
  * meta: build-depend libxml2-dev for statistics support

 -- LaMont Jones <lamont@debian.org>  Sat, 31 May 2008 12:17:21 -0600

bind9 (1:9.5.0.dfsg-0) experimental; urgency=low

  [Internet Software Consortium, Inc]

  * 9.5.0 release

  [LaMont Jones]

  * Only use capabilities if they are present: reprise.  Closes: #360339, #212226
  * control: fix dnsutils description to avoid list reformatting.  Closes: #480317
  * build: use the correct directories in dh_shlibdeps invocation
  * build: turn on dlz.  No pgsql or mysql support yet.  LP: #227344

 -- LaMont Jones <lamont@debian.org>  Thu, 29 May 2008 22:05:19 -0600

bind9 (1:9.5.0~rc1-2~0ubuntu2) intrepid; urgency=low

  * build: use the correct directories in dh_shlibdeps invocation
  * build: turn on dlz.  LP: #227344

 -- LaMont Jones <lamont@ubuntu.com>  Tue, 27 May 2008 21:43:06 -0600

bind9 (1:9.5.0~rc1-2~0ubuntu1) intrepid; urgency=low

  * Upload what will become (maybe an ancestor of) -2 to intrepid.
    - Only use capabilities if they are present: reprise.  Closes: #360339, #212226
    - control: fix dnsutils description to avoid list reformatting.  Closes: #480317

 -- LaMont Jones <lamont@ubuntu.com>  Mon, 26 May 2008 11:46:27 -0600

bind9 (1:9.5.0~rc1-1) experimental; urgency=low

  [Patrick Winnertz]

  * postinst: make add debconf support.  Closes: #473460

  [Jamie Strandboge]

  * debian/bind9.preinst: Apparmor force-complain on upgrade without
    existing profile.  LP: #204658

  [LaMont Jones]

  * bind9utils: fix typos in .install
  * host: manpage inaccurately describes default query.  LP: #203087
  * apparmor: add dnscvsutil package files
  * Revert "Only use capabilities if they are present." for merge of 9.5.0rc1.
  * soname: libdns41 -> 42
  * fix typos in debconf patch, #473460
  * cleanup more files in clean target
  * lwresd Depends: adduser

 -- LaMont Jones <lamont@debian.org>  Thu, 15 May 2008 17:59:54 -0600

bind9 (1:9.5.0~b2-2) experimental; urgency=low

  * meta: add bind9utils binary package, with various useful utilities.  Closes: #151957, #130445, #160483

 -- LaMont Jones <lamont@debian.org>  Thu, 03 Apr 2008 07:01:42 -0600

bind9 (1:9.4.2-10) unstable; urgency=low

  [Jamie Strandboge]

  * debian/bind9.preinst: AA force-complain on upgrade without existing
    profile.  LP: #204658

  [LaMont Jones]

  * host: manpage inaccurately describes default query.  LP: #203087

 -- LaMont Jones <lamont@debian.org>  Tue, 08 Apr 2008 22:45:57 -0600

bind9 (1:9.4.2-9) unstable; urgency=low

  * apparmor: allow subdirs in {/etc,/var/cache,/var/lib}/bind
  * apparmor: make profile match README.Debian

 -- LaMont Jones <lamont@debian.org>  Tue, 01 Apr 2008 21:13:05 -0600

bind9 (1:9.4.2-8) unstable; urgency=low

  [ISC]

  * CVE-2008-0122: off by one error in (unused) inet_network function.
    Closes: #462783  LP: #203476

  [Michael Milligan]

  * Fix min-cache-ttl and min-ncache-ttl keywords

  [Jamie Strandboge]

  * apparmor: force complain-mode for apparmor on certain upgrades.  LP: #203528
  * debian/bind9.postrm: purge /etc/apparmor.d/force-complain/usr.sbin.named

 -- LaMont Jones <lamont@debian.org>  Tue, 18 Mar 2008 18:35:15 -0600

bind9 (1:9.4.2-7) unstable; urgency=low

  [Jamie Strandboge]

  * Allow rw access to /var/lib/bind/* in apparmor-profile.  LP: #201954

  [LaMont Jones]

  * Drop root-delegation comments from named.conf.  Closes: #217829, #297219

 -- LaMont Jones <lamont@debian.org>  Sat, 15 Mar 2008 09:48:10 -0600

bind9 (1:9.4.2-6) unstable; urgency=low

  * Correct apparmor profile filename.  LP: #200739

 -- LaMont Jones <lamont@debian.org>  Mon, 10 Mar 2008 14:28:01 -0600

bind9 (1:9.4.2-5) unstable; urgency=low

  * add "order random_1" support (return one random RR)
  * Fix doc pathnames in README.Debian.  Closes: #266891
  * Add AAAA ::1 entry to db.local.  Closes: #230088

 -- LaMont Jones <lamont@debian.org>  Mon, 10 Mar 2008 13:51:28 -0600

bind9 (1:9.5.0~b2-1) experimental; urgency=low

  [Thiemo Seufer]

  * mips:atomic.h: improve implementation of atomic ops, fix mips{el,64}

  [LaMont Jones]

  * manpages: call it /etc/bind/named.conf throughout, and typos.  Closes: #419750
  * named.conf.5: correct filename.  Closes: #428015
  * manpages: fix typo errors.  Closes: #395834
  * Makefile.in: be explicit about library paths
  * build: Turn on GSS-TSIG support.  LP: #158197
  * build: soname changes
  * db.root: include AAAA RRs.  Closes: #464111
  * soname: lib{dns,isc}40 -> 41
  * meta: use binary:Version instead of Source-Version

  [Andreas John]

  * Only use capabilities if they are present.  Closes: #360339, #212226

 -- LaMont Jones <lamont@debian.org>  Sat, 23 Feb 2008 08:06:17 -0700

bind9 (1:9.4.2-4) unstable; urgency=low

  * incorporate ubuntu apparmor change from Jamie Strandboge,
    with changes:
    - Add apparmor profile, reload apparmor profile on config
    - Add a note about apparmor to README.Debian
    - conflicts/replaces old apparmor versions
  * db.root: include AAAA RRs.  Closes: #464111
  * Don't die when /var/lib/bind already exists.  LP: #191685
  * build: turn on optimization.  Closes: #435194

 -- LaMont Jones <lamont@debian.org>  Fri, 22 Feb 2008 22:05:25 -0700

bind9 (1:9.4.2-3ubuntu1) hardy; urgency=low

  * add AppArmor profile
    + debian/apparmor-profile
    + debian/bind9.postinst: Reload AA profile on configuration
  * updated debian/README.Debian for note on AppArmor
  * debian/control: Replaces apparmor-profiles << 2.1+1075-0ubuntu4 as we
    should now take control
  * debian/control: Conflicts with apparmor-profiles << 2.1+1075-0ubuntu4
    to make sure that if earlier version of apparmor-profiles gets installed
    it won't overwrite our profile
  * Modify Maintainer value to match the DebianMaintainerField
    specification.

 -- Jamie Strandboge <jamie@ubuntu.com>  Wed, 13 Feb 2008 17:30:45 +0000

bind9 (1:9.4.2-3) unstable; urgency=low

  * don't run rndc-confgen when it's not there.  Closes: #459551
  * control: drop use of ${Source-Version}

 -- LaMont Jones <lamont@debian.org>  Mon, 07 Jan 2008 10:16:06 -0700

bind9 (1:9.4.2-2) unstable; urgency=low

  * init.d: add --oknodo to start-stop-daemon.  Closes: #411881
  * init: LSB dependency info.  Closes: #459421, #448006
  * meta: bind9 Suggests: resolvconf.  Closes: #252285
  * bind9: deliver /var/lib/bind directory, and document.
    Closes: #248771, #200253, #202981, #209022
  * lwresd: create bind user/group and rndc key if needed, at install.
    Closes: #190742
  * dnsutils: update long description.  Closes: #236901

 -- LaMont Jones <lamont@debian.org>  Sun, 06 Jan 2008 12:25:31 -0700

bind9 (1:9.4.2-1) unstable; urgency=low

  [Mike O'Connor]

  * bind9.init: LSB compliance.  Closes: #448006

  [Internet Software Consortium, Inc]

  * New release: 9.4.2

  [LaMont Jones]

  * soname shifts for new release

 -- LaMont Jones <lamont@debian.org>  Sat, 17 Nov 2007 10:50:07 -0700

bind9 (1:9.4.2~rc2-1) experimental; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Fri, 12 Oct 2007 18:33:57 -0600

bind9 (1:9.4.1-P1-4) unstable; urgency=low

  [Thomas Antepoth]

  * unix/socket.c: don't send to a socket with pending_send.  Closes: #430065

  [LaMont Jones]

  * document git repositories
  * db.root: l.root-servers.net changed IP address.  Closes: #449148  LP: #160176
  * init.d: if there are no networks configured, error out quickly

 -- LaMont Jones <lamont@debian.org>  Thu, 08 Nov 2007 21:31:55 -0700

bind9 (1:9.4.1-P1-3) unstable; urgency=low

  * Only deliver upstream changes with bind9-doc

 -- LaMont Jones <lamont@debian.org>  Thu, 04 Oct 2007 08:30:55 -0600

bind9 (1:9.4.1-P1-2) unstable; urgency=low

  * manpages: fix typo errors.  Closes: #395834
  * manpages: call it /etc/bind/named.conf throughout, and typos.  Closes: #419750
  * named.conf.5: correct filename.  Closes: #428015
  * bind9.NEWS: update version for ACL change doc.  Closes: #435225
  * build: don't have dnsutils deliver man pages that it shouldn't.  LP: #82178
  * nslookup.1: some of the manpage was not visible.  LP: #131415
  * document git repositories
  * unix/socket.c: don't send to a socket with pending_send.  Closes: #430065

 -- LaMont Jones <lamont@debian.org>  Wed, 03 Oct 2007 01:10:59 -0600

bind9 (1:9.4.1-P1-1) unstable; urgency=high

  * New upstream version, addresses CVE-2007-2926 and CVE-2007-2925 

 -- Bdale Garbee <bdale@gag.com>  Thu, 26 Jul 2007 16:41:50 -0600

bind9 (1:9.4.1-1) unstable; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Mon, 30 Apr 2007 16:59:05 -0600

bind9 (1:9.4.0-2) unstable; urgency=low

  * upload to unstable

 -- LaMont Jones <lamont@debian.org>  Tue, 10 Apr 2007 11:12:16 -0600

bind9 (1:9.4.0-1) experimental; urgency=low

  * New upstream version
  * more mipsel patch.  Closes: #406409

 -- LaMont Jones <lamont@debian.org>  Sun, 25 Feb 2007 11:44:11 -0700

bind9 (1:9.4.0~rc2-1) experimental; urgency=low

  * New upstream version.  Addresses CVE-2007-0493 CVE-2007-0494

 -- LaMont Jones <lamont@debian.org>  Thu, 25 Jan 2007 14:26:12 -0700

bind9 (1:9.4.0~rc1.0-3) experimental; urgency=low

  * add NEWS file talking about the change in defaults:
    As of bind 9.4, allow-query-cache and allow-recursion default to the
    builtin acls 'localnets' and 'localhost'.  If you are setting up a
    name server for a network, you will almost certainly need to change
    this.

    The change in default has been done to make caching servers less
    attractive as reflective amplifying targets for spoofed traffic.
    This still leaves authoritative servers exposed.

 -- LaMont Jones <lamont@debian.org>  Wed, 24 Jan 2007 09:35:06 -0700

bind9 (1:9.4.0~rc1.0-2) experimental; urgency=low

  * Fix mips64.  Closes: #406409

 -- LaMont Jones <lamont@debian.org>  Sun, 21 Jan 2007 15:32:27 -0700

bind9 (1:9.4.0~rc1.0-1) experimental; urgency=low

  * Broken orig.tar.gz.

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Dec 2006 23:04:05 -0700

bind9 (1:9.4.0~rc1-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Dec 2006 19:00:37 -0700

bind9 (1:9.3.4-2etch2) stable-proposed-updates; urgency=low

  [Thomas Antepoth]

  * unix/socket.c: don't send to a socket with pending_send.  Closes: #430065

  [LaMont Jones]

  * document git repositories
  * db.root: l.root-servers.net changed IP address.  Closes: #449148

 -- LaMont Jones <lamont@debian.org>  Mon, 05 Nov 2007 19:48:23 -0700

bind9 (1:9.3.4-2etch1) stable-security; urgency=high

  * Fix DNS cache poisoning through predictable query IDs. (CVE-2007-2926)

 -- Moritz Muehlenhoff <jmm@debian.org>  Tue, 24 Jul 2007 22:09:35 +0000

bind9 (1:9.3.4-2) unstable; urgency=high

  * Actually really do the merge of 9.3.4.  Sigh.  Closes: #408925

 -- LaMont Jones <lamont@debian.org>  Mon, 29 Jan 2007 06:09:03 -0700

bind9 (1:9.3.4-1) unstable; urgency=high

  * New upstream version.  Addresses CVE-2007-0493 CVE-2007-0494

 -- LaMont Jones <lamont@debian.org>  Thu, 25 Jan 2007 14:31:09 -0700

bind9 (1:9.3.3-1) unstable; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Tue, 12 Dec 2006 23:31:51 -0700

bind9 (1:9.3.2-P1.0-1) unstable; urgency=low

  * Fix README.Debian to point to the URL.  Closes: #387437
  * Strip rfc's from orig.tar.gz.  Closes: #393359

 -- LaMont Jones <lamont@mmjgroup.com>  Mon, 16 Oct 2006 06:38:22 -0600

bind9 (1:9.3.2-P1-2) unstable; urgency=low

  * Fix init script output.  Closes: #354192
    Thanks to Joey Hess for the patch.
  * Default install should listen on ipv6 interfaces.  Closes: #382438

 -- LaMont Jones <lamont@debian.org>  Sat,  9 Sep 2006 19:01:53 -0600

bind9 (1:9.3.2-P1-1) unstable; urgency=high

  * New upstream, fixes CVE-2006-4095 and CVE-2006-4096.
    Closes: #386237, #386245
  * Drop gcc-3.4 [powerpc] dependency.  Closes: #342957, #372203
  * Add -fno-strict-aliasing for type-punned pointer aliasing issues
    Closes: #386224
  * Use getent in postinst instead of chown/chgrp.  Closes: #386091, #239665
  * Drop redundant update-rc.d calls.  Closes: #356914

 -- LaMont Jones <lamont@debian.org>  Wed,  6 Sep 2006 08:07:13 -0600

bind9 (1:9.3.2-2) unstable; urgency=low

  * correct force-reload.  Closes: #333841
  * Fix init.d's usage message.  Closes: #331090
  * resolvconf tweaks.  Closes: #252232, #275412

 -- LaMont Jones <lamont@debian.org>  Mon, 16 Jan 2006 15:17:04 -0700

bind9 (1:9.3.2-1) unstable; urgency=low

  * New upstream
  * use lsb-base for start/stop messages in init.d.
  * switch to debhelper 4

 -- LaMont Jones <lamont@debian.org>  Thu,  5 Jan 2006 12:29:28 -0700

bind9 (1:9.3.1-2) unstable; urgency=low

  * Getting good reports from experimental, uploading to sid.
    Release team, please consider this package for sarge.  Thanks.
  * correct pidfile name in init.d/lwresd.  Closes: #298100

 -- LaMont Jones <lamont@debian.org>  Sat, 19 Mar 2005 17:46:31 -0700

bind9 (1:9.3.1-1) experimental; urgency=low

  * Build with gcc-3.4 on powerpc, to work around #292958.

 -- LaMont Jones <lamont@debian.org>  Sat, 19 Mar 2005 11:40:06 -0700

bind9 (1:9.3.1-0) experimental; urgency=low

  * New upstream version.

 -- LaMont Jones <lamont@debian.org>  Sun, 13 Mar 2005 21:44:57 -0700

bind9 (1:9.3.0+9.3.1beta2-1) experimental; urgency=low

  * new upstream version

 -- LaMont Jones <lamont@debian.org>  Tue, 25 Jan 2005 14:21:51 -0700

bind9 (1:9.3.0-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Sat, 25 Sep 2004 21:35:46 -0600

bind9 (1:9.2.4-1) unstable; urgency=high

  * New upstream version.  Closes: #269157 and others.
  * Version debhelper build-dep.  Closes: #262720

 -- LaMont Jones <lamont@mmjgroup.com>  Thu, 23 Sep 2004 09:11:37 -0600

bind9 (1:9.2.3+9.2.4-rc7-1) unstable; urgency=low

  * New upstream

 -- LaMont Jones <lamont@mmjgroup.com>  Wed,  1 Sep 2004 00:04:55 -0600

bind9 (1:9.2.3+9.2.4-rc6-1) unstable; urgency=low

  * New upstream.
  * Comment out delegation-only directives in named.conf

 -- LaMont Jones <lamont@debian.org>  Mon,  2 Aug 2004 10:00:38 -0600

bind9 (1:9.2.3+9.2.4-rc5-1) unstable; urgency=low

  * New upstream release candidate

 -- LaMont Jones <lamont@debian.org>  Thu, 17 Jun 2004 19:50:37 -0600

bind9 (1:9.2.3+9.2.4-rc2-1) unstable; urgency=low

  * New upstream release candidate
  * Remove shared library symlinks in clean.  Closes: #243109
  * Deal with capset being a module.  Closes: #245043, #240874, #241605
  * deliver /var/run/bind/run in lwresd as well.  Closes: #186569

 -- LaMont Jones <lamont@debian.org>  Thu, 22 Apr 2004 12:20:05 -0600

bind9 (1:9.2.3-3) unstable; urgency=low

  * new IP for b.root-servers.net.  Closes: #234278
  * Fix RC linkages to match bind8.  Closes: #218007

 -- LaMont Jones <lamont@debian.org>  Mon,  1 Mar 2004 15:00:44 -0700

bind9 (1:9.2.3-2) unstable; urgency=low

  * Rebuild autoconf files for mips.  Closes: #221419

 -- LaMont Jones <lamont@debian.org>  Tue, 18 Nov 2003 06:33:34 -0700

bind9 (1:9.2.3-1) unstable; urgency=low

  * New upstream.
  * cleanup zones.rfc1918/db.empty stuff.
  * Fix Makefiles to work even if the build environment is unclean.
    Closes: #211503
  * Add comments about root-delegation-only to named.conf.  Closes: #212243
  * Add resolvconf support.  Closes: #199255
  * more SO_BSDCOMPAT hacks for linux.  Closes: #220735, #214460

 -- LaMont Jones <lamont@debian.org>  Mon, 17 Nov 2003 21:30:33 -0700

bind9 (1:9.2.2+9.2.3rc4-1) unstable; urgency=low

  * Yet another new upstream release.

 -- LaMont Jones <lamont@debian.org>  Mon, 22 Sep 2003 09:39:50 -0600

bind9 (1:9.2.2+9.2.3rc3-1) unstable; urgency=low

  * New upstream.  Closes: #211752. #211503. #211496, #211520

 -- LaMont Jones <lamont@debian.org>  Sat, 20 Sep 2003 12:22:59 -0600

bind9 (1:9.2.2+9.2.3rc2-4) unstable; urgency=low

  * Really fix versioned depends.  Closes: #211590

 -- LaMont Jones <lamont@debian.org>  Thu, 18 Sep 2003 17:29:47 -0600

bind9 (1:9.2.2+9.2.3rc2-3) unstable; urgency=low

  * Version depends for all the libraries. sigh.  Closes: #211412,#210293

 -- LaMont Jones <lamont@debian.org>  Wed, 17 Sep 2003 10:56:36 -0600

bind9 (1:9.2.2+9.2.3rc2-2) unstable; urgency=low

  * Need a versioned depend. sigh.

 -- LaMont Jones <lamont@debian.org>  Wed, 17 Sep 2003 10:25:35 -0600

bind9 (1:9.2.2+9.2.3rc2-1) unstable; urgency=low

  * New upstream release.  Closes: #211373
  * Remove RFC's from package, per policy.
  * Make com and net zones delegation-only by default.

 -- LaMont Jones <lamont@debian.org>  Wed, 17 Sep 2003 07:15:37 -0600

bind9 (1:9.2.2+9.2.3rc1-3) unstable; urgency=low

  * A bit more cleanup of descriptions.
  * fix package sections
  * Fix b0rkage with dependencies.

 -- LaMont Jones <lamont@debian.org>  Sun, 14 Sep 2003 09:05:10 -0600

bind9 (1:9.2.2+9.2.3rc1-2) unstable; urgency=low

  * Explicitly link libraries.  Closes: #210653
  * Fix descriptions.  Closes: #209563, #209853, #210063

 -- LaMont Jones <lamont@debian.org>  Sat, 13 Sep 2003 19:29:05 -0600

bind9 (1:9.2.2+9.2.3rc1-1) unstable; urgency=low

  * New upstream release candidate.
  * Quit using SO_BSDCOMPAT (why is it still in the header files??) so
    that the kernel will shut up about it's advertised, obsolete option.
    Closes: #201293, #204282, #205590

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Aug 2003 14:44:28 -0600

bind9 (1:9.2.2-2) unstable; urgency=low

  * Fix libtool.m4. Closes: #183791
  * move lib packages into Section: libs.  Closes: #184788
  * make sure it's libssl0.9.7.  Closes: #182363
  * Add /etc/default/lwresd.  Closes: #169727
  * Add fakeroot dir to dh_shlibdeps.  Closes: #169622
  * Fix rndc manpage.  Closes: #179353
  * Deliver /usr/bin/isc-config.sh (in libbind-dev).  Closes: #178186

 -- LaMont Jones <lamont@debian.org>  Sat, 15 Mar 2003 16:34:15 -0700

bind9 (1:9.2.2-1) unstable; urgency=low

  * New upstream version
  * Document /etc/default/bind9 in init.d script.  Closes: #170267

 -- LaMont Jones <lamont@debian.org>  Tue,  4 Mar 2003 22:43:58 -0700

bind9 (1:9.2.1-7) unstable; urgency=low

  * One more overrides disparity.
  * Fix bashism in postinst.  Closes: #169531

 -- LaMont Jones <lamont@debian.org>  Sun, 17 Nov 2002 19:22:58 -0700

bind9 (1:9.2.1-6) unstable; urgency=low

  * The "I give up for now" release.
  *   Only convert to running as bind if named.conf hasn't been modified.
  *   Closes: #163552, #164352
  * Fix overrides
  * Cleanup README.Debian wrt non-root-by-default.
  * Make sure that /var/run/bind/run exists in init.d script.  Closes: #168912
  * New IP for j.root-servers.net.  Closes: #167818
  * Check for 2.2.18 kernel in preinst.  Closes: #164349
  * Move local options to /etc/default/bind9.  Closes: #169132, #163073
  * Cleanup old bugs (fixed in -5, really).  Closes: #165864
  * Add /etc/bind/named.conf.local, included from named.conf.  Closes: #129576
  * Do options definitions in /etc/bind/named.conf.options, makes life
    easier in the face of named.conf changes from upstream.
  * Add missing Depends: adduser

 -- LaMont Jones <lamont@debian.org>  Sat, 16 Nov 2002 17:05:45 -0700

bind9 (1:9.2.1-5) unstable; urgency=low

  * Run named a non-privileged user by default.  Closes: #149059

 -- LaMont Jones <lamont@debian.org>  Thu, 12 Sep 2002 16:57:37 -0600

bind9 (1:9.2.1-4) unstable; urgency=low

  * swap maintainer/uploader status so LaMont is primary and Bdale is backup
  * Deal with bind/bind9 collisions better.  Closes: #149580
  * Fix some documentation.  Closes: #151579

 -- LaMont Jones <lamont@debian.org>  Wed,  4 Sep 2002 23:25:33 -0600

bind9 (1:9.2.1-3) unstable; urgency=high

  * fold in lib/bind/resolv from 8.3.3 to resolve buffer overlow issue in
    resolver library, closes: #151342, #151431

 -- Bdale Garbee <bdale@gag.com>  Mon,  1 Jul 2002 00:16:31 -0600

bind9 (1:9.2.1-1.woody.1) testing-security woody-proposed-updates; urgency=high

  * backport to woody (simple rebuild) since 9.2.1 resolves a security issue

 -- Bdale Garbee <bdale@gag.com>  Tue,  4 Jun 2002 10:30:57 -0600

bind9 (1:9.2.1-2) unstable; urgency=low

  * don't include nslint man page, closes: #148695
  * fix typo in rndc.8, closes: #139602
  * add a section to README.Debian explaining the rndc key mode that has been
    our default since 9.2.0-2, closes: #129849
  * fix paths for named.conf in named.8 to reflect our default, closes: #143443
  * upstream fixed the nsupdate man page at some point, closes: #121108

 -- Bdale Garbee <bdale@gag.com>  Mon,  3 Jun 2002 15:44:37 -0600

bind9 (1:9.2.1-1) unstable; urgency=medium

  * new upstream version
  * have bind9-host provide host, closes: #140174
  * move bind9-host to priority standard since dnsutils depends on it or host,
    and we prefer bind9-host over host.
  * move libdns5 and libisc4 to priority standard since dnsutils depends on
    them and is priority standard

 -- Bdale Garbee <bdale@gag.com>  Thu, 30 May 2002 10:38:39 -0600

bind9 (1:9.2.0-6) unstable; urgency=low

  * move to US main!  Yippee!  Closes: #123969
  * add info to README.Debian about 2.5 kernels vs --disable-linux-caps

 -- Bdale Garbee <bdale@gag.com>  Sat, 23 Mar 2002 00:18:05 -0700

bind9 (1:9.2.0-5) unstable; urgency=medium

  * clean up various issues in the rules file
  * make bind9-host conflict/replace old dnsutils as host does, otherwise we
    can have problems upgrading from potato to woody, closes: #136686
  * use /dev/urandom for rndc-confgen in postinst, it should be good enough for
    this purpose, and will keep the postinst from blocking arbitrarily.
    closes: #130372
  * add fresh pointers to chroot howto to README.Debian, closes: #135774

 -- Bdale Garbee <bdale@gag.com>  Sun,  3 Mar 2002 16:47:12 -0700

bind9 (1:9.2.0-4) unstable; urgency=low

  * bind9-host needs to conflict with host, closes: #127395

 -- Bdale Garbee <bdale@gag.com>  Tue,  1 Jan 2002 20:12:14 -0700

bind9 (1:9.2.0-3) unstable; urgency=low

  * force removal of old diverted files, closes: #126236
  * change priority of liblwres1 from optional to standard per ftp admins
  * add a bind9-host package so that the 'host' provided with the BIND 9.X
    source tree can be an alternative to the aging NIKHEF version packaged
    separately.  Update dnsutils dependencies to depend on one of the two,
    with preference to this one since it has fewer bugs (but fewer features,
    too).

 -- Bdale Garbee <bdale@gag.com>  Sun, 23 Dec 2001 00:59:15 -0700

bind9 (1:9.2.0-2) unstable; urgency=medium

  * change rc.d links to ensure daemon starts before and stops after other
    daemons that may fail if name service is not working (bug was filed 
    against 8.X bind packages, but is just as relevant here!)
  * use rndc for daemon shutdown instead of start-stop-daemon, closes: #111935
  * add a postinst to dnsutils to remove any lingering diversions from old 
    dnsutils packages, closes: #122227
  * not much point in delivering zone2ldap.1 since we aren't delivering 
    zone2ldap right now (though we might someday?), closes: #124058
  * be more verbose with shared library descriptions, closes: #123426, #123428
  * 9.2.0 added a new rndc.key file that both named and rndc will read to 
    obtain a shared key, and rndc-confgen will easily create this file with 
    a unique-per-system key.  Modify named.conf and remove rndc.conf
    to take advantage of this mechanism and stop delivering a pre-determined 
    static key to all Debian systems (which has been a mild security risk).  
    Create the key in postinst if the key file doesn't already exist, and 
    remove the file in postrm if purging.
    Closes: #86718, #87208

 -- Bdale Garbee <bdale@gag.com>  Fri, 21 Dec 2001 04:04:30 -0700

bind9 (1:9.2.0-1) unstable; urgency=low

  * new upstream version, closes: #108243, #112266, #114250, #119506, #120657
  * /etc/bind/rndc.conf is now a conffile
  * minor hacks to the README.Debian since the chroot instructions it points
    to are 8.X specific, part of addressing bug 111868.
  * libomapi is gone, replaced by libisccc and libisccfg
  * a few lintian-motivated cosmetic cleanups
  * lose task-dns-server meta package, since tasksel doesn't need it now
  * dig problem not reproducible in this version, closes: #89526
  * named-checkconf now uses $sysconfdir, closes: #107835
  * no longer deliver man pages for contributed binaries we're not including
    in dnsutils, closes: #108220
  * fix section in nslookup man page, though that's the least of the man
    page's problems...  glitch reported is unreproducible
    closes: #103630, #120946
  * update libbind-dev README.Debian, closes: #121050

 -- Bdale Garbee <bdale@gag.com>  Tue, 27 Nov 2001 01:41:00 -0700

bind9 (1:9.1.3-1) unstable; urgency=low

  * new upstream version, closes: #96483, #99824, #100647, #101568, #103429
  * update config.sub/guess for hppa/ia64 support
  * small init.d patch from Marco d'Itri to ease adding options on invocation
  * stop having bind9-doc conflict/replace bind-doc since they don't really
    conflict and there's no reason to prevent having both installed at the
    same time, closes: #90994
  * the CHANGES file documents fixes since 9.1.1 that probably cured the
    reported assertion failure.  If it turns out that I'm wrong, the bug can
    be re-opened or a new one filed.  I can't see any way to reproduce the bug 
    in a test case here.  Closes: #99352
  * have libbind-dev depend on the runtime library packages it delivers 
    compile-time symlinks for, closes: #100898, #103855
  * fix lwres man pages to source man3/* instead of * so all the page content
    can actually be found, closes: #85450, #103865

 -- Bdale Garbee <bdale@gag.com>  Mon,  9 Jul 2001 11:30:39 -0600

bind9 (1:9.1.1-1) unstable; urgency=low

  * new upstream release
  * update build-depends for libssl-dev
  * add build-depends on bison, closes: #90150, #90752, #90159
  * split up libbind0 since libdns is changing so numbers
  * downgrade rblcheck from a depends to a suggests, closes: #90783
  * bind9 mkdep creates files in the current working directory, closes: #58353

 -- Bdale Garbee <bdale@gag.com>  Wed, 25 Apr 2001 22:53:21 -0600

bind9 (1:9.1.0-3) unstable; urgency=low

  * merge patch from Zack Weinberg that solves compilation problem, and 
    reduces the memory footprint of applications by making configure.in
    smarter.  Closes: #86776, #86910
  * the bind-doc package includes all relevant documentation from the bind9
    source tree, including HTML content in /usr/share/doc/bind9-doc/arm,
    closes: #85718
  * default named.conf and rndc.conf to not world-readable.  This is an
    interim step towards addressing the concerns about security raised by 
    bugs 86718 and closes: #86836  A better long-term solution would be for
    rndc.conf to allow includes, so that both named.conf and rndc.conf could
    include a key file built on the fly during installation while themselves
    retaining conffile status.  The required functionality has been requested
    of the bind9 upstream, this will limit vulnerability in the meantime.
  * add replaces logic to the dnsutils package to avoid complaints about the
    delivery of nsupdate.8.gz, closes: #86759
  * move a couple of man pages back from dnsutils to bind9 that really belong
    there.  sigh.

 -- Bdale Garbee <bdale@gag.com>  Thu, 22 Feb 2001 16:39:02 -0700

bind9 (1:9.1.0-2) unstable; urgency=low

  * merge patch from Luca Filipozzi <lfilipoz@debian.org> - thanks!
    + bind9:  ships with a working rndc.conf file, closes: #84572
    + bind9:  init.d calls rndc rather than ndc on reload, closes: #85481
    + bind9:  named.conf ships with 'key' and 'control' sections
    + bind9:  correctly creates /var/cache/bind, closes: #85457
    + lwresd: lwresd is split off into its own package, closes: #85627
  * nsupdate is delivered by the dnsutils package, but the (wrong) man page 
    was accidentally also included in the bind9 package, closes: #85717
  * freshen config.sub and config.guess for ia64 and hppa support

 -- Bdale Garbee <bdale@gag.com>  Mon, 12 Feb 2001 23:43:55 -0700

bind9 (1:9.1.0-1) unstable; urgency=low

  * Initial packaging of BIND 9.1.0.  Must use epoch so that meta packages 
    retain their sequencing from the bind 8 package version stream.
  * snarf a couple of man pages from the 8.X tree for now

 -- Bdale Garbee <bdale@gag.com>  Thu,  1 Feb 2001 16:30:35 -0700