File: changelog

package info (click to toggle)
ifupdown 0.8.19
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 896 kB
  • ctags: 250
  • sloc: ansic: 2,432; sh: 715; perl: 508; makefile: 89
file content (1619 lines) | stat: -rw-r--r-- 66,130 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
ifupdown (0.8.19) unstable; urgency=medium

  * Fix exit code of ifquery --state. Closes: #852976

 -- Guus Sliepen <guus@debian.org>  Mon, 30 Jan 2017 14:32:18 +0100

ifupdown (0.8.18) unstable; urgency=medium

  [ Svante Signell ]
  * Makefile: Add removal of tests/*/state.* directories in the clean target.
  * Update testcases for GNU/Hurd.

  [ Guus Sliepen ]
  * Use dynamically allocated strings for filenames. This avoids using
    PATH_MAX, which caused a FTBFS on Hurd. Based on Svante's patch.
    Closes: #845140
  * Fix some memory leaks.
  * Improve error messages.
  * Always immediately quit when running out of memory.

 -- Guus Sliepen <guus@debian.org>  Wed, 11 Jan 2017 20:43:06 +0100

ifupdown (0.8.17) unstable; urgency=medium

  [ Scott Moser ]
  * Don't bring down the loopback interface when networking.service stops.
    Closes: #841106, #841107

  [ Guus Sliepen ]
  * Export $CLASS to scripts.
  * Add a bug-script.
  * Depend on freebsd-net-tools instead of net-tools.
  * Also configure VLANs on bridge interfaces (see #818849).
  * Improve manpage: simplify example, add more section headers.
    Closes: #840579
  * Provide IPv6 examples in /u/s/d/ifupdown/examples/network-interfaces.
    Closes: #703568
  * Use -4 option for IPv4 dhclient. Closes: #844592

  [ Martin Pitt ]
  * ifup@.service: start After the corresponding
    sys-subsystem-net-devices device.

 -- Guus Sliepen <guus@debian.org>  Tue, 10 Jan 2017 17:25:18 +0100

ifupdown (0.8.16) unstable; urgency=medium

  * Fix FTBFS due to testcases using the host's state information.

 -- Guus Sliepen <guus@debian.org>  Thu, 22 Sep 2016 13:20:18 +0200

ifupdown (0.8.15) unstable; urgency=medium

  * Fix ifdown complaining about vlan_id1. Closes: #838312
  * Add testcases for ifdown. 

 -- Guus Sliepen <guus@debian.org>  Thu, 22 Sep 2016 11:53:52 +0200

ifupdown (0.8.14) unstable; urgency=medium

  [ Benjamin Drung ]
  * Add InfiniBand parititon key support. Closes: #830212

  [ Richard Laager ]
  * Fix a crash when multiple interfaces are specified for no-scripts.
    Closes: #837732

  [ Bjørn Mork ]
  * Ignore link state when bringing up hotplug interfaces at boot.
    Closes: #814785, #834820

  [ Guus Sliepen ]
  * Add a test case for the no-scripts keyword.
  * Flush automatically assigned addresses on ifup when accept_ra=0.

 -- Guus Sliepen <guus@debian.org>  Sat, 17 Sep 2016 11:40:39 +0200

ifupdown (0.8.13) unstable; urgency=medium

  * Fix test suite on kFreeBSD. Closes: #826062
  * Check the return value of chdir() and ftruncate().
  * Clarify that scripts can be run with IFACE set to "--all".
    Closes: #826000

 -- Guus Sliepen <guus@debian.org>  Sat, 04 Jun 2016 14:08:54 +0200

ifupdown (0.8.12) unstable; urgency=medium

  * Add "nodad" to ip -6 addr add if dad-attempts is set to zero.
    Closes: #824686
  * Bump Standards-Version.

 -- Guus Sliepen <guus@debian.org>  Thu, 19 May 2016 15:36:02 +0200

ifupdown (0.8.11) unstable; urgency=medium

  [ Wido den Hollander ]
  * Wait properly for Link-Local Address to go through DAD.

  [ Imre Deak ]
  * Fix read_all_state when no state file exists. Closes: 819287

  [ Arthur Gautier ]
  * Implement link naming (ip link set alias)

  [ Martin Pitt <martin.pitt@ubuntu.com> ]
  * Add autopkgtest for "allow-hotplug" interfaces. Closes: #814312

  [ Guus Sliepen ]
  * Bump Standards-Version.

 -- Guus Sliepen <guus@debian.org>  Thu, 21 Apr 2016 18:22:20 +0200

ifupdown (0.8.10) unstable; urgency=medium

  * Allow "hwaddress random" to generate a random MAC address.
  * Allow ifdown/ifquery when physical interface is not same as logical
    interface. 

 -- Guus Sliepen <guus@debian.org>  Fri, 22 Jan 2016 16:35:23 +0100

ifupdown (0.8.9) unstable; urgency=medium

  * It's network-online.target, not .service.
  * Do not run "ip link set down" on manual interfaces during "ifdown -a".
    Closes: #809166
  * Add the keywords "no-auto-down" and "no-scripts". Closes: #615130

 -- Guus Sliepen <guus@debian.org>  Thu, 21 Jan 2016 22:02:11 +0100

ifupdown (0.8.8) unstable; urgency=medium

  [ Martin Pitt ]
  * Fix ifquery crash if interface state file does not exist yet.
    (Closes: #810779, LP: #1532722)
  * ifup@.service: Avoid stopping on shutdown via stopping system-ifup.slice
    (changed behaviour in systemd 228). (Closes: #761909, LP: #1492546)

  [ Guus Sliepen ]
  * Remove quotes around TimeoutStartSec parameter. Closes: #810656

 -- Guus Sliepen <guus@debian.org>  Tue, 12 Jan 2016 23:50:29 +0100

ifupdown (0.8.7) unstable; urgency=medium

  * Impose a 5 minute timeout for starting network services.
    Closes: #318577, #810656
  * Give an error when trying to up a dhcp interface when no DHCP client is
    installed. Closes: #471926, #419139
  * Add a section in the manual about extensions provided by other packages.
    Closes: #482405, #597274
  * Use absolute paths to binaries called by ifup/ifdown. Closes: #365114
  * Return an error when trying to ifup/ifdown/ifquery an unknown interface
    (unless it is ignored due to --allow or --exclude).
  * Ignore SIGPIPE. Closes: #311054
  * Update the bridge example. Closes: #488315
  * Use the onlink option when adding a gateway route. Closes: #378506
  * Also allow the metric option for tunnels and IPv6 interfaces.

 -- Guus Sliepen <guus@debian.org>  Mon, 11 Jan 2016 22:58:44 +0100

ifupdown (0.8.6) unstable; urgency=medium

  * Remove the Breaks: udev (<< 228-3~) to work around a bug in udev's prerm
    script. Closes: #809658, #809743
  * Run ip link up on manual interfaces, but ignore any errors.
  * Use sysctl to set the IPv6-specific MTU of an interface. Closes: #809714

 -- Guus Sliepen <guus@debian.org>  Tue, 05 Jan 2016 15:57:45 +0100

ifupdown (0.8.5) unstable; urgency=medium

  [ Stéphane Graber ]
  * Allow setting the MTU and HWADDR on manual interfaces. Closes: #809169

  [ Guus Sliepen ]
  * Remove Depends/Replaces/Breaks for ancient packages.
  * Move ifupdown related files from the systemd and udev packages to this
    package. Closes: #809171

 -- Guus Sliepen <guus@debian.org>  Sat, 02 Jan 2016 00:41:49 +0100

ifupdown (0.8.4) unstable; urgency=medium

  * Schedule networking.service After=network-online.target.
  * Use dh-systemd.
  * Enable parallel builds.

 -- Guus Sliepen <guus@debian.org>  Sat, 26 Dec 2015 15:56:50 +0100

ifupdown (0.8.3) unstable; urgency=medium

  [ Guus Sliepen ]
  * Fix FTBFS while running the testsuite, caused by conditional call to
    settle-dad.sh. Closes: #807617
  * Make networking.service WantedBy=network-online.target.

  [ Svante Signell ]
  * Move the test target from debian/rules to Makefile
  * Move the shell script testbuild functions to Makefile
  * Move test files from debian/ to tests/
  * Prevent generated *.c-files from being removed during build
  * main.c: Convert interfaces in the form of /dev/eth0 to .dev.eth0 to avoid
    problems with created file names.
  * tests/testbuild-hurd: Add more hurd-specific tests.

 -- Guus Sliepen <guus@debian.org>  Mon, 21 Dec 2015 12:09:43 +0100

ifupdown (0.8.2) unstable; urgency=medium

  [ Martin Pitt ]
  * Some tweaks to networking.service. Closes: #806949

  [ Guus Sliepen ]
  * Don't call udevadm settle if configuring interfaces is disabled or all
    auto interfaces are excluded.
  * Start ifupdown after sysctl.conf and modules have been loaded.
  * Don't use the -D LLT option for dhclient, some DHCP servers apparently
    don't like it. Closes: #806964
  * Clarify configuration of dual-stack interfaces.

 -- Guus Sliepen <guus@debian.org>  Fri, 04 Dec 2015 23:52:30 +0100

ifupdown (0.8.1) unstable; urgency=medium

  * Allow recursively calling ifup on the same physical interface when --force
    is used. Closes: #806888
  * Read /etc/default/networking when started from systemd. Closes: #806883

 -- Guus Sliepen <guus@debian.org>  Wed, 02 Dec 2015 23:43:46 +0100

ifupdown (0.8) unstable; urgency=medium

  [ Guus Sliepen ]
  * Add per-interface state files with locking.
    - Also detects and aborts on recursion. Closes: #231197
  * Break up main() in smaller functions.
  * Return a non-zero exit code when (de)configuring an interface fails.
    Closes: 773539
  * Add blank lines around examples in interfaces(5). Closes: #791444
  * Enable RFC 4361 DDNS support when using dhclient, as suggested by
    Nicolas Cuissard. Closes: #799257
  * Lock parent interface when configuration VLAN interfaces.
  * Apply fixes for issues found by AddressSanitizer and Clang Static
    Analyzer.
  * Drop the versioned dependency on initscripts. Closes: #804978
  * Check for errors when running mapping scripts. Closes: #246771
  * Wait for an IPv6 link-local address before starting a DHCPv6 client.
    Closes: 806673
  * Add a systemd service file.

  [ Andrew Shadura ]
  * Implement interface inheritance using the "inherits" keyword.

  [ Jérémy Bobbio ]
  * Output methods in stable order when generating C code to make
    builds reproducible. Closes: #762388

  [ Javier Barroso ]
  * Fix detection of curlftpfs mounts. Closes: #792896

 -- Guus Sliepen <guus@debian.org>  Tue, 01 Dec 2015 23:09:54 +0100

ifupdown (0.7.54) unstable; urgency=medium

  [ Guus Sliepen ]
  * Adopting this package from Andrew Shadura. Closes: #786902
  * Converted the Mercurial repository to Git.
  * Clean up the source code (indentation, whitespace, remove some
    duplication, fix some warnings from cppcheck, clang, use C99, use const
    and static where possible, remove unused/obsolete files).
  * Prevent recursion using source and source-dir statements. Closes: #779786
  * Create /run/network if it doesn't exist. Closes: #681872
  * Bump Standards-Version.
  * Use [$arch-any] statements in debian/control for architecture-dependent
    Depends instead of conditionally calling dh_gencontrol from debian/rules.
  * Add -Wno-unused-parameters to CFLAGS in debian/rules.
  * Update debian/copyright and convert it to DEP-5 format.
  * Remove debian/README and debian/TODO, which are no longer relevant.
  * Update timestamp in manpages. Closes: #717266
  * Do not attempt to kill udhcpc if there is no pidfile. Closes: #744167
  * Add udev rule to allow rfkill for group netdev. Closes: #741454

  [ Yuriy Vostrikov ]
  * When using dhcpcd, pass the metric option. Closes: #784611

 -- Guus Sliepen <guus@debian.org>  Mon, 08 Jun 2015 23:39:41 +0200

ifupdown (0.7.53.1) unstable; urgency=medium

  * Update tests.

 -- Andrew Shadura <andrewsh@debian.org>  Fri, 13 Mar 2015 13:18:59 +0100

ifupdown (0.7.53) unstable; urgency=medium

  * Default accept_ra to 0 when gateway is set (Closes: #775660).
  * Don't try to parse a non-existing file given by wordexp (Closes: #776578).

 -- Andrew Shadura <andrewsh@debian.org>  Fri, 13 Mar 2015 08:55:42 +0100

ifupdown (0.7.52) unstable; urgency=medium

  * Fix segfault when /e/n/i can't be read. Fail only when the file
    has errors, issue a warning when it can't be opened (Closes: #774212).

 -- Andrew Shadura <andrewsh@debian.org>  Sun, 04 Jan 2015 15:21:25 +0100

ifupdown (0.7.51) unstable; urgency=medium

  [ Michael Biebl ]
  * Check the hotplug interface operstate to avoid blocking the
    boot process (Closes: #771943).

 -- Andrew Shadura <andrewsh@debian.org>  Sun, 14 Dec 2014 12:34:19 +0100

ifupdown (0.7.50) unstable; urgency=medium

  [ Andrew Shadura ]
  * Configure the loopback interface by default only if user hasn't
    defined their own loopback interface (Closes: #709378).
  * Update udhcp command-line options (Closes: #741579).
  * Fix compiler warnings.
  * Update the documentation regarding "source" keyword.

  [ Michael Biebl ]
  * Call "udev settle" explicitly before configuring any devices (Closes:
    #766943).

 -- Andrew Shadura <andrewsh@debian.org>  Sat, 29 Nov 2014 14:32:32 +0100

ifupdown (0.7.49) unstable; urgency=medium

  [ Andrew Shadura ]
  * Proper implementation of auto on kFreeBSD (Closes: #738942).
  * Don't fail on sysctl failing (Closes: #757937).
  * Accept router advertisements when using DHCPv6 (Closes: #753580).
  * Don't configure hotplug interfaces on networking start to avoid races.

  [ Stéphane Graber ]
  * Upstart job tweaks.

 -- Andrew Shadura <andrewsh@debian.org>  Tue, 23 Sep 2014 17:39:51 +0200

ifupdown (0.7.48.1) unstable; urgency=low

  * Add --ignore-errors option.
  * Handle errors correctly during interface deconfiguration.

 -- Andrew Shadura <andrewsh@debian.org>  Sun, 23 Mar 2014 18:50:08 +0100

ifupdown (0.7.48) unstable; urgency=low

  * Ignore statuses on down, don't ignore them on up.
      When configuring an interface, it's important for all commands
      to succeed, so if anything fails, interface isn't marked as
      configured. When deconfiguring it, however, we should do our
      best we can to deconfigure it, so if something fails, that's
      not the reason to stop trying.
      Closes: #360806, #547587, #562962, #700811.
  * Disable tests for DAD.
  * Fix hurd static script with IPv6 support (Closes: #737084).
  * Support preferred lifetime setting for tunnels (Closes: #735534).
  * Provide an alternative iproute dependency to make backporting easier.
  * Default to accept_ra=2 for inet6/auto (Closes: #739993, LP: #1260241)

 -- Andrew Shadura <andrewsh@debian.org>  Sun, 23 Mar 2014 15:03:09 +0100

ifupdown (0.7.47.2) unstable; urgency=low

  * Rebuild to avoid useless dependencies on sysv-rc and file-rc.
  * Don't pass deprecated arguments to update-rc.d.

 -- Andrew Shadura <andrewsh@debian.org>  Mon, 06 Jan 2014 21:23:03 +0100

ifupdown (0.7.47.1) unstable; urgency=low

  * Depend on adduser (Closes: #730598).

 -- Andrew Shadura <andrewsh@debian.org>  Wed, 27 Nov 2013 08:24:41 +0100

ifupdown (0.7.47) unstable; urgency=low

  * Don't use hardlinks for ifdown and ifquery.
  * Remove Petter from the Uploaders.
  * Ensure netdev group exists.

 -- Andrew Shadura <andrewsh@debian.org>  Tue, 26 Nov 2013 08:27:29 +0100

ifupdown (0.7.46.1) unstable; urgency=low

  * Disable DHCP test on Hurd to make the package buildable again.

 -- Andrew Shadura <andrewsh@debian.org>  Wed, 13 Nov 2013 14:15:47 +0100

ifupdown (0.7.46) unstable; urgency=low

  * Update copyrights.
  * Change /run/network ownership to root:netdev.
  * Drop now-empty Pre-Depends.
  * Add --state command to ifquery.
  * Update the init script to use --state.

 -- Andrew Shadura <andrewsh@debian.org>  Wed, 13 Nov 2013 13:46:58 +0100

ifupdown (0.7.45) unstable; urgency=low

  * Fix files enumeration in source-directory.
  * Lock a lockfile, not the statefile (Closes: #704003).
  * Bug fixes for Hurd (thanks to Justus Winter, closes: #720531)
    - Accept interface names in form /dev/* on Hurd.
    - Use inetutils-ifconfig, fix invocation of inetutils-ifconfig.
    - Sanitize pidfile name.
  * /lib/freebsd/route -> /sbin/route transition for kFreeBSD
    (Closes: #721629).
  * Set environment variables before running up and down commands.
  * Add DAD script (most probably closes: #705996).
  * Compat level 9.
  * Bump Standards Version to 3.9.4 (no changes).

 -- Andrew Shadura <andrewsh@debian.org>  Sat, 19 Oct 2013 20:25:51 +0200

ifupdown (0.7.44) unstable; urgency=low

  * Convert from noweb to plain C (Closes: #707209).
  * Don't bring down VLANned aliases (Closes: #711449).
  * Initialise 'verbose' variable (Closes: #710301).
  * Handle relative paths properly (Closes: #712909).
    Now non-absolute paths are understood relatively to the file
    they're sourced from.
  * Update RFC number (Closes: #717520).
  * Add source-directory directive.
  * Use source-directory in the default interfaces file.
  * Remove loopback interface from the manpage example.
  * Update the manpages (Closes: #711012).
  * Depend on iproute2 instead of iproute (Closes: #713825).
  * Recommend ISC DHCP client, at the same time declare Breaks against
    dhcp3-client earlier than 4.0, as it has incompatible syntax.

 -- Andrew Shadura <andrewsh@debian.org>  Thu, 08 Aug 2013 21:55:27 +0200

ifupdown (0.7.43) unstable; urgency=low

  * Don't consider multiple auto declarations an error (Closes: #707052).

 -- Andrew Shadura <andrewsh@debian.org>  Tue, 07 May 2013 09:41:18 +0200

ifupdown (0.7.42) unstable; urgency=low

  * Fix syntax issue with postinst (Closes: #707041).
  * Fix cross-build.

 -- Andrew Shadura <andrewsh@debian.org>  Tue, 07 May 2013 08:09:32 +0200

ifupdown (0.7.41) unstable; urgency=low

  * Upload to unstable.
  * Don't release DHCPv6 leases in inet6/auto for a while (Closes: #703922).
  * Remove "tryonce" option introduced in 0.7.40.
  * Don't call dhclient with -1 for now.
  * Remove ISC DHCP client from Build-Depends.
  * Assign logical interface name for link pseudointerface on down
    (Closes: #705268).
  * Add implicit loopback device definition.
  * Enable sourcing /etc/network/interfaces.d/* in the default configuration.

 -- Andrew Shadura <andrewsh@debian.org>  Thu, 11 Apr 2013 21:44:23 +0200

ifupdown (0.7.40) experimental; urgency=low

  [ Andrew Shadura ]
  * Don't configure bridge interfaces as tagged VLAN interfaces
    (Closes: #696642).
  * Add "tryonce" option to DHCP-enabled methods (Closes: #694541).
  * Implement inet6/auto for kFreeBSD, call DHCP release of ifdown
    on Linux (Closes: #701884).
  * Update manual pages.
  * Add tests for DHCP method.
  * Add ISC DHCP client to Build-Depends (the tests don't actually run
    the DHCP client, however).

  [ Stéphane Graber ]
  * Patches for upstart support from Ubuntu:
    - Start the job on runlevel [2345]. This is a no-op during a normal
      boot since the network will be started *before* runlevel is emitted,
      but is needed to restart the network after a change from runlevel 1
      (LP: #752481).
    - Don't bring 'lo' down (add it to --exclude).
    - Emit deconfiguring-networking (LP: #1061639).
    - Update network-interface-security job to stop when the parent job is
      stopped itself. This avoids leftover instances (LP: #1065684).
  * Set MTU of tunnel devices (LP: #1074048).
  * Actually set the new calculated value for duplicate entries
    (LP: #1086517).

  [ Josselin Mouette ]
  * postinst: Do not create /etc/network/interfaces if it was removed manually
    (Closes: #695906)

 -- Andrew Shadura <bugzilla@tut.by>  Mon, 04 Mar 2013 21:56:39 +0100

ifupdown (0.7.8) unstable; urgency=medium

  * Assign logical interface name for link pseudointerface on down
    (Closes: #705268).

 -- Andrew Shadura <andrewsh@debian.org>  Fri, 12 Apr 2013 11:44:21 +0200

ifupdown (0.7.7) unstable; urgency=low

  * Don't release DHCPv6 leases in inet6/auto for a while (Closes: #703922).
  * Don't call dhclient with -1 for now.

 -- Andrew Shadura <andrewsh@debian.org>  Mon, 25 Mar 2013 22:12:09 +0100

ifupdown (0.7.6) unstable; urgency=low

  [ Andrew Shadura ]
  * Don't configure bridge interfaces as tagged VLAN interfaces
    (Closes: #696642).
  * Implement inet6/auto for kFreeBSD, call DHCP release of ifdown
    on Linux (Closes: #701884).
  * Update manual pages.

  [ Stéphane Graber ]
  * Set MTU of tunnel devices (LP: #1074048).
  * Actually set the new calculated value for duplicate entries
    (LP: #1086517).

  [ Josselin Mouette ]
  * postinst: Do not create /etc/network/interfaces if it was removed manually
    (Closes: #695906)

 -- Andrew Shadura <bugzilla@tut.by>  Sun, 03 Mar 2013 12:08:16 +0100

ifupdown (0.7.5) unstable; urgency=low

  * Fix upstart hooks (Closes: #692110).

 -- Andrew O. Shadura <bugzilla@tut.by>  Fri, 02 Nov 2012 18:30:19 +0100

ifupdown (0.7.4) unstable; urgency=low

  * Check if upstart is the current init and don't try to call initctl if it
    isn't (Closes: #692008).
  * Bump lsb-base dependency to be able to use init_is_upstart.

 -- Andrew O. Shadura <bugzilla@tut.by>  Thu, 01 Nov 2012 12:01:17 +0100

ifupdown (0.7.3) unstable; urgency=low

  * Fix the calculation of broadcast addresses of obsolete scheme;
    previously, a network mask was mistakenly used instead of them.
  * Follow RFC 3021 regarding broadcast addresses in /31 subnets:
    they should use limited broadcast address (Closes: #690561).
  * Add upstart support (patch provided by Steve Langasek, closes: #679549).

 -- Andrew O. Shadura <bugzilla@tut.by>  Tue, 16 Oct 2012 10:39:24 +0200

ifupdown (0.7.2) unstable; urgency=low

  * Don't install /etc/default/networking as executable (Closes: #679623).
  * Declare Breaks on dhcp-client (<< 3.0) instead of Conflicts.
  * Implement --no-scripts option (LP: #258782).
  * Calculate the length of a string properly (Closes: #681431).
  * When bringing hotplug interfaces up, strip VLAN and alias identifiers out
    (Closes: #680042).
  * LSB headers: depend on urandom.
  * Recognize vlan+alias combination and filter aliases out (Closes: #679672).
  * Work-around ip(8) understanding of 0NNN as octal numbers (Closes: #684698).

 -- Andrew O. Shadura <bugzilla@tut.by>  Thu, 16 Aug 2012 23:22:32 +0200

ifupdown (0.7.1) unstable; urgency=low

  * Supply metric setting to dhclient (Closes: #279741, #364581, #676323).
  * Add autoconf/accept_ra options to inet6/dhcp (Closes: #676244).
  * Clean up after /run migration (Closes: #673057):
    - Remove old /etc/network/run.dpkg-old symlink.
    - Try to remove old /etc/network/run even if it's a symlink.
  * Depend on initscripts >= 2.88dsf-25 so mountnfs doesn't break.
  * Pass -q to sysctl to make the output less verbose.
  * Fix shell scripting mistake in /etc/init.d/networking (thanks to
    Stanislav Maslovski, closes: #678101).
  * Changes to interfaces exclusion:
    - Accept -X shortcut (wasn't working because of a bug).
    - Allow specifying more than one -X option.
    - Use shell glob syntax.
  * Add /etc/default/networking (Closes: #580035, #677973):
    - CONFIGURE_INTERFACES can be used to disable interfaces configuration.
    - Individual interfaces can be excluded with EXCLUDE_INTERFACES.
    - Extra verbosity may be requested with VERBOSE.
  * When ifup is being run with --force -n, always report errors regardless of
    ifstate.

 -- Andrew O. Shadura <bugzilla@tut.by>  Thu, 21 Jun 2012 18:59:10 +0200

ifupdown (0.7) unstable; urgency=low

  * Accept duplicate options in /etc/network/interfaces, join them using
    a newline as a delimiter.
  * If an interface isn't defined, but mentioned in auto or allow statement,
    don't mention it in ifquery output.
  * Change shortcut for --exclude to -X (was -e previously).
  * Make ifquery return false if the interface isn't defined.
  * Fix typos in the changelog.
  * Calculate broadcast address internally.
  * Allow concurrent netmask specification in both address (using CIDR
    notation) and netmask for IPv6 (Closes: #674775).
  * Add preferred-lifetime setting for IPv6.
  * Pass -w and -e options to sysctl so we still can configure an interface
    even if IPv6 SLAAC options can't be set for some reason.
  * Port to GNU/Hurd (thanks to Svante Signell, closes: #296115).
  * Chdir to root when executing external programs (Closes: #361964).
  * Remove updetach from PPP method (Closes: #675016).
  * Configure hotplug interfaces only if they're running (thanks to Evgeni
    Golov, closes: #673658).
  * Rewrite NEWS file (Closes: #673688).
  * Update examples (Closes: #340992).
  * Update tests.
  * Update README.

 -- Andrew O. Shadura <bugzilla@tut.by>  Wed, 30 May 2012 17:45:46 +0200

ifupdown (0.7~rc3) unstable; urgency=low

  * Upload to unstable.
  * Don't refer to README from netbase any more.
  * Internal changes:
    - Make set_variable() able to set variables conditionally.
    - Improve conversions interface.
    - Add some support for interface link configuration.
    - Don't leak memory in some functions.
  * Configure VLANs automatically (Closes: #520436).
  * Calculate netmask internally, so even if a user haven't supplied
    one or have used CIDR notation, hook scripts will have it properly
    specified in IF_NETMASK environment variable.
  * Declare Breaks/Replaces relationship against netbase << 5.0.
  * Merge changes from Ubuntu (thanks to Stéphane Graber):
    - Mark package as Multi-Arch: foreign.
    - Update statefile paths in the 'contrib' scripts and in the
      noweb source.
  * Temporarily unapply patch for #547587.
  * Update tests.

 -- Andrew O. Shadura <bugzilla@tut.by>  Mon, 14 May 2012 11:42:08 +0200

ifupdown (0.7~rc2+experimental) experimental; urgency=low

  * Try to bring hotplug interfaces up on initscript restart
    action as well.
  * Don't call ifup when there are no interfaces to bring up
    (Closes: #670145).

 -- Andrew O. Shadura <bugzilla@tut.by>  Mon, 23 Apr 2012 14:36:28 +0200

ifupdown (0.7~rc1+experimental) experimental; urgency=low

  * Prefer isc-dhcp-client to dhcp3-client (also closes: #422885).
  * Let dhclient fail when no lease can be acquired (Closes: #420784).
  * Raise command-line options priority over /etc/network/interfaces
    (Closes: #657743).
  * Prevent aliases and VLANs from putting the main interface down
    (Closes: #656270).
  * Make iproute2 calculate the broadcast address (LP: #924880).
  * Shut udhcpc down correctly (Closes: #338348).
  * Update the rules according to /run migration.
  * Pass hardening flags from dpkg-buildflags (Closes: #661243).
  * Implement ifquery interface (Closes: #568479).
    - Make ifquery process mappings (LP: #850166).
    - Ensure ifquery always has no_act turned on.
  * Change --all behaviour:
    - If ifup or ifquery is called with the --all option, if doesn't just
      bring up all interfaces marked as "auto", but all interfaces of a
      specified class, "auto" by default. For most uses, this doesn't
      change anything, but lets all the interfaces of a specific class be
      brought up or queried.
  * Support cross-compilation, move Debian-specific things out of
    the Makefile (Closes: #666084).
  * Take networking init script over from netbase package.
    - Add reload action which reconfigures all interfaces currently
      configured.
    - Add LSB Description field.
    - Remove /usr from PATH.
    - Merge ifupdown initscript in.
    - Improve warning messages.
    - Don't use redirection hacks when parsing /proc/mounts and /proc/swap.
    - Document all supported subcommands.
    - On start, try to configure hotplug interfaces if they seem to be ready.
      Ignore errors if they fail to configure for some reason (for example,
      if the interface happens to be renamed by udev before it's fully
      configured).
    - Override Lintian's false positives.
  * Remove /etc/default/ifupdown.
  * Call hook scripts when processing all interfaces:
    - If ifupdown is called with the --all option, before or after doing
      anything to the interfaces, it calls all the hook scripts (pre-up or
      down) with IFACE set to "--all", LOGICAL set to the current class
      specified by the --allow option (or "auto" if it's not set),
      ADDRFAM="meta" and METHOD="none".
  * Fix IPv6 issue on kFreeBSD.
  * Update test suite.
  * Improve manual pages.
  * Bump Standards-Version to 3.9.3.
  * Also closes: #535226:
    - In 0.7~alpha5, "auto" method has been added.

 -- Andrew O. Shadura <bugzilla@tut.by>  Tue, 17 Apr 2012 01:05:42 +0200

ifupdown (0.7~beta2) experimental; urgency=low

  * Put interfaces down in the reverse order than they were
    brought up (Closes: #477650).
  * Fix postinst issues with loopback interface naming
    (Closes: #572396, #545250).
  * Remove old .dpkg-old symlink (Closes: #639612).
  * Document some details on processing /etc/network/if-*.d directories.
  * Terminate ifup if it's still running when doing ifdown.
  * Finally migrate to /run/network.
  * Use FHS names for wvdial pid files (Closes: #255222).
  * Stop on run-parts failure (Closes: #547587).
  * Execute scripts before interface options on *-down (Closes: #346459).
  * Display missing variable name in the error message; make it also a bit
    less obscure (Closes: #502630).
  * Fix wvdial options description (Closes: #534181).
  * Specify interface label (Closes: #645813).
  * Add address scope option for static IPv4 and IPv6 setups.
  * Use FreeBSD version of route, thanks to Robert Millan (Closes: #646291).

 -- Andrew O. Shadura <bugzilla@tut.by>  Sun, 13 Nov 2011 23:20:11 +0100

ifupdown (0.7~beta1) experimental; urgency=low

  * Update the examples (Closes: #630551).
  * Remove Default-Stop from the LSB headers (Closes: #630506).
  * Add IPv4LL method (Closes: #204641).
  * Add initial DHCPv6 support.
  * Suggest isc-dhcp-client instead of dhcp3-client (Closes: #631414).
  * Support per-architecture build-time rule definitions.
  * Add a syntax (%iface/a/b%) to perform character replacement over
    variable values.
  * Accept VLAN interface names (Closes: #632902).
  * Update test cases.
  * Correct the spelling of the maintainer's last name.
  * Add partial kFreeBSD support (Closes: #630512).
  * Drop 'ifupdown-clean' init script (not needed any more with /run).

 -- Andrew O. Shadura <bugzilla@tut.by>  Tue, 23 Aug 2011 11:49:19 +0300

ifupdown (0.7~alpha5.1) experimental; urgency=low

  * Non-maintainer upload.
  * No source changes.
  * Upload to experimental rather than unstable.

 -- Roger Leigh <rleigh@debian.org>  Tue, 14 Jun 2011 18:44:11 +0100

ifupdown (0.7~alpha5+really0.6.16) unstable; urgency=low

  * Use FreeBSD version of route, thanks to Robert Millan
    for the patch (Closes: #646291).

 -- Andrew O. Shadura <bugzilla@tut.by>  Sun, 23 Oct 2011 21:10:44 +0300

ifupdown (0.7~alpha5+really0.6.15) unstable; urgency=low

  * Replace /etc/network/run.dpkg-old correctly (Closes: #639612).

 -- Andrew O. Shadura <bugzilla@tut.by>  Mon, 29 Aug 2011 11:00:17 +0300

ifupdown (0.7~alpha5+really0.6.14) unstable; urgency=low

  * Create /etc/network/interfaces correctly (Closes: #638718).
  * Correct the spelling of the maintainer's last name.

 -- Andrew O. Shadura <bugzilla@tut.by>  Mon, 22 Aug 2011 23:02:50 +0300

ifupdown (0.7~alpha5+really0.6.13) unstable; urgency=low

  * Clean up SysV symlinks on upgrade (Closes: #637804).

 -- Andrew O. Shadura <bugzilla@tut.by>  Sun, 14 Aug 2011 21:36:02 +0300

ifupdown (0.7~alpha5+really0.6.12) unstable; urgency=low

  * Fix init script dependencies so we don't try to remove state
    file before the root filesystem is remounted R/W (Closes: #637435).
  * Don't install ifupdown.init on runlevels 0 and 6.
  * Add Vcs-Hg field.

 -- Andrew O. Shadura <bugzilla@tut.by>  Sat, 13 Aug 2011 20:05:15 +0300

ifupdown (0.7~alpha5+really0.6.11) unstable; urgency=low

  * Backport the fixes for the following bugs from 0.7 branch:
    - Suggest isc-dhcp-client instead of dhcp3-client (Closes: #631414).
    - Remove Default-Stop from the LSB headers (Closes: #630506).
    - Fix init script dependencies (Closes: #607713).
  * Report the correct version number on --version.

 -- Andrew O. Shadura <bugzilla@tut.by>  Sun, 07 Aug 2011 15:38:26 +0300

ifupdown (0.7~alpha5+really0.6.10) unstable; urgency=low

  * Non-maintainer upload.
  * No source changes.
  * Bump version to replace 0.7~alpha5 which was uploaded to
    unstable (rather than experimental) by mistake (Closes: #630501).

 -- Roger Leigh <rleigh@debian.org>  Tue, 14 Jun 2011 17:48:20 +0100

ifupdown (0.7~alpha5) experimental; urgency=low

  * Set PHASE variable (Closes: #629821).
  * Allow privacy extensions for inet6/auto (Closes: #629841).
  * Make Router Advertisements and SLAAC configurable (Closes: #629837).
  * Fix the IPv4 interface down sequence (Closes: #629836).
  * Add Vcs-* fields.
  * Remove privacy extensions option for 6in4/6to4 interfaces
    as no SLAAC is possible there.
  * Document interface exclusion option.
  * Improve conversions code, allowing calculating 6to4 address without
    calling external utilities.
  * Fix some compilation warnings.
  * Update test cases.

 -- Andrew O. Shadura <bugzilla@tut.by>  Thu, 09 Jun 2011 00:07:09 +0300

ifupdown (0.7~alpha4) experimental; urgency=low

  * New maintainer.
  * Remove VCS repository from the tarball (Closes: #417718).
  * Add source stanza (Closes: #159884, #149395, #471834).
  * Fix bashism in example script get-mac-address.sh (Closes: #518924).
  * Use DebSrc3.0 source format and dh7.
  * Add auto method for IPv6, fix static method (Closes: #604136).
  * Update URL for Debian Reference (Closes: #610238).
  * Fix typos in the man page (Closes: #384143, #415285).
  * Add GRE and IPIP tunnels support (Closes: #158089).
  * Fix inet/static pointopoint option (Closes: #460276).
  * Add support for enabling/disabling IPv6 privacy extension
    (Closes: #520576).
  * Move network state file to /run/network (Closes: #389996).
  * Fix init script dependencies (Closes: #607713, #601705).
  * Add MTU setting for v4tunnel (Closes: #408453, #575110).
  * Allow multiple interface definitions to ease work with multiple IP per
    interface.
  * Allow passing PPP options, pass updetach by default (Closes: #196877).
  * Add 6to4 tunnels support (Closes: #357929).
  * Add CAN interface support (Closes: #584530).
  * Drop 0.5.x migration script.
  * Drop dependency on net-tools; suggest it instead.
  * Bump Standards-Version to 3.9.2.

 -- Andrew O. Shadura <bugzilla@tut.by>  Wed, 08 Jun 2011 12:10:14 +0300

ifupdown (0.7~alpha3) experimental; urgency=low

  * Apply patches from Andreas Henriksson (Closes: Bug#456918)
    - Fix aadr typo in IPv6 loopback method
    - Add dependency on new version of iproute that supports specifying
      netmasks as dotted-quads.
    - Re-add netmask field for backwards compatibility.
    - Flush addresses when taking down a static inet interface.
      (Closes: Bug#431059)
    - Switch inet/dhcp and inet6/static methods to iproute.
    - Update test cases.
    - Support for conversion of ifconfig format hwaddress to iproute format
      hwaddress.
  * Update Build-Depends: to reflect name change from nowebm to noweb.
  * Move DH_COMPAT setting from debian/rules to debian/compat file.
  * Don't ignore errors from make clean in debian/rules clean target.
  * Escape hypens in interfaces.5 manpage.
  * Don't create /usr/bin or /usr/sbin directories.
  * Bump Standards-Version.

 -- Anthony Towns <ajt@debian.org>  Sat, 22 Dec 2007 00:31:16 +1000

ifupdown (0.7~alpha2) experimental; urgency=low

  * Add command line interface options (ifup -o foo=bar eth1). Yay!
  * Switch to using iproute instead of ifconfig/route. Thanks to Andrew
    Pollock.
  * Drop support for kernels prior to 2.1.100 (and that don't have NETLINK
    for iproute).
  * Drop support for specifying a "netmask" in static inet interfaces.
  * Bump DH_COMPAT to 4 (from 1!)

 -- Anthony Towns <aj@azure.humbug.org.au>  Mon, 18 Jun 2007 15:47:21 +0100

ifupdown (0.6.10) unstable; urgency=low

  * Try to load the ipv6 module when doing up on inet6 stansas except
    manual, ignoring any errors or warnings (Closes: #480046, #413428,
    512553).  Thanks to Andreas Henriksson for the patch.

 -- Petter Reinholdtsen <pere@debian.org>  Wed, 03 Mar 2010 08:09:39 +0100

ifupdown (0.6.9) unstable; urgency=low

  * Fix typo subsytems -> subsystems in interfaces(5) manual page
    (Closes: #390086).  Thanks to A. Costa for the patch.
  * Fix typo iterface -> interface in init.d/ifupdown-clean (Closes:
    #458347).  Patch from Trent W. Buck.
  * Fix bashism in example script get-mac-address.sh (Closes:
    #518924).  Patch from Simon Descarpentries.
  * Remove obsolete debconf template translations (Closes: #520007,
    #534553).
  * Fix gramatically incorrect message from ifupdown (Closes:
    #501554).  Patch from Łukasz Stelmach.
  * Updated standards-version from 3.7.2 to 3.8.3.  No change needed.
  * Make sure postrm script fail on errors.  Thanks lintian.
  * Upgrade to debhelper version 7.
  * Acknowledge NMUs (Closes: #428084, #441673, #448416, #471804,
    #544371).

 -- Petter Reinholdtsen <pere@debian.org>  Sun, 06 Sep 2009 12:11:11 +0200

ifupdown (0.6.8+nmu3) unstable; urgency=low

  * Non-maintainer upload. (with maintainer's consent)
  * Correctly make the modification in 0.6.8+nmu2
  * Also adjust the way /sbin/dhclient is killed to be comparable to how
    /sbin/dhclient is stopped
  * Invoke dhclient with -v to maintain equivalent verbosity to dhclient3
  * Conflict with dhcp-client v2

 -- Andrew Pollock <apollock@debian.org>  Thu, 03 Sep 2009 21:50:47 -0700

ifupdown (0.6.8+nmu2) unstable; urgency=low

  * Non-maintainer upload. (with maintainer's consent)
  * Invoke /sbin/dhclient without the -e option in preparation for DHCP v4
    (closes: #544371)

 -- Andrew Pollock <apollock@debian.org>  Wed, 02 Sep 2009 21:20:37 -0700

ifupdown (0.6.8+nmu1) unstable; urgency=low

  * Non-maintainer upload to fix pending l10n issues.
  * Drop debconf support that dealt with a very old transition
    Closes: #428084, #441673, #448416, #471804
  * [Lintian] No longer ignore errors by "make clean"
  * [Lintian] No longer include empty /usr/bin and /usr/sbin
  * [Lintian] Removed debian/conffiles that only contained files
    from /etc, that are added automatically by debhelper
  * [Lintian] Raise debhelper compatibility level to 4

 -- Christian Perrier <bubulle@debian.org>  Sat, 12 Apr 2008 13:32:24 +0200

ifupdown (0.6.8) unstable; urgency=low

  * Add myself as co-maintainer with approval from Anthony Towns.
  * Change path of dhclient.leases to make sure the dhcp state survive
    reboots. (Closes: #311777)
  * Change leasehours option value to match the option name. 
  * Async ifup/ifdown modication based on patch from Scott James
    Remnant and Ubuntu.  (Closes: #347580)
    - Rewrite the way that ifup and ifdown read and write the state
      file.  Instead of storing it in memory and holding a lock on it
      (preventing concurrent processes from actually being concurrent)
      use atomic read and write functions that only hold the lock for
      very short periods.
    - Write to the state file when we start bringing up or tearing
      down the interface, so we don't ever try to do the same
      operation at the same time.
    - Update the state file once the operation is complete to ensure
      we record the actual status of it.
  * Acknowledge NMUs. (Closes: #311011, #311443, #353154, #339834, #311928,
    #336931, #338849, #362093, #330230, #386794, #384866, #312988, #266021,
    #384438, #387155, #387453, #387677)

 -- Petter Reinholdtsen <pere@debian.org>  Thu, 28 Sep 2006 18:14:47 +0200

ifupdown (0.6.7-0.4) unstable; urgency=low

  * Non-maintainer upload.
  * Fix the 'client' dhcp option to work as documented.  Patch from
    Roderick Schertler.  (Closes: #311011)
  * Change section from base to admin to match the override file.

 -- Petter Reinholdtsen <pere@debian.org>  Fri, 15 Sep 2006 23:26:04 +0200

ifupdown (0.6.7-0.3) unstable; urgency=low

  * Non-maintainer upload.
  * Correct typo in interfaces(5).  (Closes: #311443)
  * Correct typo in ifupdown.nw. (Closes: #353154)
  * Avoid segfault on freebsd. Patch from Brian M. Carlson. (Closes: #339834)

  [ Translations ]
  * Added Vietnamese (vi) by Clytie Siddall. (Closes: #311928)
  * Added Portuguese (pt) by Simão Pedro Cardoso. (Closes: #336931)
  * Updated Swedish (sv) by Daniel Nylander. (Closes: #338849)
  * Added Galician (gl) by Jacobo Tarrio. (Closes: #362093)
  * Added Norwegian Bokmaal (nb) by Petter Reinholdtsen.

 -- Petter Reinholdtsen <pere@debian.org>  Thu, 14 Sep 2006 15:02:06 +0200

ifupdown (0.6.7-0.2) unstable; urgency=low

  * Non-maintainer upload approved by maintainer.
  * Add LSB-style dependency information to init.d scripts.
    (Closes: #330230)
  * Make sure the init.d scripts are added in dependency order.
    (Closes: #386794)
  * Updated standards-version from 3.6.1.0 to 3.7.2.  No changes needed.
  * Update the FSF address in the copyright file to keep lintian happy.
  * Use log_* functions from lsb-base in init.d scripts.  Add lsb-base
    as dependency.  Based on patch from Ubuntu.  (Closes: #384866)

 -- Petter Reinholdtsen <pere@debian.org>  Tue, 12 Sep 2006 16:22:43 +0200

ifupdown (0.6.7-0.1) unstable; urgency=low

  * Non-maintainer upload with authorization from maintainer.
  * Support for link-local IPv6 gateways (Closes: #312988)
      - patch from Florian Zumbiehl.
  * Support for manual IPv6 method (Closes: #266021)
      - patch from Rémi Denis-Courmont.

 -- Mohammed Adnène Trojette <adn+deb@diwi.org>  Wed, 23 Aug 2006 17:01:03 +0200

ifupdown (0.6.7) unstable; urgency=low

  * Don't use dirname/basename in ifupdown init script; they're in /usr/bin.
    (Closes: Bug#304188)

  * Check for free space on /dev/shm when working out where to link
    /e/n/run. Thanks to Jose Manuel Delgado Mendinueta. (Closes:
    Bug#303656)

 -- Anthony Towns <ajt@debian.org>  Mon,  2 May 2005 23:57:25 +1000

ifupdown (0.6.6) unstable; urgency=low

  * The "what does wine come in" release

  * Fix brown paper bag bug where %iface% maps to the logical interface
    name rather than the hardware one. Thanks to Paul Hampson for being
    the first to spot it once the BTS was working again. Also add a test
    case. (Closes: Bug#303148)

  * Fix brown paper bag bug where "test -e" doesn't actually identify a
    dangling /etc/network/run symlink on upgrade. (Closes: Bug#303225)

  * Fix brown paper bag bug where we only consider pointing
    /etc/network/run at /dev/shm if /dev/shm *isn't* in /proc/mounts. (No
    bug filed yet, though...)

 -- Anthony Towns <ajt@debian.org>  Tue,  5 Apr 2005 14:19:21 +1000

ifupdown (0.6.5) unstable; urgency=low

  * The Gernot Heiser release -- aged like a fine South Australian wine.

  * Switch to Debian-native versioning / source packaging for the time being.
    (Closes: Bug#84697)
  * Change Section: to base, to match overrides.

  * Thanks to Michael Weber, Javier Fernandez-Sanguino Pena, Marc
    Haber, and Thomas Hood for NMUs. (Closes: Bug#150773, Bug#151465,
    Bug#152893, Bug#208726, Bug#209006, Bug#242314, Bug#263913,
    Bug#266282, Bug#297762)

  * debian/rules: Don't re-build unnecessarily. Thanks to Michael Banck
    (Closes: Bug#296273)

  * Add post-up, pre-down as aliases for "up" and "down". (Closes: Bug#62633)

  * Deprecate (undocument) "--exclude" option.

  * Add support for "allow-*" lines for systems such as hotplug or ifplugd.
    Usage is "ifup --allow=hotplug <interfaces>"; only the allowed interfaces
    whill actually be tried. (Closes: Bug#300937)

  * Satiate the POSIX sh monkeys, makenwdep.sh now uses printf for \t's,
    not echo -e. (Closes: Bug#294970)

  * Switch to using "/etc/network/run/ifstate" instead of
    "/etc/network/ifstate". Simplify all the complicated hackery dealing
    with that. Use myreadlink function instead of /lib/init/readlink.
    (Closes: Bug#302519)

  * Make debian/rules test always succeed when cross-building. Thanks
    to NIIBE Yutaka. (Closes: Bug#283649)

  * Add VERBOSITY variable for scripts, invoke run-parts with --verbose.
    Thanks to Michael Weber. (Closes: Bug#88946)
  * Add LOGICAL variable for scripts. (Doesn't work for mapping scripts yet
    though)
  * Add PHASE variable for scripts, same as MODE but more detailed;
    pre-up, post-down, etc. (Closes: Bug#286155)

  * Document lack of support for end-of-line comments in interfaces(5).
    (Closes: Bug#79683)

  * Remove conflict with old, experimental-only version of dhcp-client.

 -- Anthony Towns <ajt@debian.org>  Mon,  4 Apr 2005 23:41:06 +1000

ifupdown (0.6.4-4.12) unstable; urgency=low

  * Non-maintainer upload
  * Begin description synopsis with lower case letter
  * postinst:
    + Create run dir at the target of /etc/network/run if it is absent
      (Closes: #297898)

 -- Thomas Hood <jdthood@yahoo.co.uk>  Thu,  3 Mar 2005 19:05:05 +0100

ifupdown (0.6.4-4.11) unstable; urgency=low

  * Non-maintainer upload
  * postinst:
    + Do not make /etc/network/run a symlink to /dev/shm/network/
      if devfs is in use.  (Closes: #266479)
  * /etc/init.d/ifupdown:
    + Don't accept arguments to "start" method
    + Fix initscript output
  * ifup.8:
    + Correct typo (Closes: #287172)
  * interfaces.5:
    + Correct description of what happens when user commands fail
      (Closes: #286166)
    + Remove reference to VERBOSE which isn't implemented in this
      version  (Reported in #88946)
  * Add it.po thanks to Luca Monducci  (Closes: #284123)

 -- Thomas Hood <jdthood@yahoo.co.uk>  Sun, 12 Sep 2004 14:46:29 +0200

ifupdown (0.6.4-4.10) unstable; urgency=low

  * Non-maintainer upload. Fix critical bugs.
  * fix ifstate cleaning in init script. (Closes: #264134).
  * fix /etc/network/run creation in postinst (Closes: #265165).

 -- Marc Haber <mh+debian-packages@zugschlus.de>  Tue, 17 Aug 2004 06:38:16 +0200

ifupdown (0.6.4-4.9) unstable; urgency=low

  * Non-maintainer upload: bug fixes and some improvements, unfortunately
    they will not make it to sarge...
   [Javier Fernandez-Sanguino]
    - Added a generic --exclude option (modified ifupdown.nw and ifup.8)
      This way other scripts (such as /e/i/networking in netbase)
      can avoid bringing down 'lo' on shutdown doing: 'ifdown -e lo -a'
      This will help close #254705, #256680 and #208700.
    - Make it conflict with the dch-client version from experimental 
      (Closes: #242537, #242527)
    - Added usage examples provided by Thomas Hood (Closes: #247772)
    - L10n:
    	+ Updated catalan debconf templates provided by Aleix Badia i Bosch 
        (Closes: #248717)
        + Included Lithuanian translation of debconf templates provided
        by Gintautas Miliauskas (Closes: #249233)
    - /etc/init.d/ifupdown: Exit with error if called with unknown arguments
    - ifupdown.nw: fix FTBFS with gcc-3.4 (Closes: #258965)
    - ifup.8: ammended manpage describing how ifdown really works 
      (Closes: #259609)
    - Remove XSI:isms in several scripts (Closes: #255574)
    - debian/po/POTFILES.in:  point to templates.master instead of templates
   [Thomas Hood]
    - debian/control:
       + Build-Depend on version of debhelper with dh_installinit --name
       + Put dhcp3-client before dhcp-client in disjunctive dependency
         (Closes: #250713)
     - Add /etc/default/ifupdown (currently not used, will be in the
       future)
     - /etc/init.d/ifupdown:
        + Creates target of /etc/network/run if the latter is a dangling
          symlink.  Thanks to AJT for good discussion.  (Closes: #242607)
        + Delete ifstate on stop  (Closes: #245067)
    - /etc/init.d/ifupdown-clean
        + Delete ifstate on stop  (Closes: #245067)
    - debian/rules:
        + Now use dh_installdebconf to install debconf stuff
        + Install new ifupdown-clean initscript.  It runs at S:S18.
        + ifupdown initscript now runs at 0,6:S36 as well as S:S39.
        Note: this will only apply to new installations (not to upgrades)
     - examples/*
        + Move the contributed scripts to contrib/
        + Clean up and add comments
     - examples/check-mac-address.sh:
        + Fix argument check  (Closes: #254388)
     - debian/postrm:
        + Delete configuration files on purge  (Closes: #255228)
     - ifup.8
        + Clean up
        + Add EXAMPLES section  (Closes #247772)
     - interfaces.5
        + Mention wireless(7)  (Closes: #255218)
        + Reorder content and do some other minor changes.
     - debian/postinst:
        + Create /etc/network/run symlink to /dev/shm/network/ if 
          it does not exist
        + Warn if "auto lo" or "iface lo" stanza absent from /e/n/i
        (Closes: #121755)

 -- Javier Fernandez-Sanguino Pen~a <jfs@computer.org>  Wed, 28 Jul 2004 17:04:19 +0200


ifupdown (0.6.4-4.8) unstable; urgency=low

  * Fix configuration of interfaces with multiple address families.
    (Closes: Bug#242867) 
  * Add testcase 3 to check for such errors.

 -- Anthony Towns <aj@azure.humbug.org.au>  Sat, 10 Apr 2004 16:47:57 +1000

ifupdown (0.6.4-4.7) unstable; urgency=low

  * Non-maintainer upload. This is mostly a bug-fix release, no new
    features have been added and the behaviour of ifupdown has only changed
    slightly. Content has been reviewed by both the maintainer and several
    other maintainers (who have NMUed this package previously)
    - Ifupdown.dvi now depends on *eps files (Closes: #101204)
    - Added missing Build-Dep to noweb since the Makefile calls makenwdep.sh
      (and it calls 'noroots') on build.
    - Remove the undocumented (and unused) -s option from the manpage and the
      main.c code. (Closes: #231404)
    - inet6.defn
      + Make it possible to run an v4tunnel without an address (Closes: #96265)
    - inet.defn
      + Included different handling of dhclient3 versus dhclient.
      + Avoids inconsistency in interface state if the command run
       by ifup fails, also added -e option to dhclient in order to 
       have it return an error if it cannot get an address. 
       Notice that this is not yet done with dhclient3 (-1) since that would
       mean not running dhclient3 as a daemon and renews not being done.
       (Closes: #97782, #82339, #113338, #148666, #169194)
      + An independent lease file is created per interface so that dhclient
       can be used in more than one interface (Closes: #196366)
      + If dhcp3-client is installed (the binary /sbin/dhclient3 is available)
       then use the -r option instead of with a KILL signal, this enables
       it to release the DHCP release an execute the hook script before
       exiting. Also, the package now suggests 'dhcp-client | dhcp3-client'
       (since dhcp3-client does not provide dhcp-client as pump does)
       (Closes: #196865)
      + Added a metric option for routes, notice, however, the dhclient's
       -e (undocumented) option is not included from the provided patch.
       (Closes: #235993)
      + Use -r instead of -k when DHCP interfaces using pump are downed in 
       order to avoid killing all interfaces (only release the one asked for)
       (Closes: #198841)
      + Properly implement the 'hw' option in interfaces by defining the 
       hardware address before upping the interface. 
       (Closes: #224468, #84602)
      + Allow setting of the hw address in the dhcp method as suggested.
       (Closes: #135502)
    - examples:
      + Added an example in the interfaces file on how to setup an interface
       with multiple IP addresses. I've added a warning, though, since this
       is expected not to work in some cases and might generate inconsistencies
       between the real state and the one noted down in the interfaces state
       file. It is worth documenting this option (with known caveats) rather
       than have users figure it out for themselves.
       (Closes: #172147)
      + Added sample scripts ('ensureifup' and 'ifstate') to ensure that
       interfaces are always up (might be useful for crappy ISP providers)
       as provided by Yann Dirson (Closes: #86902)
      + Provide a 'generate-interfaces.pl' script under the examples dir
       in order to facilitate migration of network configuration in 
       pre-woody systems. This script might also be useful to migrate other
       Linux systems to Debian.
       (Closes: #57830)
      + Added a sample 'ifstate-complex' command. Since it is not documented
        I'm adding it to the examples and not closing #153222 with it (yet)
      + Fixed a syntax error in the 'check-mac-address.sh' script and added
        both a little bit of comment code and proper usage.
      + Provided an example on how to setup an interface without IP address
        using the 'manual' method. This is suitable for some cases where we 
        only want to have the interface to be up. This example can be used
        to setup PPPOE interfaces or network IDS listening on a network. 
        This might not be as good as providing a specific method but the
        maintainer considers that this is the way it should be handled.
        (Closes: #76142, #92993, #129003, #164823, #171981)
      + Also, provided an example bridge configuration script that can
        be setup in /e/n/if-{pre-up,down}.d/ in order to setup bridges.
    - Interfaces(5).pre:
      + Slight improvement in to better describe mapping and point to 
       the examples available. (Closes: #232594)
      + Minor changes in the manpage to avoid people being misled .
        (Closes: #232347)
      + Better description of mappings (Closes: #216716)
      + Document IFACE=LIFACE syntax (Closes: #213068)
      + Documented known bugs or limitations.
      + Reference the location of the network examples.
      + Reference also the "Debian Reference" manual since it is more
        verbose in how /e/n/interfaces and ifupdown works.
    - Ifup(8):
      + Document that the -a option will take down all interfaces.
       (Closes: #208607)
      + Also describe in which order are interfaces started/stopped when
        using -a which might avoid confusion, see  #208700 for example.
      + Changed manpage name to ifup (instead of ifupdown).
       (Closes: #81150)
      + Document known bugs in the manpage: state maintained is sometimes
       lost, the ifstate needs to be writable and there is a known deadlock
       issue.
      + Document known "limitations" and refer readers to alternatives to
        monitor interface changes such as ifupd and hotplug.
      + Minor formatting changes and rewrites for better comprehension.
    - Translations:
      + Added Spanish debconf translation provided by Carlos Valdivia.
       (Closes: #207727)
      + Added Japanese debconf translation provided by Kenshi Muto.
       (Closes: #210436)
      + Added Dutch debconf translation provided by Tim Dijkstra.
       (Closes: #213723)
      + Added Greek debconf translation provided by Konstantinos Margaritis.
       (Closes: #229503, #229527)
      + Added simplified Chinese debconf translation provided by Hiei Xu.
       (Closes: #231910)
      + Added Czech debconf translation provided by Miroslav Kure.
       (Closes: #231995)
      + Added Turkish debconf translation provided by Recai Oktas.
       (Closes: #239142)
      + Added Danish debconf translation provided by Morten Brix Pedersen.
       (Closes: #241248)

 -- Javier Fernandez-Sanguino Pen~a <jfs@computer.org>  Mon,  5 Apr 2004 21:12:05 +0200

ifupdown (0.6.4-4.6) unstable; urgency=low

  * Non-maintainer upload
  * reinstate code creating non-existent /etc/network in preinst. Moving
    that code to postinst is currently problematic since other packages
    pre-depend on ifupdown and dpkg doesn't guarantee that pre-depended
    packages are configured before unpacking the depending package.
                                                             (Closes: #208811)
  * don't call dpkg --compare-version on initial install in postinst

 -- Marc Haber <mh+debian-packages@zugschlus.de>  Sat,  6 Sep 2003 10:49:48 +0000

ifupdown (0.6.4-4.5) unstable; urgency=low

  * Non-maintainer upload
  * ifupdown.nw:
    + Clarify description of --all option                    (Closes: #180000)
    + Add manual interface method                            (Closes:  #88948)
    + Document order of precedence of DHCP clients           (Closes: #156789)
  * debian/prepostinstrm:
    + Use "set -e" consistently
  * debian/rules, debian/postinst, debian/preinst
    + Add /etc/network/if*.d/ directories to the package     (Closes: #178226)
    + Use dh_installinit with --no-start option
  * debian/config: fix compare-versions so that debconf question
    is asked when updating from < 0.6                        (Closes: #122422)
  * debian/rules:
    + documented {clobber,distclean} targets                 (Closes: #154517)
    + removed obsolete call of dh_suidregister
  * added Danish convert-interfaces template.  Thanks to morten@wtk.dk
    for translation.                                         (Closes: #174764)
  * Switch to gettext-based debconf templates and update French
    translation. Thanks to Christian Perrier for this work.  (Closes: #200786)
  * use Colin Watson's backporting helper for po-debconf'ed packages.
  * interfaces(5):
    + Format improvements
    + Describe how mapping works                             (Closes: #86895)
                                                             (Closes: #138694)
                                                             (Closes: #175679)
                                                             (Closes: #204468)
    + Document order of processing of auto ifaces            (Closes: #112012)
    + Say that "auto" takes physical interface names as arguments
                                                             (Closes: #138403)
    + Document function of /etc/network/if-*.d/ directories  (Closes: #141634)
                                                             (Closes: #157698)
    + There are more than three universal options            (Closes: #160918)
                                                             (Closes: #186316)
    + Mention extended options                               (Closes: #203636)
  * ifup(8)
    + Indicate in synopsis that -i option takes an argument       
    + minor phrasing changes aiming at greater clarity  
    + formatting corrections                   
  * examples/*: fix typos                                    (Closes: #173101)
  * debian/control:
    + Suggest dhcp-client and ppp                            (Closes: #178630)
    + Standards-Version: 3.6.1
    + Priority: important to agree with override file
    + Clarify wording of long description
  * debian/copyright:
    + Clean up and make lintian happy
  * Thanks to Thomas Hood and Michael Weber for helping to prepare
    these patches and the NMU.

 -- Marc Haber <mh+debian-packages@zugschlus.de>  Wed, 27 Aug 2003 14:00:59 +0000

ifupdown (0.6.4-4.4) unstable; urgency=low

  * Non-maintainer upload
  * adjustment to changed md5sum output format (as of dpkg 1.10)
    (Closes: Bug#152853)

 -- Michael Weber <michaelw@debian.org>  Sun, 14 Jul 2002 02:12:15 +0200

ifupdown (0.6.4-4.3) unstable; urgency=low

  * Non-maintainer upload
  * flush stream buffers before forking and after writing the
    statefile
    (Closes: Bug#151932)

 -- Michael Weber <michaelw@debian.org>  Thu,  4 Jul 2002 21:02:10 +0200

ifupdown (0.6.4-4.2) unstable; urgency=low

  * Non-maintainer upload
  * added locking support, parallel executions of if{up,down} will be
    serialized (modified patch from bod@debian.org).
    (Closes: Bug#108876, Bug#108857)

 -- Michael Weber <michaelw@debian.org>  Mon, 24 Jun 2002 21:42:50 +0200

ifupdown (0.6.4-4.1) unstable; urgency=low

  * Non-maintainer upload
  * added convert-interfaces template for:
    + de (Closes: Bug#83542)
    + fr (Closes: Bug#83804)
    + pt_BR (Closes: Bug#98448, Bug#110198)
    + pl (Closes: Bug#107701)
    + ru (Closes: Bug#112652)
    + sv (Closes: Bug#83496)
    (thanks to all translators)
  * fixed some typos in source documentation
  * pass METHOD and ADDRFAM environment variables to if.d scripts
    and {pre-,}{up,down} lines
    (Closes: Bug#88947)
  * upgrade-from-0.5.x.pl emits auto statements only once
    (patch from weasel@debian.org)
    (Closes: Bug#105342)
  * added "mtu" option to inet and inet6 static stanzas
    (Closes: Bug#57731)
  * added options "local" and "ttl" to inet6 static stanza
    (Closes: Bug#67743)
  * added and documented option "media" to specify the medium type
    (Closed: Bug#79999)
  * added and documented option hwaddress
    (Closes: Bug#82604)
  * reject options with empty values
    (Closes: #86410)
  * added more documentation to the IPX stanza
  * improved usenet2man conversion (handles punctuation 
    before/after //,**
  * added support for udhcpc (slightly modified patch from kraai@debian.org)
    (Closes: Bug#113620)
  * added support for multiple executions of dhclient (uses
    /var/run/dhclient.%iface%.pid now)
    (Closes: Bug#94656)
  * man page update [pump works for kernels (> 2.2.x)]
    (Closes: Bug#114429)
  * configurable user/group for install (0/0 as default, since
    NetBSD uses group "wheel" instead of "root")
  * examples/{check,get}-mac-address.sh:
    + mapping script now compares given MAC addresses case-insensitive.
    + added LANG=C to make ifupdown output reliably parseable
      (thanks to blade@debian.org)

 -- Michael Weber <michaelw@debian.org>  Sun, 23 Jun 2002 11:56:25 +0200

ifupdown (0.6.4-4) unstable; urgency=low

  * Don't delete /etc/network/ifstate every boot, just empty the file. This
    way people can symlink it to /var/run/ifstate if they so desire (ie, if
    /var is local and /etc is read-only). (Closes: Bug#103868, Bug#85206)
  * Explicitly set PATH in the environment, because pdksh is broken, broken
    I say. (Closes: Bug#83557, Bug#99444)

 -- Anthony Towns <aj@azure.humbug.org.au>  Tue, 19 Jun 2001 00:04:30 +1000

ifupdown (0.6.4-3) unstable; urgency=low

  * Add some test cases to hopefully catch miscompiles on silly
    architectures like alpha. Weirdly, I can't duplicate this bug on
    lully anymore, so I didn't add a -O0 workaround at this time. We'll
    see what happens. (Closes: Bug#81143)

  * Correct old /e/n/i check from -2 so it might even work. (Closes:
    Bug#81611)

 -- Anthony Towns <aj@azure.humbug.org.au>  Tue,  9 Jan 2001 10:48:18 +1000

ifupdown (0.6.4-2) unstable; urgency=low

  * Check for old /etc/network/interfaces conffile (all comments, same
    md5, same size), and replace it with new conffile so as not to mislead
    people into forgetting the "auto" lines. (Closes: Bug#79822) 

  * Added wvdial support, theoretically. If it doesn't work, someone'll have
    to file a new bug and tell me. (Closes: Bug#76985)

 -- Anthony Towns <ajt@debian.org>  Thu, 28 Dec 2000 21:28:47 +1000

ifupdown (0.6.4-1) unstable; urgency=low

  * New upstream release. Removes a bashism from the makefile, and uses
    ferror() correctly (hopefully) (Closes: Bug#75279, Bug#76086)

  * Add example that checks a MAC address is what it should be. (Closes:
    Bug#76198)

 -- Anthony Towns <ajt@debian.org>  Sun, 19 Nov 2000 15:33:22 +1000

ifupdown (0.6.3-1) unstable; urgency=low

  * New upstream release. Debian patches incorporated upstream, and a
    big fix wrt memory allocation.

 -- Anthony Towns <ajt@debian.org>  Fri, 20 Oct 2000 18:38:10 -0700

ifupdown (0.6.2pr-7) unstable; urgency=low

  * Rename to ifupdown. Let's see what breaks.

  * Add pointopoint option for static inet interfaces. (Closes: Bug#74563)

  * Updating to 0.6.x fixes some problems:
        --scheme no longer exists (Closes: Bug#54814)
        line numbers are reported (Closes: Bug#62542)
        you can use $IFACE in /e/n/interfaces (Closes: Bug#71779)

 -- Anthony Towns <ajt@debian.org>  Mon, 16 Oct 2000 19:30:54 -0700

ifupdown0.6 (0.6.2pr-6) unstable; urgency=low

  * Cleanup /etc/network/ifstate when booting (it will be wrong
    if the system crashed).

  * This should be enough for ifupdown.deb to be updated, hopefully.

 -- Anthony Towns <ajt@debian.org>  Fri, 13 Oct 2000 19:41:34 -0700

ifupdown0.6 (0.6.2pr-5) unstable; urgency=low

  * The previous few uploads should've fixed most of the bugs
    described in 72872. (Closes: Bug#72872)

  * Add .sh suffixes to the example mapping scripts.
  * Fix a typo in postinst (interface *file* not files)
  * Add a "press enter to continue" if the /e/n/i update fails. 

  * Moved /var/run/ifupdown.state to /etc/network/ifstate. Gross.
    (Closes: Bug#74312)

 -- Anthony Towns <ajt@debian.org>  Sat,  7 Oct 2000 23:52:02 -0700

ifupdown0.6 (0.6.2pr-4) unstable; urgency=low

  * Automatically update /etc/network/interfaces, hopefully. 

 -- Anthony Towns <ajt@debian.org>  Sat,  7 Oct 2000 21:53:21 -0700

ifupdown0.6 (0.6.2pr-3) unstable; urgency=low

  * Started work on automatically converting from 0.5.x config format to
    0.6.x.
  * Move the example from /usr/share/doc/ifupdown to ifupdown0.6.
  * Add some example mapping scripts. 

 -- Anthony Towns <ajt@debian.org>  Sat,  7 Oct 2000 18:15:10 -0700

ifupdown0.6 (0.6.2pr-2) unstable; urgency=low

  * Note that dhcpcd works with any kernel, not just 2.0 and 2.2.
  * Remove the "noauto" keyword from the manpage. Ooopsy.
  * Create /etc/network/if-*.d directories in preinst.
  * Update the example-etc-network-interfaces to use the auto keyword.

 -- Anthony Towns <ajt@debian.org>  Sun, 24 Sep 2000 17:05:21 -0700

ifupdown0.6 (0.6.2pr-1) unstable; urgency=low

  * New upstream release.
  * Forward port some fixes from the last .deb that I hadn't put in the
    upstream source. Whoops.

  * This is a beta package that doesn't upgrade cleanly from ifupdown. It's
    for testing purposes only.

 -- Anthony Towns <ajt@debian.org>  Sun, 24 Sep 2000 16:05:25 -0700

ifupdown (0.5.5pr-3) unstable; urgency=low

  * debian/rules: Adjusted to *always* build from scratch if noweb is
    installed, to ensure that the various .c and .defn files are updated
    wherever possible. This should fix the problem where the updated
    inet6.defn wasn't being included, even after -2, amongst others.

 -- Anthony Towns <ajt@debian.org>  Mon, 28 Aug 2000 12:40:28 +1000

ifupdown (0.5.5pr-2) unstable; urgency=low

  * debian/rules: chmod +x any scripts that are created when the diff is
    applied. (Closes: Bug#70030)

  * ifupdown.nw: Forward port lost changes from netbase 3.18-4.
    (Closes: Bug#69723)
  * ifupdown.nw: Specify interface explicitly when adding default routes,
    and explicitly remove the route when deconfiguring an interface.
    (Closes: Bug#63071, Bug#67796)

  * debian/control: Add dependency on net-tools.

 -- Anthony Towns <ajt@debian.org>  Sun, 27 Aug 2000 17:47:01 +1000

ifupdown (0.5.5pr-1) unstable; urgency=low

  * Thought through and removed build-dependency on noweb. This involves
    changing what I put in the .orig.tar.gz. (Closes: Bug#68869)

 -- Anthony Towns <ajt@debian.org>  Sat, 19 Aug 2000 18:09:09 +1000

ifupdown (0.5.5-1) unstable; urgency=low

  * Split from netbase.

 -- Anthony Towns <ajt@debian.org>  Mon, 17 Jul 2000 08:24:56 +1000