File: changelog

package info (click to toggle)
ntp 1%3A4.2.8p10%2Bdfsg-3%2Bdeb9u2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 32,104 kB
  • sloc: ansic: 237,718; sh: 6,873; makefile: 3,381; perl: 2,645; python: 1,473; yacc: 1,413; ruby: 816; awk: 417; sed: 47; asm: 37
file content (1994 lines) | stat: -rw-r--r-- 80,109 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
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
ntp (1:4.2.8p10+dfsg-3+deb9u2) stretch; urgency=medium

  * Cherry-pick patch from upstream to increase stack size.
    Thanks to Frederic Endner-Dühr for testing (Closes: #887385)
  * Add d/gbp.conf for stretch branch

 -- Bernhard Schmidt <berni@debian.org>  Thu, 15 Feb 2018 12:45:57 +0100

ntp (1:4.2.8p10+dfsg-3+deb9u1) stretch; urgency=medium

  * Build and install /usr/bin/sntp (Closes: #793837)
    sntp (the successor of ntpdate as general purpose NTP client) has
    been accidentally included in Jessie, dropped after Jessie,
    reintroduced too late for Stretch and is now included in Buster.
    Fix regression by building sntp and shipping it in ntp:any

 -- Bernhard Schmidt <berni@debian.org>  Tue, 08 Aug 2017 22:44:37 +0200

ntp (1:4.2.8p10+dfsg-3) unstable; urgency=medium

  * No-change upload to supersede accidental upload of experimental
    to unstable

 -- Bernhard Schmidt <berni@debian.org>  Sun, 07 May 2017 23:04:52 +0200

ntp (1:4.2.8p10+dfsg-2) unstable; urgency=medium

  * Support pool statement in ntpdate-debian (Closes: #854432, #823120)
  * Point Vcs-* to pkg-ntp git repository
  * Add Bernhard Schmidt to Uploaders

 -- Bernhard Schmidt <berni@debian.org>  Sun, 07 May 2017 14:49:22 +0200

ntp (1:4.2.8p10+dfsg-1) unstable; urgency=high

  * New upstream version
    - Fix security issues
  * Update openssl-disable-check.patch

 -- Kurt Roeckx <kurt@roeckx.be>  Wed, 22 Mar 2017 21:53:40 +0100

ntp (1:4.2.8p9+dfsg-2.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Force program locations to use 'legacy' defaults (Closes: #851803)

 -- Daniel Silverstone <dsilvers@digital-scurf.org>  Sat, 28 Jan 2017 11:58:18 +0000

ntp (1:4.2.8p9+dfsg-2) unstable; urgency=medium

  * CVE-2016-0727: NTP statsdir cleanup cronjob insecure (Closes: #839998)
    Patch by Salvatore Bonaccorso <carnil@debian.org>. Patch was dropped
    in 1:4.2.8p9+dfsg-1.

 -- Kurt Roeckx <kurt@roeckx.be>  Mon, 21 Nov 2016 20:09:17 +0100

ntp (1:4.2.8p9+dfsg-1) unstable; urgency=medium

  * New usptream version
    - Adds OpenSSL 1.1.0 support (Closes: #828461)
    - Fix CVE-2016-9311
    - Fix CVE-2016-9310
    - Fix CVE-2016-7427
    - Fix CVE-2016-7428
    - Fix CVE-2016-9312
    - Fix CVE-2016-7431
    - Fix CVE-2016-7434
    - Fix CVE-2016-7429
    - Fix CVE-2016-7426
    - Fix CVE-2016-7433
  * Update watch for new version specific URL. Patch from 
    Nicholas Luedtke <nicholas.luedtke@hpe.com> (Closes: #823269)
  * Make ntpdate-debian use the DHCP servers. Patch from 
    Christian Ehrhardt <christian.ehrhardt@canonical.com> (Closes: #617965)
  * Move dhcp temporary files from /var/lib to /run. (Closes: #600661)
  * Wait for ntp to die in the stop target. Patch from Christoph Biedl
    <debian.axhn@manchmal.in-ulm.de> (Closes: #802040)

 -- Kurt Roeckx <kurt@roeckx.be>  Mon, 21 Nov 2016 19:30:02 +0100

ntp (1:4.2.8p8+dfsg-1) unstable; urgency=high

  * New usptream version
    - Fixes security issues

 -- Kurt Roeckx <kurt@roeckx.be>  Tue, 07 Jun 2016 22:29:17 +0200

ntp (1:4.2.8p7+dfsg-4) unstable; urgency=high

  * Update apparmor-profiles-extra again now we now in which version they
    removed it.
  * Call dh_apparmor.  Add build-depends on dh-apparmor.  (Closes: #824767)

 -- Kurt Roeckx <kurt@roeckx.be>  Thu, 19 May 2016 20:44:08 +0200

ntp (1:4.2.8p7+dfsg-3) unstable; urgency=medium

  [ Hideki Yamane ]
  * Properly enable Apparmor profile from Ubuntu (Closes: #823024)
    Patch from Hideki Yamane <henrich@debian.or.jp>
  * Update replace/breaks versions of apparmor-profiles-extra
    (Closes: #805183)

 -- Kurt Roeckx <kurt@roeckx.be>  Sat, 30 Apr 2016 12:14:14 +0200

ntp (1:4.2.8p7+dfsg-2) unstable; urgency=medium

  * Only build-depend on pps-tools on Linux

 -- Kurt Roeckx <kurt@roeckx.be>  Fri, 29 Apr 2016 18:32:39 +0200

ntp (1:4.2.8p7+dfsg-1) unstable; urgency=medium

  * New upstream version
    This might fix a few CVEs.
  * Drop CVE-2015-5300.patch and CVE-2015-7704.patch now claimed to
    be fixed upstream.
  * Remove Bdale from uploaders (Closes: #804377)
  * Remove section about patching the kernel for PPS support, it's already
    included in the kernel (Closes: #811171)
  * Pass --build and --host to configure. (Closes: #315935)
    Patch from Helmut Grohne <helmut@subdivi.de>
  * Missing Build-Depends libopts25-dev (which is not implicit in autogen,
    because autogen is M-A:foreign).
    Patch from Helmut Grohne <helmut@subdivi.de>
  * Fix ntp.dhcp to also check for pool and better handle spaces and tabs.
    (Closes: #809344, #806676)
  * Change watch file to use https (Closes: #793926)
  * Hook into NetworkManager to update ntp servers from dhcp. (Closes:
    #778415).  Patch from Helmut Grohne <helmut@subdivi.de>
  * Build Depend on pps-tools (Closes: #691672)
  * Don't run ntpdate when method is none.  Patch from
    Dmitry Borisyuk <q1werty@i.com.ua>
  * Also use flock to in the ntp init script, and update the lock file
    location.  (Closes: #806556)
  * Move apparmor profile from apparmor-profiles-extra. Add Breaks/Replaces.
    (Closes: #805183)

 -- Kurt Roeckx <kurt@roeckx.be>  Sun, 24 Jan 2016 22:57:40 +0100

ntp (1:4.2.8p4+dfsg-3) unstable; urgency=medium

  * Remove rlimit memlock from default config file, the default is now
    to no longer lock.  (Closes: #793745)
  * Really properly fix CVE-2015-7704, thanks to Miroslav Lichvar
    <mlichvar@redhat.com>

 -- Kurt Roeckx <kurt@roeckx.be>  Thu, 22 Oct 2015 20:44:44 +0200

ntp (1:4.2.8p4+dfsg-2) unstable; urgency=medium

  * Change rlimit memlock default to -1.  (Closes: #802638)
  * Fix CVE-2015-5300
  * Properly fix CVE-2015-7704

 -- Kurt Roeckx <kurt@roeckx.be>  Thu, 22 Oct 2015 19:06:16 +0200

ntp (1:4.2.8p4+dfsg-1) unstable; urgency=high

  * New upstream release.
    - Fixes CVE-2015-7850 CVE-2015-7704 CVE-2015-7701 CVE-2015-5196
      CVE-2015-7848 CVE-2015-7849 CVE-2015-7854 CVE-2015-7852 CVE-2015-7853
      CVE-2015-7851 CVE-2015-7705 CVE-2015-7855 CVE-2015-7871
    - Drop format-security.patch, applied upstream.

 -- Kurt Roeckx <kurt@roeckx.be>  Wed, 21 Oct 2015 20:00:31 +0200

ntp (1:4.2.8p3+dfsg-1) unstable; urgency=medium

  * New upstream version
   - Patches applied upstream: ntpd-linux-caps-inheritable.patch,
     ntp-4.2.6p5-cve-2014-9293.patch, ntp-4.2.6p5-cve-2014-9294.patch,
     ntp-4.2.6p5-cve-2014-9295.patch, ntp-4.2.6p5-cve-2014-9296.patch,
     CVE-2014-9297.patch, CVE-2014-9298.patch, CVE-2015-1798.patch,
     CVE-2015-1799.patch, bug-2797.patch, ntpd-ni-maxhost.patch,
     format-security.patch, sntp-manpage.patch, openssl-headers.patch
  * Remove autotools.patch since we run dh_autoreconf
  * Fix a new issue reported by -Werror=format-security
  * Adjust location in source file for ntpsweep
  * Upstream doesn't ship ntpsnmpd.1 anymore, so don't remove it
  * Update the default config to use the new pool method:
    - Use pool instead of server
    - Add restrict source line so servers can be added and removed
    - Add an rlimit memlock so that ntpd actually starts
  * Change the default restrict line to have a rate limit
  * Remove empty directory /usr/libexec
  * Prevent rpaths being set for all binaries
  * Install files to debian/tmp and use dh_install instead of dh_movefiles

 -- Kurt Roeckx <kurt@roeckx.be>  Sat, 25 Jul 2015 16:37:34 +0200

ntp (1:4.2.6.p5+dfsg-8) UNRELEASED; urgency=low

  * Fix Lintian warning vcs-field-not-canonical
  * Update standards version
  * Remove obsolete "start" option to update-rc.d (closes: #755936)
  * Use flock instead of lockfile-progs for ntpdate.if-up (closes:
    #731976); change lock file location to /run/lock
  * Allow for multiple spaces or tabs for statsdir in /etc/ntp.conf
    (closes: #749761)

 -- Peter Eisentraut <petere@debian.org>  Wed, 01 Oct 2014 00:41:49 -0400

ntp (1:4.2.6.p5+dfsg-7) unstable; urgency=medium

  * Fix endless loop and non-random key generation using
    ntp-keygen on big endian machines.

 -- Kurt Roeckx <kurt@roeckx.be>  Fri, 10 Apr 2015 21:01:32 +0200

ntp (1:4.2.6.p5+dfsg-6) unstable; urgency=high

  * Fix CVE-2015-1798 and CVE-2015-1799 (Closes: #782095)

 -- Kurt Roeckx <kurt@roeckx.be>  Fri, 10 Apr 2015 20:08:24 +0200

ntp (1:4.2.6.p5+dfsg-5) unstable; urgency=high

  * Add missing fix for CVE-2014-9297

 -- Kurt Roeckx <kurt@roeckx.be>  Sat, 07 Feb 2015 12:20:44 +0100

ntp (1:4.2.6.p5+dfsg-4) unstable; urgency=medium

  * Fix CVE-2014-9297
  * Fix CVE-2014-9298

 -- Kurt Roeckx <kurt@roeckx.be>  Thu, 05 Feb 2015 00:27:36 +0100

ntp (1:4.2.6.p5+dfsg-3.2) unstable; urgency=medium

  * Non-maintainer upload.
  * Apply fixes for security updates (Closes: 773576)
    - cve-2014-9293
    - cve-2014-9294
    - cve-2014-9295
    - cve-2014-9296

 -- Noah Meyerhans <noahm@debian.org>  Sun, 21 Dec 2014 12:01:50 -0800

ntp (1:4.2.6.p5+dfsg-3.1) unstable; urgency=low

  * Non-maintainer upload.
  * Use dh-autoreconf to ensure configurey is updated for new architectures

 -- Wookey <wookey@debian.org>  Tue, 15 Jul 2014 11:54:21 +0800

ntp (1:4.2.6.p5+dfsg-3) unstable; urgency=low

  * Look for <openssl/opensslv.h> rather than <openssl/opensslconf.h>, which
    is due to move to a different location in order to support multiarch.
    Patch by Colin Watson <cjwatson@ubuntu.com> (Closes: #696390)

 -- Kurt Roeckx <kurt@roeckx.be>  Mon, 20 May 2013 16:14:07 +0200

ntp (1:4.2.6.p5+dfsg-2) unstable; urgency=medium

  * Re-enable crypto support by pointing openssl libdir to multiarch dir.
    Also increase libssl-dev build dependency to the first multiarch
    version. (closes: #670662)

 -- Peter Eisentraut <petere@debian.org>  Sat, 12 May 2012 12:04:06 +0300

ntp (1:4.2.6.p5+dfsg-1) unstable; urgency=low

  * New upstream release (closes: #644673)
  * Updated instructions on generating autotools.patch
  * Updated standards version

 -- Peter Eisentraut <petere@debian.org>  Mon, 27 Feb 2012 13:55:56 +0200

ntp (1:4.2.6.p3+dfsg-3) unstable; urgency=medium

  * Update format-security.patch to include kfreebsd-specific fixes
    (closes: #653771)

 -- Peter Eisentraut <petere@debian.org>  Thu, 05 Jan 2012 19:37:28 +0200

ntp (1:4.2.6.p3+dfsg-2) unstable; urgency=low

  * Use architecture wildcard for libcap2-dev build dependency, removing
    type-handing dependency (closes: #528440, #587871)
  * Updated standards version
  * Get build flags from dpkg-buildflags, and fix the resulting
    -Wformat-security errors using patch from Colin Watson (closes:
    #542721, #627403)
  * Add -Wl,--as-needed to LDFLAGS, which drops the dependency of ntpdate
    on libcap2
  * Add sntp-manpage.patch to fix some errors in sntp man page pointed out
    by lintian
  * Re-remove tickadj.  The previous method of achieving this by tweaking
    configure cache variables apparently broke at some point, so this time
    do it more directly.
  * Explicitly disable building ntpsnmpd and remove man page (closes:
    #608542; see also #622819)
  * ntpdate-debian: Improve parsing of ntp.conf (closes: #606349)
  * Add descriptions of -4/-6 options to ntpd man page (closes: #613349)
  * Update options list on ntptrace man page to match reality (closes:
    #593417)
  * Add build-arch and build-indep debian/rules targets, per lintian
  * Create ntp user and group separately, to handle the case where the
    user already exists but not the group (closes: #624275)
  * Don't ignore errors from adduser.  If the system user or group already
    exist, this is ignored anyway.  Anything else we want to know about.
  * Generalize ntp.cron.daily to cover all possible filegen stats files
    (closes: #644120)

 -- Peter Eisentraut <petere@debian.org>  Sat, 17 Dec 2011 19:00:10 +0200

ntp (1:4.2.6.p3+dfsg-1) unstable; urgency=low

  * New upstream version
    - Require newer autogen version
  * Include sntp in source, it got rewritting and licensed changed.
  * Re-add neoclock4x driver, license got changed.
  * Drop nanokernel-status.patch.  2.6.26 was part of lenny, so everybody
    really should have nanokernel support now.  The patch also didn't
    actually enable the nano kernel.
  * Drop mod_nano.patch, libc now provides the proper defines.
  * We now build against a libc that has NTP_API 4 support, which means
    that we get TAI offset support.

 -- Kurt Roeckx <kurt@roeckx.be>  Fri, 03 Jun 2011 16:39:02 +0200

ntp (1:4.2.6.p2+dfsg-1) unstable; urgency=low

  [ Peter Eisentraut ]
  * Update command options section in ntp.conf(5) man page, drop "dynamic"
    option (closes: #553976, #439734)
  * Document ntpd -I option and ntp.conf interface command (closes: #506389)
  * Fix type in ntpdate man page (closes: #566621)
  * Added explanation of options to ntptrace man page (closes: #558289)
  * Removed no longer needed build conflict against libreadline-dev

  [ Kurt Roeckx ]
  * New upstream version.
    - Fixes problem with ipv6 multicast (Closes: #584927)
  * Move dhcp exit hooks from /etc/dhcp3/dhclient-enter-hooks.d to
    /etc/dhcp/dhclient-enter-hooks.d.  Add dpkg-maintscript-helper
    to maintainer scripts to move them, and add a Breaks on
    dhcp3-client (<< 4.1.0-1) (Closes: #585054, #585055)
  * Remove ntp's Replaces on logcheck-database, we don't ship log
    logcheck entries anymore for ntp.

 -- Kurt Roeckx <kurt@roeckx.be>  Tue, 13 Jul 2010 20:33:47 +0200

ntp (1:4.2.6.p1+dfsg-1) unstable; urgency=low

  * New upstream version
    - They no longer ship arlib, adjust dfsg.patch.
    - Drop kfreebsd.patch, applied upstream
    - Update patches for upstream changes.
  * Remove the obsolete config files:

    for ntp:
    - /etc/logcheck/ignore.d.server/ntp, removed in 1:4.2.6+dfsg-1
    - /etc/dhcp3/dhclient-enter-hooks.d/ntp, replaced by exit hooks in
      1:4.2.4p4+dfsg-3
    - /etc/network/if-up.d/ntp, removed in 1:4.2.4p0+dfsg-1

    for ntpdate:
    - /etc/dhcp3/dhclient-enter-hooks.d/ntpdate, replaced by exit hooks in
      1:4.2.4p4+dfsg-3

    Use dpkg 1.15.7.2's dpkg-maintscript-helper.  This needs
    a Pre-Depends to work, else it's never going to be removed.
    (Closes: #569530)
  * Add "Depends: ${misc:Depends}" to ntp-doc.

 -- Kurt Roeckx <kurt@roeckx.be>  Mon, 24 May 2010 11:09:51 +0200

ntp (1:4.2.6+dfsg-1) unstable; urgency=low

  * New upstream version
    - They no longer use the built in md5 with unclear license: adjust
      dfsg.sh and dfsg.patch.
    - Location of the html pages has changed location: adjust dfsg.sh
    - Remove ntptimeval.patch and ntptrace-getopt.patch, applied upstream.
    - Change libedit.patch and call configure with
      --with-lineeditlibs=edit instead.
    - Update nanokernel-status.patch to also do it for the new
      direct_freq() function.
    - includes.diff: Stop including ntp_refclock.h, since it breaks things.
    - Upstream no longer provides an ntpdsim.1 manpage, so don't try to
      to remove it.
  * Use the system libopts instead of the internal copy: add build-dependency
    on autogen, call configure with --disable-local-libopts.  There is also
    no need anymore to remove the usr/lib dir.
  * Remove ntp_gettime.patch, it wasn't used, and we have libc calls that
    wrap adjtimex now anyway.
  * Remove the doc.patch, it's either just wrong or more confusing than the
    original text.
  * Merge the ntpd-char-fix.patch into ntpd-ni-maxhost.patch
  * Fix kfreebsd.patch's comment to be about the right patch.
  * Add comment to dfsg.patch
  * Update autotools.patch's comment on how to recreate it.
  * Split ntpd-linux-caps.patch in ntpd-linux-caps-runtime.patch and
    ntpd-linux-caps-inheritable.patch and add comments
  * Don't run init script to stop ntpd, just let sendsigs/killprocs deal
    with it.  (Closes: #540694)
  * Compile with --enable-ntp-signd to enable mssntp for use with samba
    (Closes: #562065)
  * Remove ntp.logcheck.ignore.server, none of those messages are
    send to syslog now.  (Closes: #498992)

 -- Kurt Roeckx <kurt@roeckx.be>  Sat, 26 Dec 2009 14:12:22 +0100

ntp (1:4.2.4p8+dfsg-1) unstable; urgency=high

  * New upstream release.
    - Fixes DoS with mode 7 packets (CVE-2009-3563) (Closes: #560074)

 -- Kurt Roeckx <kurt@roeckx.be>  Tue, 08 Dec 2009 21:41:51 +0100

ntp (1:4.2.4p7+dfsg-4) unstable; urgency=low

  * Use uname -s instead of dpkg-architecture to found the kernel we're
    running on.  dpkg-architecture is part of dpkg-dev. (Closes: #558145)
  * Make the package fail to build on hurd since it does not provided
    the needed system calls for ntpd to work.

 -- Kurt Roeckx <kurt@roeckx.be>  Thu, 26 Nov 2009 22:16:37 +0100

ntp (1:4.2.4p7+dfsg-3) unstable; urgency=low

  * Don't pass --enable-linuxcaps to configure anymore.  It now detects it
    itself when it's available, and it breaks on non-Linux systems.
  * Configure didn't know what to set certain options to on kfreebsd.
    Patch by Aurelien Jarno.  (Closes: #522696)
  * Running as user ntp does not work on kfreebsd because it doesn't support
    capabilities.  Adjust the init script to start as root.

 -- Kurt Roeckx <kurt@roeckx.be>  Wed, 25 Nov 2009 20:03:58 +0100

ntp (1:4.2.4p7+dfsg-2) unstable; urgency=low

  * Refresh libedit patch because it's fuzzy and fails to apply on
    the buildds.

 -- Kurt Roeckx <kurt@roeckx.be>  Sat, 21 Nov 2009 18:01:36 +0000

ntp (1:4.2.4p7+dfsg-1) unstable; urgency=low

  [ Peter Eisentraut ]
  * Fixed FTBFS because of missing MOD_NANO definition (closes: #552882)
  * Changed source format to 3.0 (quilt)

  [ Kurt Roeckx ]
  * New upstream version.
    - Remove patches for CVE-2009-1252.patch and CVE-2009-0159.patch,
      applied upstream
    - Regenerate patches to apply to the current version.
  * Detect that we run a kernel with nano support or not.  Otherwise
    it breaks when running on kernels older than 2.6.26.

 -- Kurt Roeckx <kurt@roeckx.be>  Sat, 21 Nov 2009 17:27:11 +0100

ntp (1:4.2.4p6+dfsg-2) unstable; urgency=medium

  * Fixed typo in ntpdate man page (closes: #526086)
  * Updated standards version
  * Moved .dhcp version of configuration files to /var/lib/ntp and 
    /var/lib/ntpdate (closes: #524035)
  * Cleaned up man pages to satisfy lintian's hyphen-used-as-minus-sign
    complaint
  * Fixed limited buffer overflow in ntpq (CVE-2009-0159) (closes: #525373)
  * Fixed stack buffer overflow in ntpd (CVE-2009-1252) (closes: #525373)
  * Use new status_of_proc function to report status in ntp init script
  * Updated the config.guess/sub handling as recommended by autotools-dev to
    not clutter the diff, added autotools-dev to build dependencies

 -- Peter Eisentraut <petere@debian.org>  Fri, 12 Jun 2009 17:24:22 +0300

ntp (1:4.2.4p6+dfsg-1) unstable; urgency=low

  * New upstream release
    - Updated ntpdate-ipv6.patch, autotools.patch
    - Obsoletes no-ipv6-fix.patch, CVE-2009-0021.patch
  * Switched build dependency from libcap-dev to libcap2-dev (closes: #474639)
  * Added -D_GNU_SOURCE to CPPFLAGS, to support glibc 2.8 (closes: #507806)
  * Recognize "adjust" in ntpdate logcheck rules (closes: #493907)
  * Removed "dynamic" key word from default ntp.conf, because this is now 
    obsolete and the default

 -- Peter Eisentraut <petere@debian.org>  Wed, 18 Feb 2009 20:24:14 +0200

ntp (1:4.2.4p4+dfsg-8) unstable; urgency=low

  * It did not properly check the return value of EVP_VerifyFinal
    which results in an malformed DSA signature being treated as
    a good signature rather than as an error.  (CVE-2009-0021)

 -- Kurt Roeckx <kurt@roeckx.be>  Mon, 05 Jan 2009 21:10:03 +0100

ntp (1:4.2.4p4+dfsg-7) unstable; urgency=low

  * Added support for numeric IPv6 address in ntpdate-debian (closes: #489712)
  * Updated standards version
  * Added PATH to ntpdate.if-up (closes: #490061)

 -- Peter Eisentraut <petere@debian.org>  Wed, 16 Jul 2008 14:09:41 +0200

ntp (1:4.2.4p4+dfsg-6) unstable; urgency=low

  * Put back accidentally removed /etc/defaults/ntpdate (closes: #482605)
  * Updated Homepage (closes: #482628)
  * Use libedit instead of libreadline, added libedit.patch (closes: #448408)
  * While updating autotools.patch, added description how it is generated
    (closes: #446756)
  * Since the scripts summary and plot_summary are not installed in a binary 
    package, drop their mention from the copyright file, thus deconfusing 
    lintian
  * Avoid timeout message from ntpdate.if-up when ntpdate package was removed 
    but not purged (closes: #481049)

 -- Peter Eisentraut <petere@debian.org>  Mon, 16 Jun 2008 12:55:54 +0200

ntp (1:4.2.4p4+dfsg-5) unstable; urgency=low

  * Removed mentions of -d and -D options from ntpd man page, because the 
    Debian package does not support these options (closes: #479015)
  * Ignore errors from ntpdate-debian call in ntpdate.if-up (closes: #478655)

 -- Peter Eisentraut <petere@debian.org>  Fri, 09 May 2008 10:28:24 +0200

ntp (1:4.2.4p4+dfsg-4) unstable; urgency=low

  * Small ntp.conf man page fix (patch by Justin Pryzby) (closes: #450721)
  * Removed incorrect mention of -m option on ntpd man page (closes: #468348)
  * Corrected doc-base section for ntp-doc
  * Added build conflicts against libavahi-compat-libdnssd-dev, so that that 
    feature isn't accidentally enabled (closes: #462597)
  * Added build conflicts against libwww-dev, libwww-ssl-dev, so we don't 
    accidentally link with their libmd5 (closes: #462597)
  * Use lockfile-progs to ensure that only one ntpdate.ifup is running at a 
    time (closes: #471358)
  * Also use lockfile-progs to ensure that ntpd does not start while
    ntpdate.ifup is running (closes: #436029)
  * Updated ntp.conf man page from HTML (closes: #466046)
  * Changed control fields XS-Vcs-* to Vcs-*, and added trunk path
  * Removed code used for sarge to etch transition
  * Changed to Debhelper level 6
  * Use dh_installifupdown
  * Removed tickadj program from installation.  It is quite unportable, the
    documentation is inaccurate, and adjtimex could be used instead.

 -- Peter Eisentraut <petere@debian.org>  Tue, 29 Apr 2008 11:19:54 +0200

ntp (1:4.2.4p4+dfsg-3) unstable; urgency=low

  * Various man page and NEWS fixes (patches by Justin Pryzby and Vincent
    Lefevre) (closes: #439726, #450721)
  * Run DHCP hooks as exit hooks instead of enter hooks (closes: #408219)
  * Use try-restart to restart ntpd after DHCP event
  * Wait for /usr to appear when running ntpdate on network events
    (closes: #448462)
  * Updated standards version
  * Updated ntpd man page from HTML (closes: #444633)
  * Moved configuration file description from ntpd(8) to ntp.conf(5)
  * Made NTPDATE_USE_NTP_CONF work with openntpd (initial patch by Benoît
    Dejean) (closes: #420692)
  * Added documentary comments to ntp.conf, reformatted the file a bit
    (closes: #416818)
  * Fixed whitespace in doc-base, pointed out by lintian
  * Removed ntpdate-debug.patch; debug behavior is now again consistent with
    upstream (closes: #451525)
  * Dropped some useless documentation files

 -- Peter Eisentraut <petere@debian.org>  Sun, 13 Jan 2008 12:18:13 +0100

ntp (1:4.2.4p4+dfsg-2) unstable; urgency=low

  * Disable checking of openssl library version.  
    (Closes: #446710, #446711, #447431)
    Patch from Steve Langasek <vorlon@debian.org>

 -- Kurt Roeckx <kurt@roeckx.be>  Tue, 23 Oct 2007 18:39:47 +0200

ntp (1:4.2.4p4+dfsg-1) unstable; urgency=medium

  * New upstream release
    - Updated patches
    - Rebuilt for new OpenSSL version (closes: #446710)
  * Removed obsolete build dependency lynx (closes: #446722)
  * Added Homepage control field
  * Don't ignore errors from make distclean, as per lintian check
  * Downgraded perl dependency to Recommends (closes: #324559, #416875)
  * Removed useless directory /usr/lib/ from ntp package

 -- Peter Eisentraut <petere@debian.org>  Mon, 15 Oct 2007 13:59:34 +0200

ntp (1:4.2.4p3+dfsg-1) unstable; urgency=low

  [ Kurt Roeckx ]
  * New upstream release

  [ Peter Eisentraut ]
  * Removed mentions of -d and -D options from ntpd and ntpq man pages
    (closes: #427634, #428241)
  * Added reference from ntpdate man page to ntpdate-debian
    (closes: #427981)

 -- Kurt Roeckx <kurt@roeckx.be>  Mon, 13 Aug 2007 15:58:08 +0000

ntp (1:4.2.4p0+dfsg-1) unstable; urgency=low

  [ Peter Eisentraut ]
  * New upstream release
    - Updated patches
    - ntpd usage message now shows debug option only if actually available
      (closes: #327347)
    - Dynamic interface scanning should work now
      (closes: #253597, #317250, #399905, #407216, #417468, #422861)
  * Added XS-Vcs-Browser field
  * Made ntpdate-debian handle empty ntp.conf better (closes: #413692)
  * Removed ntp-keygen-option.patch; options parsing has changed
  * Removed new upstream man pages, which are currently not as nice as the
    ones we already have.
  * Removed transition packages ntp-simple and ntp-refclock
  * Updated information about pool.ntp.org in ntp.conf
  * Disabled statsdir by default (closes: #316669)
  * Added "dynamic" option to default server entries in ntp.conf
  * Removed ntp.ifup; supplanted by dynamic interface rescanning
    (closes: #422860)

  [ Kurt Roeckx ]
  * Change ntpd-linux-caps.patch to also request CAP_NET_BIND_SERVICE.

 -- Peter Eisentraut <petere@debian.org>  Thu, 10 May 2007 14:52:48 +0200

ntp (1:4.2.2.p4+dfsg-2) unstable; urgency=low

  [ Peter Eisentraut ]
  * Removed obsolete logcheck entry
  * Improved formatting and fixed random whitespace in cron job

  [ Kurt Roeckx ]
  * Set a default restriction list for ipv6 too. (Closes: #411809)
  * Stop using dhcp provided servers on release and stop.  Thanks
    to Torne <torne@wolfpuppy.org.uk> (Closes: #411200)
  * Don't use the nomodify option for localhost.  Modification
    is only allowed when authenticated, so having the nomodify
    option doesn't buy us anything.  It just prevents the resolver
    slave process who does authenticate itself from properly working
    (Closes: #385334, #401847)
  * Make sure that we disable ntp-server for everybody. (Closes: #410383)

 -- Kurt Roeckx <kurt@roeckx.be>  Sun,  4 Mar 2007 13:01:11 +0000

ntp (1:4.2.2.p4+dfsg-1) unstable; urgency=low

  * New upstream release
    - Fixes off-by-one error in compat getnameinfo() (closes: #387627)
    - Updated autotools.patch
  * Fixed watch file for mangled version number
  * Split out configure.ac hunk from autotools.patch into logical pieces
    - Removed error cache disabling code, which was nonfunctional from the
      start
  * Added web sites to package descriptions

 -- Peter Eisentraut <petere@debian.org>  Sat, 21 Oct 2006 16:34:35 +0200

ntp (1:4.2.2.p3+dfsg-1) unstable; urgency=medium

  * New upstream release
    - Updated copyright file
    - Updated autotools.patch, dfsg.patch
  * Check for existence of ntp user in init script only in start action
  * Handle failure to stop daemon in ntp.prerm (closes: #391352)
  * Added watch file
  * Added XS-X-Vcs-Svn field
  * Fixes for Hurd build (closes: #387665)
    (patches by Marc Dequènes and Kurt Roeckx)
  * Use server names sent by DHCP server if available (closes: #268328)
  * Added real man pages, transcribed from HTML documentation
    (closes: #84979, #201529, #343123, #388503)
  * Use dh_perl to calculate Perl dependencies
  * Split code.patch into more logical pieces
  * Removed obsolete msyslog.c patch
  * Removed obsolete dependencies: psmisc (killall no longer used), lsb-base
    for ntpdate (no longer has an init script)
  * Added script ntpdate-debian.  This is identical to ntpdate but reads
    /etc/default/ntpdate automatically, allowing for centralized
    configuration.  (closes: #147590, #372119, #392098)
  * Moved ntp.conf parsing logic to ntpdate-debian (closes: #392325)
  * Redirect error output of ntpdate.ifup to /dev/null (closes: #391819)
  * Added Replaces: logcheck-database (closes: #392562)

 -- Peter Eisentraut <petere@debian.org>  Sat, 14 Oct 2006 02:20:21 +0200

ntp (1:4.2.2+dfsg.2-3) unstable; urgency=high

  * Check ntp.conf existence before parsing it in /etc/default/ntpdate
    (closes: #388032)
  * Added version number to lsb-base dependency (closes: #388561)
  * Put back versioned Conflicts and Replaces for ntp-simple and
    ntp-refclock since we now have transition packages that need to be
    upgraded at the same time (closes: #389113)
  * Added Short-Description to init script LSB header
  * Remove ntpdate init script installation during upgrade
    (closes: #389089)
  * Removed -u from default ntpdate options, to avoid collisions with ntpd

 -- Peter Eisentraut <petere@debian.org>  Mon,  2 Oct 2006 19:47:47 +0200

ntp (1:4.2.2+dfsg.2-2) unstable; urgency=medium

  [ Branden Robinson ]
  * Soften ntp binary package's Conflicts and Replaces relationships with
    ntp-{refclock,server,simple} so that they are unversioned; a versioning
    expression is unnecessary as none of these exist now as dummy packages
    (and do not need to, as all depended directly or transitively on ntp
    itself).  State that ntp Provides the three merged packages, so that
    packages depending on them are not spuriously blocked from upgrading
    before their dependencies are manually changed. (closes: #383212)

  [ Peter Eisentraut ]
  * Updated README.Debian's and package descriptions, reflecting that
    ntpdate is no longer necessary when ntp is installed
  * npdate is no longer started from an init script but instead by ifup
    (closes: #56499, #245338, #312576)
  * Run ntpdate from ifup in the background (closes: #321759, #375280,
    #382543)
  * Cleaned out package relationships with long-obsolete packages
  * Updated standards version
  * Also parse peer lines in ntp.conf from ntpdate.default (closes: #382311)
  * Added pointer in ntpdate.default where to find ntp.conf (closes: #386323)
  * Updated logcheck rules (closes: #305864)

  [ Julien BLACHE ]
  * debian/control:
    + Add ntp-refclock and ntp-simple transition packages (closes: #384857).
  * debian/ntp.init:
    + Remove adduser call from initscript (closes: #383666).

  [ Petter Reinholdtsen ]
  * Fixed init script LSB header dependency information (closes: #387002)

 -- Peter Eisentraut <petere@debian.org>  Fri, 15 Sep 2006 11:24:09 +0200

ntp (1:4.2.2+dfsg.2-1) unstable; urgency=low

  [ Peter Eisentraut ]
  * Set -g as default command-line option of ntpd (closes: #168585, #319776)
  * Added iburst option to default server lines (closes: #319776)
  * Initialize ntpdate server list from ntp.conf by default (closes: #376019)
    (patch by martin f krafft)
  * Do not run ntpdate init script on package installation or removal
    (closes: #363513, #378480)
  * Dropped build dependency on binutils; now covered by build-essential
  * Removed support for not logging through syslog (closes: #340781)
  * Disable old ntp-server init script during package configuration
    (closes: #380233)
  * Added note about upgrading in README.Debian

  [ Kurt Roeckx ]
  * Newly built upstream tarball:
    - Removed tty_clk_STREAMS.c and global.h
  * Make init script use $DAEMON, add $PIDFILE and use it.
  * Use invoke-rc.d in the ifup script instead of directly using
    /etc/init.d/ntp.

 -- Peter Eisentraut <petere@debian.org>  Wed,  9 Aug 2006 13:58:26 +0200

ntp (1:4.2.2+dfsg-1) unstable; urgency=low

  [ Peter Eisentraut ]
  * Consolidated patches using quilt
  * Merged ntp, ntp-server, ntp-simple, ntp-refclock into single package ntp
    (closes: #222369, #343131, #377578)
  * Removed conflict of ntpdate with chrony (closes: #322503)
  * Improved init scripts:
    - Added LSB-formatted dependency information (closes: #332848)
    - Added status option (closes: #319392)
    - Added support for /etc/default/ntp (closes: #316306, #158389, #309200)
    - Use LSB functions for messages (closes: #219193)
  * Retain cap_sys_chroot capability a while longer so that chroot works
    (closes: #308840)
  * Cron jobs parse /etc/ntp.conf to fetch current values of logfile and
    statsdir (closes: #177341, #318824)
  * Support DEB_BUILD_OPTIONS=noopt
  * Compile with -fno-strict-aliasing (closes: #316304)
  * Removed inactive comaintainers
  * Removed local clock section in default ntp.conf (closes: #262037)
  * Fixed typo in ntpdate man page -u option description (closes: #272528)
  * Fixed typographical errors in ntpd manual page (closes: #353803)
  * Added missing command-line options to ntpd man page (closes: #306460)

  [ Kurt Roeckx ]
  * Make ntp and ntpdate depend on netbase because they
    require /etc/services (Closes: #376295)
  * New upstream release, merge patches.
  * Remove all parts of the source that don't have a license on it
    or otherwise didn't meet the DFSG.  As a result, the following
    clocks are no longer supported: wharton and neoclock4x
    (Closes: #328200)
  * Update the copyright file, and add all missing copyright
    notices and licences to it.
  * Add Depends on lsb-base, since the init scripts makes use of it now
    and it's not essential.
  * Always stop call the init script to stop the daemon in the postinst
    on configure.  Older versions upto and including 1:4.2.0a+stable-8.2
    could remove ntp-simple | ntp-refclock before ntp-server, and when
    ntp-server then tries to stop the daemon it doesn't find the binary
    and the init script doesn't do anything.

 -- Peter Eisentraut <petere@debian.org>  Fri, 14 Jul 2006 22:55:36 +0200

ntp (1:4.2.0a+stable-9) unstable; urgency=low

  [ Peter Eisentraut ]
  * New maintainer address, new uploaders
  * Acknowledge NMUs (closes: #327012, #312331)
  * Added --oknodo option in init script (closes: #302127)
  * Changed --exec to --startas in init script
  * Fixed typo in init script (closes: #308496)
  * Resolved circular dependency between ntp-server and
    ntp-simple/ntp-refclock (closes: #365950)
  * Use pool.ntp.org vendor zone by default (closes: #349392, #269572)
  * Updated public NTP server list URL (closes: #320143)
  * Updated pool.ntp.org URL and information (closes: #322675)
  * Renamed debian/NEWS.Debian to debian/NEWS, so it gets installed by
    dh_installchangelogs (closes: #245612)
  * Fixed if-up.d/ntp-server to cope with ifrename (closes: #356211)

  [ Kurt Roeckx ]
  * Remove pre-sarge upgrade parts of the maintainer scripts.  The files
    now only have debhelper generated things in them, so they got deleted:
    ntpdate.preinst, ntpdate.prerm, ntp-doc.prerm, ntp-server.preinst
    and ntp.postinst.  This also really fixes #312331 be removing the code.

 -- Kurt Roeckx <kurt@roeckx.be>  Sun, 18 Jun 2006 14:04:57 +0000

ntp (1:4.2.0a+stable-8.2) unstable; urgency=high

  * NMU
  * Avoid killing all ntpd processes on fresh installs of ntp-server
    (closes: #312331)

 -- Peter Eisentraut <petere@debian.org>  Tue,  6 Jun 2006 02:27:42 +0200

ntp (1:4.2.0a+stable-8.1) unstable; urgency=low

  * 0-day BSP NMU.
  * ntp_config.c: apply patch by Theppitak Karoonboonyanan to fix FTBFS
    (Closes: #327012).

 -- Christoph Berg <myon@debian.org>  Fri, 28 Oct 2005 15:33:37 +0200

ntp (1:4.2.0a+stable-8) unstable; urgency=medium

  * The "Well, I certainly could have done that better" version,
    featuring the maintainer's slightly red face.
  * Stricter dependencies for the run-as-user feature. Closes: #300207

 -- Matthias Urlichs <smurf@debian.org>  Fri, 18 Mar 2005 21:44:34 +0100

ntp (1:4.2.0a+stable-7) unstable; urgency=medium

  * Also set the user ID when restarting. Closes: #299904, #299874
    - Thanks to Pär Andersson <paran@lysator.liu.se>.

 -- Matthias Urlichs <smurf@debian.org>  Thu, 17 Mar 2005 09:28:38 +0100

ntp (1:4.2.0a+stable-6) unstable; urgency=medium

  * Broken edit for ntpdate.ignore (logcheck). Closes: #299572, #299573
  * Fix the FTBFS with GCC 4.0 in a way that doesn't break with
    earlier compilers. :-(  Closes: #299572.
    - Make a few include files be self-skipping and self-complete.

 -- Matthias Urlichs <smurf@debian.org>  Tue, 15 Mar 2005 11:09:52 +0100

ntp (1:4.2.0a+stable-5) unstable; urgency=low

  * Merged ubuntu update to no-root.

 -- Matthias Urlichs <smurf@debian.org>  Mon, 14 Mar 2005 15:25:03 +0100

ntp (1:4.2.0a-11ubuntu3) hoary; urgency=low

  * ntpd/ntpd.c:
    - Revert the hardcoded root dropping parameters from previous version.
      This is now done in init script.
    - Bugfix: If group was specified as name, previous versions erroneously
      used the uid as gid.
  * debian/ntp-server.init.d:
    - Run as user/group ntp by default (previously hardcoded in ntpd.c).
    - Already determine the uid/gid of 'ntp' instead of doing it in ntpd.c
      (for some reason this fails directly after boot). (Ubuntu #5399)
    - Add -e to interpreter to stop on errors.
    - append "/usr/bin/" to PATH setting (for getent and cut).

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 14 Mar 2005 13:24:46 +0100

ntp (1:4.2.0a+stable-4) unstable; urgency=low

  * Merged Upstream fix for ntpdate IPv4/IPv6 problems.
    - Closes: #293793, #294636
  * Install if-up.d/ntp-server in the correct directory.
    - Closes: #294971
  * Merged ubuntu's no-root patch.
    - Closes: #298059, #296595, #282941
  * Don't change the date when debugging ntpdate.
    - Closes: #286463
  * Tell the user that "/etc/initd/ntp-server reload" is not possible.
    - Sort-of-Closes: #276216
  * Cleanup init.d script. Closes: #295574
  * Fix doc typos. Closes: #298226
  * Remove /var/run/ntpd.pid when stopping the server.
    - Closes: #295553
  * Document ntpdate's exit status. Closes: #298190.
  * Enhance ntpdate's logcheck rule. Closes: #283386
  * Built against libreadline5.

 -- Matthias Urlichs <smurf@debian.org>  Sat, 12 Mar 2005 06:16:39 +0100

ntp (1:4.2.0a-11ubuntu2) hoary; urgency=low

  * Run ntpd as normal user (with CAP_SYS_TIME) instead of root
  * ntpd/ntpd.c:
    - activate root dropping to user and group "ntp"
    - add runtime check whether the kernel really supports capabilities; do
      not drop root privileges if not
    - do not set CAP_SYS_TIME as inheritable
  * debian/rules:
    - configure with --enable-linuxcaps
  * debian/control, packages ntp-simple/ntp-refclock:
    - add "adduser" dependency
  * debian/ntp-{simple,refclock}.postinst:
    - create system user and group "ntp"
    - chown /var/lib/ntp and /var/log/ntpstats to ntp:ntp to allow ntpd to
      write into them
    - restart the server (for the case that ntp-server's postinst ran before
      ntp-{simple,refclock}'s)
  * debian/ntp-{simple,refclock}.postrm:
    - remove user and group ntp on package purge

 -- Martin Pitt <martin.pitt@canonical.com>  Thu, 25 Nov 2004 15:23:53 +0100

ntp (1:4.2.0a+stable-3) unstable; urgency=low

  * Re-upload due to Debian FTP archive problems.

 -- Matthias Urlichs <smurf@debian.org>  Tue, 25 Jan 2005 22:18:34 +0100

ntp (1:4.2.0a+stable-2) unstable; urgency=low

  * -dbg packages have been disabled.

 -- Matthias Urlichs <smurf@debian.org>  Sun,  9 Jan 2005 15:56:42 +0100

ntp (1:4.2.0a+stable-1) unstable; urgency=medium

  * Workaround for ntpdate failing on IPv6 addresses with some kernels.
    - Thanks to Dan Merillat <dmerillat@sequiam.com> for tracking this down.
    - Closes: #249216.
  * Changed the upstream version name. "+bkYYYYMMDD" isn't what the version of
    a released program like ntpd should look like; people have been asking.

 -- Matthias Urlichs <smurf@debian.org>  Sat,  8 Jan 2005 12:05:56 +0100

ntp (1:4.2.0a+bk20040620-4) unstable; urgency=medium

  * Pushing to Unstable.
  * Note: This release is based on the _stable_ Upstream version.
  * Turned off OpenSSL library compatibility test, it's nonsense.
    - Closes:#286913.

 -- Matthias Urlichs <smurf@debian.org>  Thu, 23 Dec 2004 01:47:30 +0100

ntp (1:4.2.0a+bk20040620-3) experimental; urgency=low

  * Depend on perl-modules (for ntptrace). Closes:#276672.
  * Reworded clock interval explanation. Closes:#276213.
  * Note that the actual NTP server is in package "ntp-server". Closes:#273865.
  * Document dropped startup script run order. Closes:#240516.
  * Fix --help in ntptrace. Closes:#242629.
  * Add a (disabled) restart script to if-up.d. Closes:#247656.
  * fixed SIGFPE in ntp-keygen.
  * Remove superfluous {pre,post}{inst,rm} scripts

 -- Matthias Urlichs <smurf@debian.org>  Sun, 14 Nov 2004 17:09:17 +0100

ntp (1:4.2.0a+bk20040620-2) experimental; urgency=low

  * Merge stable Upstream changes.
  * Add debugging symbol packages.

 -- Matthias Urlichs <smurf@debian.org>  Sat, 25 Sep 2004 11:43:37 +0200

ntp (1:4.2.0a-12) unstable; urgency=low

  * Doc how to use multiple servers in ntp.default.
    - Closes: #264569: please document format of NTPSERVERS option

 -- Matthias Urlichs <smurf@debian.org>  Mon,  9 Aug 2004 19:57:58 +0200

ntp (1:4.2.0a-11) unstable; urgency=low

  * Fix building on non-Linux Debian systems.
    - Closes: #257769
  * Require psmisc.
    - Closes: #261299: uses killall but doesn't reference psmisc
      Thanks to Martin Michlmayr <tbm@cyrius.com>.

 -- Matthias Urlichs <smurf@debian.org>  Tue,  6 Jul 2004 05:26:07 +0200

ntp (1:4.2.0a-10) unstable; urgency=medium

  * Kill spuriously-running servers when updating.
    - Closes: #245587
  * Put ntpdate's -u option into /etc/default/ntpdate, not init.d.
    - Closes: #250769
  * Remove bashism (test ... -a ...) in ntpdate.preinst.
    - Closes: #253010
  * ntpdate: debug flag should not not change behavior
    - Closes: #253571
  * Updated README.Debian.
    - Closes: #207680
  * Changed obsolete "authenticate no" in ntp.conf to "disable auth".
    - Closes: #255450
  * Changed stratum of computer's clock from 10 to 13;
    added a note to use 10 on exactly *one* local server.

 -- Matthias Urlichs <smurf@debian.org>  Mon, 21 Jun 2004 10:10:51 +0200

ntp (1:4.2.0a+bk20040620-1) experimental; urgency=low

  * Merge current stable Upstream

 -- Matthias Urlichs <smurf@debian.org>  Mon, 21 Jun 2004 10:17:28 +0200

ntp (1:4.2.0a-9) unstable; urgency=low

  * Don't install two changelogs
    - Closes: #242929

 -- Matthias Urlichs <smurf@debian.org>  Tue, 20 Apr 2004 11:45:47 +0200

ntp (1:4.2.0a-8) unstable; urgency=medium

  * Typo in start-stop-daemon calls
    - Source management systems only work if you use them correctly :-/
    - Closes: #242804

 -- Matthias Urlichs <smurf@debian.org>  Fri,  9 Apr 2004 06:00:31 +0200

ntp (1:4.2.0a-7) unstable; urgency=low

  * Manpage ntp.conf.5 ended up in man1 instead of man5.
    - Closes: #242433

 -- Matthias Urlichs <smurf@debian.org>  Thu,  8 Apr 2004 08:48:32 +0200

ntp (1:4.2.0a-6) unstable; urgency=low

  * NEWS.Debian: Document a change to the "noserve" configuration option
    which can adversely affect existing configurations.
    - Closes: #240851
  * ntp.conf: .htm => .html.
    - Closes: #241187 (as this restores a deleted /etc/ntp.conf file)
  * Use --pidfile, not --exec, to stop the NTP server.
    - Closes: #240741

 -- Matthias Urlichs <smurf@debian.org>  Mon, 29 Mar 2004 20:33:21 +0200

ntp (1:4.2.0a-5) unstable; urgency=medium

  * Added stub manpage for ntp.conf (points to HTML documentation).
    - Closes: #240479
  * Rearranged Bug close entries to no longer be right-adjusted.
  * ntp-server.preinst had "update", not "upgrade". Feh.
    - Closes: #239138 (again)

 -- Matthias Urlichs <smurf@debian.org>  Sat, 27 Mar 2004 19:37:13 +0100

ntp (1:4.2.0a-4) unstable; urgency=high

  * The "I forgot to turn my brain on" release.
    - _Really_ remove old init scripts more cleanly.
    - Closes: #239487

 -- Matthias Urlichs <smurf@debian.org>  Tue, 23 Mar 2004 06:50:26 +0100

ntp (1:4.2.0a-3) unstable; urgency=high

  * Remove old init scripts more cleanly.
    - Closes: #239292
    - this also fixes the thinko in ntp-server.postrm -- sorry
      . which is the reason for urgency=high
      . Closes: #239283
  * Remove old cron.{daily,weekly} entries.
    - instead of purging, rename them to "OLDNAME.dpkg-old"
    - Closes: #239138,239294

 -- Matthias Urlichs <smurf@debian.org>  Mon, 22 Mar 2004 08:43:15 +0100

ntp (1:4.2.0a-2) unstable; urgency=medium

  * Build-Depend on libssl-dev for ntp-keygen
    - Closes: #238829
  * Debian diff now generated with help from autotools 1.7 files, not 1.8
  * Remove /etc/init.d/ntp-simple, ntp-refclock
    - Closes: #192769,239009
  * Moved a few manpage stubs to the correct package

 -- Matthias Urlichs <smurf@debian.org>  Sat, 20 Mar 2004 09:13:51 +0100

ntp (1:4.2.0a-1) unstable; urgency=low

  * Changed Distribution to Unstable.
    - Closes: #237248

 -- Matthias Urlichs <smurf@debian.org>  Mon, 15 Mar 2004 02:08:14 +0100

ntp (1:4.2.0a-0.1) experimental; urgency=low

  * Update to new Upstream version 4.2.0a.
    - Upstream has implemented a patch for #213629, with different flags. :-/

  * Added a short blurb to ntp.conf to please participate in pool.ntp.org
    if possible.
  * Added a missing "exit 0" line to a few {pre,post}{inst,rm} calls.
  * Rename /etc/default/ntp-servers => ntpdate in preinst, not postinst.
    - plus several minor maintainer script clean-ups.

  * Based on suggestions from jdthood@yahoo.co.uk:
    - Updated the descriptions in debian/control.
    - init.d/ntpdate still works if default/ntpdate is deleted, as per Policy.

 -- Matthias Urlichs <smurf@debian.org>  Thu,  4 Mar 2004 09:29:57 +0100

ntp (1:4.2.0-0.7) experimental; urgency=low

  * ntpdate.postinst: rename /etc/default/ntp-servers to .../ntpdate.

 -- Matthias Urlichs <smurf@debian.org>  Sun, 15 Feb 2004 03:44:06 +0100

ntp (1:4.2.0-0.6) experimental; urgency=low

  * Fix document list in ntp-doc (.htm => .html).
    - Closes: #229575
  * Rearrange files between ntp-server (code which needs to run on the host
    the server is running on) and ntp (ntpq, ntptime et al., which can access
    a remote server)
    - Mangled debian/control a bit, be (hopefully) more clear
      about this distinction.
    - "ntp" now only has programs that can run remotely, so
      no longer depend on "ntp-server".
  * Implemented suggestions from Jari Aalto:
    - move /etc/default/ntp-servers to /etc/default/ntpdate.
      . Closes: #230970
    - allow setting additional options like "-v" there.
      . Closes: #230972
  * Another "Oh, so that's already fixed" bug.
    - Closes: #230994

 -- Matthias Urlichs <smurf@debian.org>  Tue,  3 Feb 2004 17:18:40 +0100

ntp (1:4.2.0-0.5) experimental; urgency=low

  * Actually ship /etc/ntp.conf and /etc/default/ntp-servers files. Duh.
    - While we're at it, take the easy way out and create a separate package
      for the common server parts (init script, cronjobs, ...)
      . Closes: #146275
  * Documented "ntpd -n".
    - Closes: #94975
  * Ship logcheck ignore files for time adjust messages.
    - Closes: #192434
  * Found more bugs which are closed by the 4.2.0-0.[1-4] updates.
    - Closes: #94667,#63794,#185324,#187065,#174012
    - Also closes: #146275,#157301,#167151
  * ... and some which have been closed before, but been overlooked.
    - Closes: #45231,#108827

 -- Matthias Urlichs <smurf@debian.org>  Wed, 21 Jan 2004 00:16:35 +0100

ntp (1:4.2.0-0.4) experimental; urgency=low

  * Implemented patch for -U <user> and -R <root>.
    - original NTP patch used -T for the latter, but that's now taken by
      upstream.
    - Closes: #213629
  * Merged the current stable Upstream:
      D 1.1186 04/01/10 02:27:07-05:00 stenn@pogo.udel.edu 2179 2175 2/0/1
      , which contains a few minor bug fixes, including the not-so-minor
    - Matthias Drochner: uninitialized memory in ntp-keygen can lead to crashes.

 -- Matthias Urlichs <smurf@debian.org>  Tue, 23 Dec 2003 19:55:23 +0100

ntp (1:4.2.0-0.3) experimental; urgency=low

  * Added (commented-out) broadcastclient statement to ntp.conf.
    - Closes: #211494

 -- Matthias Urlichs <smurf@debian.org>  Tue, 23 Dec 2003 19:55:23 +0100

ntp (1:4.2.0-0.2) experimental; urgency=low

  * The "too many bugs closed" release.
  * Change /etc/ntp.conf and /etc/default/ntp-servers to be conffiles;
    no longer use debconf.
    - Closes: #201254,#185028,#188987,#192769
    - Also closes: #188987,#135563,#138973,#175557,#181824
  * Changed default trust parameters.
    - Closes: #225852
  * Old bugs:
    - Cleanup /var/lib/ntp and /var/log/ntpstats on purge
      . Closes: #164761
    - Bind to each interface address separately
      . Closes: #209054

 -- Matthias Urlichs <smurf@debian.org>  Tue, 23 Dec 2003 19:55:23 +0100

ntp (1:4.2.0-0.1) experimental; urgency=low

  * New stable upstream version. From the Upstream NEWS file:
    - IPv6 support
      . Closes: #200250
    - Bugfixes
    - call-gap filtering
    - wwv and chu refclock improvements
    - OpenSSL integration
  * Other noteworthy Upstream fixes:
    - No longer links the daemon to libcurses.
      . Closes: #221742
    - "ntptimeset" is disabled upstream (has compiler errors).
      . Closes: #139636
  * Debian packaging:
    - Use separate subdirectories for building 
      the -simple and -refclock server versions.
    - Added prerm scripts (debconf purge).
    - Switch to debhelper 4 compatibility.
    - Remove /var/log/ntpstats and /var/lib/ntp on purge
      . Closes: #164761
    - Check whether /etc/default/ntp-servers actually
      . Closes: #185028
      has an NTPSERVERS= entry before using it.
    - debian/rules no longer install-stamps, so "debuild -nc" works.
  * Other changes:
    - Disable IP error cache, as it never gets flushed.
      . Closes: #117276

 -- Matthias Urlichs <smurf@debian.org>  Wed, 12 Nov 2003 14:11:00 +0100

ntp (1:4.1.2a-2) unstable; urgency=low

  * bubulle@debian.org: debian/po/templates.pot was missing.
    - Closes: #220031
  * duck@duckcorp.org: not everybody has sys/var.h

 -- Matthias Urlichs <smurf@debian.org>  Tue, 11 Nov 2003 08:51:16 +0100

ntp (1:4.1.2a-1) unstable; urgency=low

  * Updated to current stable upstream version: 4.1.2a.
  * The original tarball is now created from upstream's Bitkeeper archive:
    Autogenerated files are added by debian/rules, in the "clean" target.
  * Jochen Friedrich <jochen@scram.de>:
    - configure.in: explicitly check for ntp_gettime()
  * Updated Standards-Version: to 3.6.1 (no changes)
  * Added Japanese debconf templates
    from Kenshi Muto <kmuto@debian.org>.
    - Closes: #210734
  * Converted debconf to gettext style.

 -- Matthias Urlichs <smurf@debian.org>  Wed, 10 Sep 2003 02:38:28 +0200

ntp (1:4.1.2-2) unstable; urgency=low

  * changed maintainer to debian-ntp list with list of uploaders
  * better package description for ntp-doc; closes: #210118

 -- Bruce Walker <w1bw@debian.org>  Wed,  1 Oct 2003 12:10:45 -0400

ntp (1:4.1.2-1) unstable; urgency=low

  * new upstream version
  * new maintainer
  * incorporated patch to ntp-genkeys to put the key file in a reasonable
    place (/var/lib/ntp), from Jochen Friedrich <jochen@scram.de>
    closes: #138887, #147544, #157332
  * pruned some old diffs which no longer seem necessary

 -- Bruce Walker <w1bw@debian.org>  Mon, 29 Sep 2003 14:54:16 -0400

ntp (1:4.1.1b-4) unstable; urgency=low

  * patch to configure.in from Jochen Friedrich <jochen@scram.de> to fix
    FTBFS on alpha, closes: #191310
  * fix another README.Debian typo, closes: #180941
  * update ntpdate init.d so that restart and reload will slew instead of
    stepping the clock, which is safer after boot.  closes: #180947
  * move ntp-doc to section doc to match ftp admin's overrides file

 -- Bdale Garbee <bdale@gag.com>  Mon, 18 Aug 2003 14:26:28 -0600

ntp (1:4.1.1b-3) unstable; urgency=low

  * fix up init.d references in crontabs and usage messages to reflect name
    changes made in -1, closes: #174646

 -- Bdale Garbee <bdale@gag.com>  Sun, 29 Dec 2002 14:13:30 -0700

ntp (1:4.1.1b-2) unstable; urgency=low

  * add config.sub/guess update to debian/rules clean target, closes: #174562
  * a few lintian-inspired cosmetic tweaks

 -- Bdale Garbee <bdale@gag.com>  Sun, 29 Dec 2002 00:53:11 -0700

ntp (1:4.1.1b-1) unstable; urgency=low

  * new upstream version, closes: #156456
  * trim down build-depends to remove items no longer used
  * change template text to be more accurate, closes: #139247
  * add --enable-LOCAL-CLOCK to the ntp-simple version of the daemon, and
    add debconf support for enabling local clock as a stratum 10 reference,
    closes: #147846, #150554, #173958
  * add info to README.Debian documenting the use of UDP socket 123 by NTP
    for folks who live behind firewalls, closes: #93424
  * let /etc/init.d script names match package names for ntp-simple and
    ntp-refclock to fix removal problem.  eliminate postrm scripts for both
    packages, since ntp.conf can get removed at bad times.  need to revisit
    conf handling again someday...  closes: #164760, #171577
  * added .preinst scripts to -simple and -refclock packages to move
    /etc/init.d/ntp to new naming on upgrades from old versions.
  * provide explicit PATH setup in init.d scripts, closes: #169951
  * fix typo in README.Debian file, closes: #170757
  * add --oknodo to start-stop-daemon invocation in cron.weekly scripts so
    (ana)cron aren't overly noisy if the daemon isn't running, closes: #165877

 -- Bdale Garbee <bdale@gag.com>  Fri, 27 Dec 2002 01:33:33 -0700

ntp (1:4.1.0-8) unstable; urgency=low

  * move to US main!  Yippee!

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

ntp (1:4.1.0-7) unstable; urgency=medium

  * remove inactive cruft (thanks to a typo) from the ntpdate postinst that
    shouldn't be there anyway, closes: #137488
  * add --enable-SHM to configure for the ntp-refclock version of the daemon,
    to also support clocks attached through shared memory, closes: #135754
  * freshen content in README.Debian to include information about the debconf
    support and /etc/default/ntp-servers, the URL for the public list of NTP
    servers, plus other updates.  closes: #135159, #117287
  * harden ntpdate's init.d script to deal with /etc/default/ntp-servers not
    existing, closes: #137130

 -- Bdale Garbee <bdale@gag.com>  Sat,  9 Mar 2002 11:26:32 -0700

ntp (1:4.1.0-6) unstable; urgency=medium

  * oops.  fix the ntpdate postinst fix so it creates /etc/default/ntp-servers
    on initial installs, too.  /o\  closes: #117162

 -- Bdale Garbee <bdale@gag.com>  Sun, 24 Feb 2002 10:58:21 -0700

ntp (1:4.1.0-5) unstable; urgency=medium

  * fix ntpdate postinst to not trash changes in /etc/default/ntp-servers,
    using patch from Petter Reinholdtsen <pere@hungry.com>, closes: #117162
  * update package description to point everyone building a reference clock 
    to the ntp-refclock package, not just radio clock owners, closes: #126412
  * change ntp-simple.config and ntp-refclock.config so that dpkg-reconfigure
    works as expected

 -- Bdale Garbee <bdale@gag.com>  Sat, 16 Feb 2002 00:46:37 -0700

ntp (1:4.1.0-4) unstable; urgency=medium

  * update build dependencies, closes: #115089
  * apply patches for hurd-i386, closes: #115260
  * incorporate german templates, closes: #114830, #114831
  * recraft debconf processing to preserve manual changes made to 
    /etc/default/ntp-servers, closes: #117162, #117607
  * I can't reproduce the problem reported with dpkg-reconfigure after 
    updating the maintainer scripts, closes: #120634
  * make ntpdate's init.d be silent if no NTP servers are configured, 
    closes: #113488, #37946, #79262, #117447
  * clean out /etc/cron.*/ntp files left from prior versions, closes: #117610
  * apply patch from Colm Buckley to address problem with broadcast NTP,
    closes: #122552, #117912, #117626

 -- Bdale Garbee <bdale@gag.com>  Thu, 13 Dec 2001 16:27:39 -0700

ntp (1:4.1.0-3) unstable; urgency=medium

  * fix version in ntp-simple/ntp-refclock replaces to avoid overlap errors
    during upgrades, closes: #111484, #111550
  * update text in debconf templates to not be misleading, closes: #111552
  * change non-us to non-US in control file to squelch override warnings

 -- Bdale Garbee <bdale@gag.com>  Sun, 23 Sep 2001 23:38:35 -0600

ntp (1:4.1.0-2) unstable; urgency=medium

  * add debconf support, borrowing lightly from the Progeny implementation,
    and examples in other Debian packages.  The list of servers to be used by 
    ntpd and ntpdate are now shared.  A side effect of debconf support is use 
    of /etc/default/ntp-servers, which means /etc/init.d/ntpdate no longer 
    needs to be modified by hand.  The admin may optionally do it all manually.
    closes: #34704, #36323, #37703, #52999, #57289, #57603, #66296
    closes: #66573, #67276, #83654, #86209
  * change ntp-refclock to priority extra
  * fix epochs in control file and add replaces, closes: #109170, #109381
  * fix bogus conflict between ntp and ntp-refclock left over from a previous
    design for the package restructuring, closes: #109247
  * ntp-simple and ntp-refclock made self-sufficient with respect to config
    files, and suggest ntp.  this allows a very small filesystem footprint
    if all you really want is a daemon.  most users are expected to pick the
    ntp package, which depends on ntp-simple or ntp-refclock, with the 
    combination providing the mix of clients and daemon older pre-split
    ntp packages provided.  closes: #110583
  * move to non-us since libssl-dev used for authentication, closes: #109127
  * arrange for ntp.conf to be deleted on purge, closes: #58804

 -- Bdale Garbee <bdale@gag.com>  Fri, 31 Aug 2001 16:37:54 -0600

ntp (1:4.1.0-1) unstable; urgency=medium

  * new upstream version, closes: #64951, #67562, #67744, #72321
  * split the package.  ntp now depends on either ntp-simple or ntp-refclock
    to deliver the actual daemon.  The simple version uses minimal memory, 
    the refclock version includes all the drivers for radio clocks.  
    closes: #52903, #98484, #56991
  * eliminate the xntp3 package, since it existed to smooth upgrades to 
    potato, and should no longer be needed when woody releases
  * change perl5 suggestion to perl
  * add build dependency on libssl-dev for authentication support
  * no longer requires oddball autoconf version, closes: #90969
  * this version may build correctly on the hurd, not closing 90974 until
    confirmation is received, though.
  * config.* in this version seem fresh enough, closes: #95741
  * upstream fixed various problems by not using threads on Linux, 
    closes: #102403, #102115, #94617, #64744, #94102, #93131
  * disable debugging since to reduce log file spew, closes: #100347
  * prerm is now entirely debhelper glue with appropriate sanity checks, 
    closes: #63157
  * patch libntp/msyslog.c for possible buffer overflow, closes: #72965
  * fix typos in ntpd.1, closes: #75681, #81054
  * fix spelling errors in ntpd.1, closes: #107761
  * make ntptrace report if specified host is not found, closes: #98152
  * remove cleanup code from ntp-doc postinst, since it can cause problems
    and hasn't been relevant since 1999.  Closes: #99035, #94366
  * modify ntpdate init.d to run ntpdate on restart and force-reload too, 
    closes: #75208, #55942
  * add -u to ntpdate init.d to use unpriveledged port, closes: #77329
  * move the ntpdate init.d invocation as early as possible in the boot
    sequence, closes: #80564
  * working on debconf support, uploading before it's ready since so much
    else is fixed by this newer version!

 -- Bdale Garbee <bdale@gag.com>  Thu, 16 Aug 2001 17:08:44 -0600

ntp (1:4.0.99g-3) unstable; urgency=high

  * apply patch from the NTP hackers list to fix buffer overflow with the
    potential for remote root exploits.  patch will cause the daemon to log
    attempted exploits.
  * add an include of <time.h> to quickly get around the changes in time 
    header files with recent glibc's, back this out on the next upstream
    release?

 -- Bdale Garbee <bdale@gag.com>  Wed,  4 Apr 2001 17:32:04 -0600

ntp (1:4.0.99g-2) frozen unstable; urgency=low

  * target frozen since these are release-critical bugs
  * make ntpdate replace xntp and xntp3, since it may install before or
    instead of ntp, resulting in a file overlap, closes: #61333
  * make ntp/ntpdate/xntp3 conflict with chrony, since otherwise they fight
    over UDP port 53, closes: #61500

 -- Bdale Garbee <bdale@gag.com>  Wed,  5 Apr 2000 01:08:42 -0600

ntp (1:4.0.99g-1) frozen unstable; urgency=low

  * target frozen since the xntp3 thing is release-critical
  * roll the epoch, since it is the cleanest way to have the xntp3 meta 
    package exist to help with the xntp3->ntp rename, closes: #59090
  * move to a fresher upstream snapshot to get various bug fixes, no changes
    to functionality we use, closes: #57659, #57816, #58400, #59154, #56551
  * put some information in the README.Debian about how to have a machine
    use its own clock as a reference for isolated machine clusters
  * stop having ntp-doc drop symlinks into the ntp and ntpdate doc directories,
    since it prevents them from being removed cleanly, closes: #59861

 -- Bdale Garbee <bdale@gag.com>  Sun, 12 Mar 2000 21:34:25 -0700

ntp (4.0.99c-1) frozen unstable; urgency=low

  * change the xntp3 dependencies from suggest to depend so they're useful
    in the context of apt, and remove the conflicts that are keeping the
    meta package from being useful.  Target frozen since the meta package
    was added for potato, and is useless without this change given how apt
    treats suggestions.  Closes: #56822
  * include some information about hwclock in README.Debian, closes: #56755
  * pick up 4.0.99c upstream, since all the changes relevant to us appear to
    be documentation fixes, and they seem worth having.  Closes: #56598
  * add a few touches to the rules file to keep the build process from 
    running autoconf and friends out of timestamp confusion.

 -- Bdale Garbee <bdale@gag.com>  Fri,  4 Feb 2000 00:00:24 -0700

ntp (4.0.99b-1) frozen unstable; urgency=low

  * new upstream release, minor bug fixes only, another release candidate,
    closes: #55213, #55639
  * fix redirection in the cron.daily, so that ntp isn't obnoxious if the
    stats logging has been turned off in ntp.conf, closes: #55488, #55339

 -- Bdale Garbee <bdale@gag.com>  Wed, 19 Jan 2000 23:01:19 -0700

ntp (4.0.99-2) unstable; urgency=low

  * add to Build-Depends, closes: #55086

 -- Bdale Garbee <bdale@gag.com>  Fri, 14 Jan 2000 23:36:12 -0700

ntp (4.0.99-1) unstable; urgency=low

  * new upstream version, release candidate, closes: #54974
  * improve robustness of cron.daily fragment, and comment the non-obvious
    things in the cron.daily file itself.  Closes: #54538, #54763
  * upgrade to newer ntpsweep from comp.protocols.time.ntp, closes: #55059

 -- Bdale Garbee <bdale@gag.com>  Fri, 14 Jan 2000 10:25:24 -0700

ntp (4.0.98m-2) unstable; urgency=low

  * fix silly dependency on sudo in cron.daily resulting from a cut'n'paste
    not completely thought through, closes: 54538

 -- Bdale Garbee <bdale@gag.com>  Sun,  9 Jan 2000 10:40:38 -0700

ntp (4.0.98m-1) unstable; urgency=low

  * new upstream source, closes: #54262
  * upgrade to latest standards, add Build-Depends

 -- Bdale Garbee <bdale@gag.com>  Fri,  7 Jan 2000 20:18:15 -0700

ntp (4.0.98k-1) unstable; urgency=low

  * new upstream source, ntpsweep now included upstream, closes: #53858, #54168
  * add xntp3 meta-package to facilitate slink->potato upgrades since package
    names changed, closes: #53532
  * the cron.weekly/ntp script deletes files in /var/log/ntpstats that are
    older than a week.  this means that at most 2 weeks of daily stats files
    have been present at any given time.  since deleting these old stats file
    does not require daemon cycling, I'm moving this to a cron.daily so only
    a week of files will be present.  Closes: #53598
  * while I'm messing with log rotation, modify cron.weekly to invert the
    nesting of the conditions.  This way, if there is no logfile definition
    in /etc/ntp.conf, and ntpd is therefore using syslog(), we won't kill and
    restart the daemon to rotate the non-existent log file.  
  * update configure-ntp to comment-out the logfile definition so that ntpd
    will use syslog, and not require cycling weekly for log file rotation.  
    This will cause ntpd logging to end up in daemon.log, since we do not have
    a LOG_NTP facility at this time, forcing ntpd to use LOG_DAEMON.  Wishlist
    bug filed against libc6-dev asking for a LOG_NTP.  Leave the cron.weekly
    alone, and don't do anything automatic to remove the logfile entry from
    /etc/ntp.conf... but add a note to README.Debian explaining the choices.

 -- Bdale Garbee <bdale@gag.com>  Thu,  6 Jan 2000 20:38:52 -0700

ntp (4.0.98h-2) unstable; urgency=medium

  * add text to ntpdate's README.Debian explaining when ntp may be a better
    choice
  * add ntpsweep Perl script from Hans Lambermont from comp.protocols.time.ntp,
    craft a manpage so it complies with policy

 -- Bdale Garbee <bdale@gag.com>  Mon, 27 Dec 1999 10:33:57 -0700

ntp (4.0.98h-1) unstable; urgency=medium

  * new upstream source, fixes the "multiple servers with ntpdate" hang
  * patch from Zack Weinberg <zack@rabi.columbia.edu> to reduce ntpd's memory
    footprint, and quiet some of the compiler warnings, closes: #52902
  * the images in the documentation are much smaller now, closes: #46534

 -- Bdale Garbee <bdale@gag.com>  Mon, 20 Dec 1999 02:20:33 -0700

ntp (4.0.98g-1) unstable; urgency=low

  * new upstream source, closes: #52718
  * apply patch for /tmp usage in refclock_true from Topi Miettinen, since
    upstream seems uninterested, and Topi has convinced me this is worth
    fixing.  closes: #26062

 -- Bdale Garbee <bdale@gag.com>  Wed, 15 Dec 1999 14:09:26 -0700

ntp (4.0.98f-2) unstable; urgency=low

  * apply patch from Roman that may finally fix the compile problems on m68k
    still using glibc2.0, closes: #50433
  * document in README.Debian for the ntp package the need to include support
    for enhanced real-time clock in the kernel build for SMP machines.
  * add code to ntp-doc postinst to clean up old/broken /usr/doc/ntp-doc
    symlinks, closes: #51024

 -- Bdale Garbee <bdale@gag.com>  Sun, 12 Dec 1999 18:14:54 -0700

ntp (4.0.98f-1) unstable; urgency=low

  * new upstream source, closes: #49877
  * upstream maintainer uninterested in changing /tmp file usage, since there
    is no clear problem with what is there, so no point in our keeping the 
    bug open... closes: #26062
  * hardware clock handling is different in v4, and even more different if the
    nanosecond timing patches are in use in the kernel.  I think what ntp is
    doing now is correct.  closes: #12181
  * I have never been able to reproduce the sigint failure during name 
    resolution reported ages ago, even when I worked hard to get slow name
    service.  I see no point in keeping the bug open.  closes: #18723
  * include ntpdate manpage from Fabrizio Polacco, closes: #50329
  * include ntpd manpage from Peter Breuer, closes: #50462
  * quick hack to see if we can fix the ntptimeval lossage in glibc2.0, 
    closes: 50433

 -- Bdale Garbee <bdale@gag.com>  Sat, 20 Nov 1999 23:51:34 -0700

ntp (4.0.98d-1) unstable; urgency=low

  * building ntptime again, closes: #43839
  * new upstream version, closes: #49102, #48944
  * fix dependencies for ntpdate so that upgrading from prior version works,
    since ntptimeset appeared briefly in ntp before moving to ntpdate, 
    closes: #49275
  * fix paths in ntp-doc postinst symlink creation for FHS, closes: #47011
  * add text to init.d on restart, closes: #47048
  * man page paths were fixed in 4.0.98a-1, closes: #49230

 -- Bdale Garbee <bdale@gag.com>  Fri,  5 Nov 1999 23:50:54 -0700

ntp (4.0.98a-1) unstable; urgency=low

  * new upstream source, closes: #45472, #45403, #44622
  * fix error in Debian-specific man page sources, closes: #43833
  * FHS compliance
  * put ntptimeset, a "new" alternative to ntpdate from CMU that just appeared
    in the ntp upstream sources, into the ntpdate package. 
  * minor tweaks to achieve a clean lintian report
  * remove text display from postinst to satisfy policy

 -- Bdale Garbee <bdale@gag.com>  Sun, 19 Sep 1999 14:32:28 -0600

ntp (4.0.97c-1) unstable; urgency=low

  * new upstream source
  * add doc-base support to the ntp-doc package, closes: #37016
  * move ntpq, ntpdc, and ntptrace from /usr/sbin to /usr/bin, closes: #43298

 -- Bdale Garbee <bdale@gag.com>  Sat, 28 Aug 1999 21:53:04 -0600

ntp (4.0.97a-1) unstable; urgency=low

  * new upstream version, 
    closes: #41724, #43024, #43025, #43026, #38074, #43202, #43446

 -- Bdale Garbee <bdale@gag.com>  Wed, 25 Aug 1999 21:02:12 -0600

ntp (4.0.92f-1) unstable; urgency=low

  * new upstream version, closes 36227
  * fix typo in ntpdate init.d, closes 36215
  * fix test in ntp-doc postinst to work when ntpdate is not installed, closes
    36214, 36211

 -- Bdale Garbee <bdale@gag.com>  Sun, 18 Apr 1999 14:14:58 -0600

ntp (4.0.92e-1) unstable; urgency=low

  * new upstream version
      kernel pll correctly recognized in 2.2 kernels, closes 32913
      memory leak believed fixed in this version, closes 33762
  * fix configure-ntp to make postinst text less confusing on initial install,
    closes 35869.  
  * eliminate duplicate daemon start on initial install in postinst
  * fix configure-ntp to create ntp.conf with the right log file, closes 35621
  * move ntp-doc symlink management from rules file to ntp-doc postinst and
    prerm to eliminate dangling symlinks, closes 35440
  * update rules file to remove htmlprimer.htm from ntp-doc, closes 35489

 -- Bdale Garbee <bdale@gag.com>  Thu, 15 Apr 1999 23:11:30 -0600

ntp (4.0.91-3) unstable; urgency=low

  * trivial tweaks to the init.d scripts for ntp and ntpdate to better 
    conform with policy, closes 32869

 -- Bdale Garbee <bdale@gag.com>  Thu,  4 Feb 1999 23:16:35 -0700

ntp (4.0.91-2) unstable; urgency=low

  * fix typo in ntpdate's postinst, closes 32372
  * tweak ntp's weekly cron to eliminate extra mail to root, closes 32461

 -- Bdale Garbee <bdale@gag.com>  Wed, 27 Jan 1999 13:58:56 -0700

ntp (4.0.91-1) unstable; urgency=low

  * new upstream version - these packages replace xntp3 and xntp3-doc!
  * ntp-doc does not include the html primer, closes 25752
  * ntp-doc has been updated substantially, 24270 appears to be fixed
  * packages renamed to match change in upstream source
  * split package to allow ntpdate usage without needing ntpd, closes 26557
  * enable more types of hardware clocks, closes 30989
  * create a "null" manpage for all the executables that directs users to the
    ntp-doc package
  * reworked the init.d/ntp.conf/etc stuff significantly, closes 30574, 
  * add some text to the postinst for ntpdate, closes 21320
  * fix init.d messages to comply with standard, closes 29618, 23493, 23499,
    23517, 23518
  * apply fix for insecure /tmp file usage in one debugging mode, which 
    would close 26062... but I'm going to forward it upstream and wait for
    a reply before closing it.

 -- Bdale Garbee <bdale@gag.com>  Sun, 17 Jan 1999 15:05:18 -0700

xntp3 (5.93-3) unstable; urgency=low

  * add dependency on awk, which is used in the postinst, closes 24821
  * tweak postinst to fix problem with comments in ntp.conf breaking the
    ntpdate call in init.d, closes 22796
  * add patch to ntp_io.c to report exceeding max number of bindable interfaces
    in xntpd, closes 23145
  * update postinst to be more graceful if no NTP servers are specified, 
    closes 24268
  * update postrm to be more robust

 -- Bdale Garbee <bdale@gag.com>  Mon,  3 Aug 1998 23:00:24 -0600

xntp3 (5.93-2) frozen unstable; urgency=low

  * fix prerm to gracefully handle the case of a package remove or upgrade
    when the daemon is not running.  Closes bugs 23565, 22384.
  * push this into frozen since 23565 was quite rightly flagged as important,
    and the 5.93 bits have been in unstable and working fine for over a month 
    with no version-specific bug reports.

 -- Bdale Garbee <bdale@gag.com>  Sun,  3 May 1998 21:14:29 -0600

xntp3 (5.93-1) unstable; urgency=low

  * new upstream source
  * apply 5.93->5.93a patch, even though it's not relevant for Linux, since
    upstream maintainer wants my diffs for Linux relative to 5.93a.

 -- Bdale Garbee <bdale@gag.com>  Sun,  3 May 1998 21:14:29 -0600

xntp3 (5.91-9) frozen unstable; urgency=low

  * fix a conditional in postinst that fails with older versions of 
    shellutils, closes 21988

 -- Bdale Garbee <bdale@gag.com>  Sat,  2 May 1998 01:57:32 -0600

xntp3 (5.91-8) frozen unstable; urgency=medium

  * finish the changes to make /etc/init.d/xntp3 not be a 'conffile', 
    closes 21117 and 21119.    /o\
  * clean up a few details in the pre and post scripts, making them a bit
    more paranoid and better equipped to handle unexpected conditions.
  * anyone running -7 really wants this version... mark it 'medium' urgency

 -- Bdale Garbee <bdale@gag.com>  Tue, 14 Apr 1998 23:24:11 -0600

xntp3 (5.91-7) frozen unstable; urgency=low

  * add a sleep between stop and start in init fragment to avoid race where
    old daemon hasn't quite died yet, closes 18703
  * fix a typo in the description, closes 18986
  * add -9 to gzip call in rules file to close remaining lintian errors

 -- Bdale Garbee <bdale@gag.com>  Fri, 10 Apr 1998 00:36:41 -0600

xntp3 (5.91-6) unstable; urgency=low

  * add update-rc.d call to postrm for /etc/init.d/xntp3 (lintian)
  * implement new required arguments to /etc/init.d/xntp3 (lintian)
  * fix for missing __ntp_gettime in libc6 from Herbert Xu.  Closes 15362.

 -- Bdale Garbee <bdale@gag.com>  Sun, 15 Feb 1998 11:03:16 -0700

xntp3 (5.91-5) unstable; urgency=low

  * change sequence in postinst to quiet update-rc.d.  Closes 17327.

 -- Bdale Garbee <bdale@gag.com>  Tue, 27 Jan 1998 14:14:32 -0700

xntp3 (5.91-4) unstable; urgency=low

  * with inputs from Christian Schwarz and others, do a better job of handling
    the package copyright policies regarding the xntp3-doc package.

 -- Bdale Garbee <bdale@gag.com>  Tue, 27 Jan 1998 13:03:32 -0700

xntp3 (5.91-3) unstable; urgency=low

  * make xntp3-doc depend on xntp3 to conform with policy regarding copyright
    files

 -- Bdale Garbee <bdale@gag.com>  Mon, 26 Jan 1998 21:29:29 -0700

xntp3 (5.91-2) unstable; urgency=low

  * clean up rules file using suggestions from Mark Eichin, fixes a
    small detail when building on other than i386, and moves to latest
    debhelper calls.  Closes 16213.

 -- Bdale Garbee <bdale@gag.com>  Sat,  3 Jan 1998 01:48:23 -0700

xntp3 (5.91-1) unstable; urgency=low

  * new upstream version

 -- Bdale Garbee <bdale@gag.com>  Wed, 26 Nov 1997 23:36:22 -0700

xntp3 (5.90-12) unstable; urgency=low

  * update postinst and postrm to improve daemon handling.  Closes bug 15273
  * modified rules file to indicate need for debhelper if dh_testdir fails 

 -- Bdale Garbee <bdale@gag.com>  Wed, 26 Nov 1997 22:47:00 -0700

xntp3 (5.90-11) unstable; urgency=low

  * reconfigure rules file to use debhelper, closes some bugs
  * various cosmetic tweaks

 -- Bdale Garbee <bdale@gag.com>  Fri, 21 Nov 1997 22:16:48 -0700

xntp3 (5.90-10) unstable; urgency=low

  * fix a typo in the init.d usage message, closes bug 14999

 -- Bdale Garbee <bdale@gag.com>  Tue, 18 Nov 1997 09:54:27 -0700

xntp3 (5.90-9) unstable; urgency=low

  * don't have -doc package depend on www-browser, closes bug 12996

 -- Bdale Garbee <bdale@gag.com>  Sun, 21 Sep 1997 17:18:40 -0600

xntp3 (5.90-8) unstable; urgency=low

  * only do the work in postinst if called to configure, closes bug 12633

 -- Bdale Garbee <bdale@gag.com>  Wed, 10 Sep 1997 12:47:13 -0600

xntp3 (5.90-7) unstable; urgency=low

  * libc6
  * remove log files in postrm if purging, closes bug 12037
  * remove config file in postrm if purging, closes bug 12110
  * fix typo in cron.weekly that prevents log file rotation, closes bug 12131

 -- Bdale Garbee <bdale@gag.com>  Fri,  5 Sep 1997 00:56:43 -0600

xntp3 (5.90-6) stable unstable; urgency=medium

  * Fix a security problem in the postinst script.  Closes bug 11773.
  * Explicitly try to stop the daemon before starting it in the postinst,
    just to make absolutely sure it's not already running.  This may quiet
    the reports of lingering daemons.

 -- Bdale Garbee <bdale@gag.com>  Fri, 1 Aug 1997 23:26:35 -0600

xntp3 (5.90-5) unstable; urgency=low

  * Ensure that needed directories exist.  Closes bugs 10242 and 9979.
  * Ignore ECONNREFUSED from peers that don't have xntpd running.  Closes
    bug 8490.

 -- Bdale Garbee <bdale@gag.com>  Sat, 31 May 1997 16:34:47 -0600

xntp3 (5.90-4) unstable; urgency=low

  * Switch to using start-stop-daemon in the postinst.  Fixes bug 9271.

 -- Bdale Garbee <bdale@gag.com>  Mon, 12 May 1997 22:08:42 -0600

xntp3 (5.90-3) unstable; urgency=low

  * Create /usr/doc/xntp3-doc as a symlink to xntp3.  Closes bug 6081.
  * Fix typo in glibc support in ntpdate.

 -- Bdale Garbee <bdale@gag.com>  Sat, 26 Apr 1997 23:19:15 -0600

xntp3 (5.90-2) unstable; urgency=low

  * Fix problem in packaging of doc package.

 -- Bdale Garbee <bdale@gag.com>  Sat, 26 Apr 1997 22:18:15 -0600

xntp3 (5.90-1) unstable; urgency=low

  * New upstream version.
  * Apply patches for libc6 from Michael Dorman.  Closes bug 9078.
  * Make directory /var/lib/ntp.  Closes bug 8783.

 -- Bdale Garbee <bdale@gag.com>  Sat, 26 Apr 1997 00:40:29 -0600

xntp3 (5.89-1) unstable; urgency=low

  * new upstream version
  * changing package name from xntp to xntp3 to mirror upstream change
  * ntp.conf no longer treated as conffile, closes bug 2051
  * only run cron.weekly fragment if /usr/sbin/xntpd exists, closes bug 5857
  * substantial improvement to the postinst script, closes several bugs

 -- Bdale Garbee <bdale@gag.com>  Wed, 26 Feb 1997 12:58:45 -0700

xntp (3.5f-4) frozen unstable; urgency=medium

  * copyright for xntp-doc installed in the wrong place.  Fixes bug 5319.
  * create /var/lib/ntp directory.  Fixes bug 5373.

 -- Bdale Garbee <bdale@gag.com>  Mon, 4 Nov 1996 02:53:56 -0700

xntp (3.5f-3) unstable; urgency=low

  * oops.  ugly typo in postinst breaks it entirely...

 -- Bdale Garbee <bdale@gag.com>  Mon, 4 Nov 1996 02:53:56 -0700

xntp (3.5f-2) unstable; urgency=low

  * create a stub manpage explaining the xntp-doc package
  * postinst offers to run ntpdate before xntpd launch.  Fixes bug 2982.
  * improve user instructions echo'd during postinst.  Fixes bug 4323.
  * moved test out of case in init.d script.  Fixes bug 4432.
  * only stop and start daemon in cron if it is running.  Fixes bug 4876.

 -- Bdale Garbee <bdale@gag.com>  Mon, 4 Nov 1996 00:53:50 -0700

xntp (3.5f-1) unstable; urgency=low

  * new upstream version 3.5f
  * xntpd built with MD5, but without DES authentication to avoid export issue.

 -- Bdale Garbee <bdale@gag.com>  Sat, 2 Nov 1996 17:18:29 -0800

xntp-3.5c-1:
 960328
 * Upgraded to latest upsteam version.
 * Removed Package_Revision from control file.
 * Removed -m486 compiler option.
 * Added Architecture field to control file.
 * Moved documentation into xntp-doc package.
 * Fixed Bug#2096: xntp-3.4x-2 doesn't test for presence of /usr/sbin
 * Fixed Bug#2116: xntp cron bug
 * Fixed Bug#2129: xntp startup should call ntpdate first
 * Fixed Bug#2250: xntpd log file rotation
 * Fixed Bug#2363: xntpd fails in 1.3.x kernels

xntp-3.4x-2:
 951127
 * Converted to ELF.
 * Fixed bug #1656: moved /etc/ntp.drift to /var/lib/ntp/ntp.drift
 * Fixed bug #1770: xntp works under 1.3.x kernels now.

xntp-3.4x-1:
 950928 Andrew Howell <andrew@it.com.au>
 * Updated to the newest version.
 * Made cronjob quiet. 
 * Postinst script will now run xntpd if you supply a NTP server.

xntp-3.4s-0:
 * Updated to the newest version.
 * Fixed cronjob to delete logs older than 7 days, not just the 7th day. Oops :)

xntp-3.4r-2:
 * Fixed permissions on cronjob

xntp-3.4r-1:
 * Added cronjob to cleanup log files once a week.
 * Added postrm script to remove rcx.d links when purge option given to dpkg.
 * Fixed postinst script to only prompt user for NTP server once.
 * Removed default NTP server.

xntp-3.4r-0:
 * added Debian GNU/Linux package maintenance system files

Local variables:
mode: debian-changelog
End: