aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 54c718ad33edeab0c4db9374555950fcdf4262e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2000-03-07  Bill Nottingham  <notting@redhat.com>

	* src/minilogd.c:
	don't ignore stat return code

	* initscripts.spec, rc.d/init.d/network:
	handle sysctl upgrades better ; re-run sysctl on network start

	* sysctl.conf, sysctl.conf.sparc:
	add an extra newline

2000-02-24  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	allow for spaces in lines that are read

2000-02-23  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't read commented raiddev entries

2000-02-21  Than Ngo  <than@redhat.com>

	* rc.d/init.d/network: ignore ippp devices

	* sysconfig/network-scripts/ifdown-post:
	PATH is not set -> added PATH=/sbin:/usr/sbin:/bin:/usr/bin

2000-02-21  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	*** empty log message ***

2000-02-21  Florian La Roche  <laroche@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	Fix typo in ifup-post.

2000-02-21  Than Ngo  <than@redhat.com>

	* rc.d/init.d/network: ignore ippp devices

	* sysconfig/network-scripts/ifdown-post:
	PATH is not set -> added PATH=/sbin:/usr/sbin:/bin:/usr/bin

2000-02-21  Florian La Roche  <laroche@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	Fix typo in ifup-post.

2000-02-18  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: remove mtab~~ too

2000-02-17  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	support for isdn stuff

2000-02-16  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: sanitize repair prompt

2000-02-14  Bill Nottingham  <notting@redhat.com>

	* sysconfig.txt:
	document /etc/sysconfig/desktop

2000-02-14  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec:
	add which as dependency for bug 9416

2000-02-08  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, rc.d/rc.sysinit:
	load modules, not aliases. Also, load sound-slot-0 if aliased

2000-02-07  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec:
	whoops, forgot to update changelog in .spec

	* ChangeLog, rc.d/rc.sysinit:
	fix check for /var/*/news, work around for bug #9140

	* ChangeLog, initscripts.spec, lang.csh:
	check that LC_ALL/LANG/LINGUAS/TERM are set before we use them in lang.csh

2000-02-05  Nalin Dahyabhai  <nalin@redhat.com>

	* rc.d/init.d/single:
	whoops, single should really check that it got start before it
	does anything

	* initscripts.spec, rc.d/init.d/random:
	fix bug 9102

2000-02-04  Bill Nottingham  <notting@redhat.com>

	* lang.csh, lang.sh:
	if LC_ALL/LINGUAS == LANG, don't set them

2000-02-02  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec:
	add glib-devel to buildprereq

	* rc.d/init.d/network, sysconfig/network-scripts/ifup-routes:
	fix handling of bizarro linuxconf routes

	* ChangeLog, initscripts.spec:
	obsolete sapinit (a SAP sysctl package)

2000-02-01  Nalin Dahyabhai  <nalin@redhat.com>

	* ChangeLog, sysconfig/network-scripts/network-functions:
	don't change DEVICE when bringing up default route

	* sysconfig/network-scripts/network-functions:
	AAAACK! wrong IP for default route!

	* src/shvar.c, src/shvar.h:
	non-critical changes to shvar to sync with rp3's copy

	* initscripts.spec, src/shvar.c:
	shvar cleanup

2000-02-01  Nalin Dahyabhai  <nalin@redhat.com>

	* src/shvar.c:
	make svNewFile actually fail if file doesn't exist, add svCreateFile
	that ignores this error

	* sysconfig/network-scripts/network-functions
	fix wrong default route ip in network-functions
	remove DEVICE=GATEWAYDEV weirdness

	* sysconfig/network-scripts/ifdown-post:
	attempt to reset the default route in case we dropped it for PPP

	* src/ipcalc.1:
	document the "--silent" option

	* src/shvar.c:
	strtok() and other cleanups

	* rc.d/rc.sysinit:
	make symlinks for System.map and module-info automatically

2000-01-31  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	set hostname only on boot

	* rc.d/init.d/network:
	bring down *all* interfaces on network stop

	* src/initlog.c, src/process.c:
	fix some warnings on alpha

	* rc.d/init.d/network, sysconfig/network-scripts/ifup:
	fix logic of boot-time interfaces somewhat

	* src/ppp-watch.c:
	return code of socket is -1, not 0

2000-01-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	get rid of warning when /var/lock and /var/run are empty

2000-01-24  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't blow away /var/run/news on reboot

2000-01-21  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	change grep slightly

	* rc.d/rc.sysinit:
	don't load disabled modules

	* rc.d/init.d/functions:
	fix pidof calls in pidofproc

	* rc.d/rc.sysinit:
	don't load disabled modules

	* rc.d/init.d/functions:
	fix pidof calls in pidofproc

	* src/process.c:
	take out some pointless code

	* rc.d/init.d/functions:
	add --user option to daemon

2000-01-20  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	remove mtab~ files earlier

2000-01-19  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	don't munge resolv.conf if DNS1 is in there somewhere already

2000-01-17  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	fix quoatacheck for non-root

	* initscripts.spec: bump procps dependency

2000-01-14  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	remove ps|grep|awk construct

2000-01-13  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ipx:
	fix ifup-ipx (#8407)

	* rc.d/rc.sysinit:
	terminate raid start message with newline

2000-01-12  Bill Nottingham  <notting@redhat.com>

	* src/Makefile: link popt statically

2000-01-10  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	ignore loopfs when umounting

2000-01-06  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't assume ARC clock from MILO

1999-12-30  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network:
	don't call non-existant ipv4_forward_set

1999-12-29  ewt  <ewt@redhat.com>

	* Makefile:
	make check shouldn't try to pipe ELF executables thorugh bash!

	* initscripts.spec:
	removed sh-utils prereq which breaks the dependency chain

1999-12-28  Bill Nottingham  <notting@redhat.com>

	* sysctl.conf, sysctl.conf.sparc:
	add files

	* Makefile, initscripts.spec, rc.d/init.d/network, rc.d/init.d/single, rc.d/rc.sysinit, sysconfig/init:
	switch from echoing values into /proc/sys to using sysctl

1999-12-13  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: move buildroot

1999-12-08  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	unmount /proc after we're done with it.

1999-12-08  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	unmount /proc after we're done with it.

1999-12-06  Michael K. Johnson  <johnsonm@redhat.com>

	* ChangeLog, initscripts.spec:
	4.71 release

	* src/ppp-watch.c:
	redial after RETRYTIMEOUT on script failure

	* src/ppp-watch.c: tyops

	* src/ppp-watch.c:
	handle control-C and such on parent right
	use sigaction

	* sysconfig/network-scripts/ifup-ppp:
	Fix suggested by Adam P. Jenkins, tests fine here, may improve CHAP as well.

1999-12-03  Michael K. Johnson  <johnsonm@redhat.com>

	* src/ppp-watch.c: open fds, get lock/pid file names right

1999-12-03  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: y.a. typo

1999-11-30  Bill Nottingham  <notting@redhat.com>

	* src/minilogd.c:
	duh - use dgram to talk to real syslogd

	* initscripts.spec:
	fix modutils dependencies

1999-11-30  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec:
	fix modutils dependencies

1999-11-29  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	make sound detection consistent

1999-11-28  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	this makes more sense

	* rc.d/init.d/network:
	yet another typo. grr. arrgh.

1999-11-24  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: fix other syntax error

	* sysconfig/network-scripts/ifup:
	don't add default loopback route

	* rc.d/rc.sysinit: fix typo

1999-11-22  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: releasing 4.67

	* src/ppp-watch.c:
	comments are dangerous; sometimes they disagree with code...

	* sysconfig.txt: DEBUG documented

1999-11-22  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-aliases:
	call linuxconf for linuxconf aliases

	* lang.csh, lang.sh:
	turn off executable bit

	* rc.d/rc.sysinit:
	load mixer settings for monolithic sound too

1999-11-19  Michael K. Johnson  <johnsonm@redhat.com>

	* src/ppp-watch.c:
	try not to fill up the logs with pppd failures

	* src/Makefile, src/ppp-watch.8:
	added ppp-watch man page

	* src/usernetctl.1, src/usernetctl.8:
	usernetctl is a system command

	* src/usernetctl.1:
	usernetctl is an internal wrapper program

	* sysconfig/network-scripts/ifup-ppp:
	make netcfg work by allowing device name to be full path to ifcfg file

1999-11-17  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	only munge /boot/kernel.h if there's a change

1999-11-16  Bill Nottingham  <notting@redhat.com>

	* sysconfig.txt: document ARP variable

	* sysconfig/network-scripts/ifup:
	add ARP variable use

	* rc.d/rc.sysinit:
	look for fonts that aren't psf.gz

	* lang.sh: fix logic in lang.sh

	* service:
	update service (do status probes) <ivanyi@internet.sk>

	* sysconfig/network-scripts/ifup:
	add default route but no gateway <hanecak@megaloman.com>

1999-11-15  Bill Nottingham  <notting@redhat.com>

	* src/initlog.c:
	close configuration file descriptor

1999-11-12  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-ppp:
	allow pppd to set the default route

	* sysconfig/network-scripts/ifup-ppp:
	move PPPOPTIONS to the end
	use noauth always to work around new defaultroot behaviour

1999-11-10  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit, sysconfig/init:
	control stop-a differently than sysrq

1999-11-08  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc, rc.d/rc.sysinit:
	use /var/run/confirm for interactive, not /tmp/confirm

1999-11-08  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-ppp:
	try to make CHAP work in cases where it currently fails

1999-11-05  Michael K. Johnson  <johnsonm@redhat.com>

	* src/ppp-watch.c:
	careful about killing processes...

	* src/ppp-watch.c: terminate usage message

	* src/ppp-watch.c:
	try to fix double-dialing problem

1999-11-03  Bill Nottingham  <notting@redhat.com>

	* src/initlog.conf:
	make comments a little more clear.

	* initscripts.spec:
	explicitly specify some permissions

1999-11-02  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig.txt, sysconfig/network-scripts/ifup-post:
	DNS{1,2} useful for more than just PPP

	* lang.csh: fix security hole

1999-10-27  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec:
	change dependency from psmisc to /sbin/fuser

	* initscripts.spec, rc.d/rc.sysinit:
	hwclock is now on alpha, too.

1999-10-27  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	add new nameserver entries as well as replacing nameserver entries

1999-10-25  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions, rc.d/rc.sysinit, src/consoletype.1, src/consoletype.c, src/Makefile, initscripts.spec:
	fix console checking with new consoletype program (from jakub)

	* rc.d/init.d/halt:
	turn off quotas before remounting

1999-10-22  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-ipx:
	ipx_interface is in /sbin.

	* rc.d/rc.sysinit:
	call reboot -f to avoid silliness

1999-10-18  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	only load mixer settings if we loaded a soumd module

	* rc.d/init.d/network:
	handle weird linuxconf 'any' static routes

1999-10-17  Bill Nottingham  <notting@redhat.com>

	* src/process.c: oops. DWIM, not as I say.

1999-10-14  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: fix typo

1999-10-12  Matt Wilson  <msw@redhat.com>

	* initscripts.spec, prefdm:
	updated

1999-10-11  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-aliases:
	add support for linuxconf aliases

	* rc.d/rc.sysinit: fix for Jensens.

1999-10-06  Bill Nottingham  <notting@redhat.com>

	* service: fix it. Really, we mean it.

1999-10-05  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit, sysconfig/init, sysconfig.txt:
	control stop-a like magic sysrq

1999-10-05  Jakub Jelinek  <jakub@redhat.com>

	* rc.d/rc.sysinit:
	If /etc/sysconfig/keyboard is not present (on serial console), don't complain.

1999-10-04  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	check for aumix-minimal before execution

1999-10-02  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, rc.d/rc.sysinit, src/loglevel.c, src/Makefile:
	duh. can we say, duplicated functionality?

1999-09-30  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.local:
	wow, that was broken. I wonder how it worked before.

1999-09-29  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	add an extra awk check to make sure we omit root fs.

	* initscripts.spec: req. e2fsprogs >= 1.15

1999-09-28  Michael K. Johnson  <johnsonm@redhat.com>

	* src/ppp-watch.c:
	recover if dead daemon left pidfile

	* src/ppp-watch.c:
	exit after deleting pidfile...

	* src/ppp-watch.c:
	really fix pidfile locking...

	* src/ppp-watch.c: proper file locking

1999-09-26  Bill Nottingham  <notting@redhat.com>

	* lang.csh: typo

1999-09-24  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: use fsck's completion bar

	* lang.csh, lang.sh:
	locale: C -> en_US

1999-09-23  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: new version

	* src/ppp-watch.c:
	kill nicely, try to hang up modem

	* src/ppp-watch.c:
	be more careful about killing

	* initscripts.spec, src/ppp-watch.c:
	make ppp-watch kill leftover dialer more reliably

1999-09-23  Bill Nottingham  <notting@redhat.com>

	* src/initlog.1:
	update man page to document config file

1999-09-21  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network:
	add a "DEFRAG_IPV4" setting

1999-09-21  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: new version 4.45

	* sysconfig/network-scripts/ifup-ppp:
	changed defaults

1999-09-20  Bill Nottingham  <notting@redhat.com>

	* Makefile, sys-unconfig.8:
	add sys-unconfig man page

	* rc.d/rc.sysinit: just run 'passwd root'

	* rc.d/rc.sysinit:
	look in /proc/cpuinfo for arc console

	* src/process.c: don't dup stdin.

	* rc.d/init.d/functions:
	pass /dev/null as stdin to daemons.

	* rc.d/rc:
	Don't run rc.local through initlog.

	* sysconfig/network-scripts/ifcfg-lo:
	add note about conflicts with gated.

	* rc.d/init.d/halt: just call swapoff once

	* rc.d/init.d/halt: typo

	* rc.d/init.d/halt:
	do process splatting for final umount too.

	* rc.d/init.d/netfs:
	don't use expr, but require bash to do math

	* rc.d/init.d/halt:
	Don't use cut, it's in /usr/bin

	* rc.d/rc.sysinit:
	use kill & pidof, not killall (no /usr)

	* initscripts.spec, rc.d/init.d/netfs:
	take out call to lsof - not needed

	* lang.csh, lang.sh, sysconfig.txt:
	some i18n fixes from Peter Ivanyi (ivanyi@internet.sk)
	- sysconfig.txt was wrong
	- add latin2-ucw to ACMs

1999-09-18  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	define uniprocessor in boot/kernel.h too

1999-09-17  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	load/save mixer settings here.

1999-09-14  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	grep file, not cat file | grep

1999-09-13  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions, sysconfig/init:
	Duh. Use different terminal escape.

1999-09-13  Michael K. Johnson  <johnsonm@redhat.com>

	* ChangeLog, initscripts.spec:
	new version 4.41

	* sysconfig/network-scripts/ifup-ppp, initscripts.spec:
	new --remotename option to wvdial

1999-09-13  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	i before e....

1999-09-13  Michael K. Johnson  <johnsonm@redhat.com>

	* src/ppp-watch.c:
	tried to add backgrounding at boot time

1999-09-13  Bill Nottingham  <notting@redhat.com>

	* prefdm: get rid of which output

	* sysconfig/network-scripts/ifdown-post:
	add support for an ifdown-local

	* rc.d/rc.sysinit: simplify raid startup a little

1999-09-13  johnsonm  <johnsonm@redhat.com>

	* src/ppp-watch.c:
	do not run multiple copies
	setsid/setpgid seems to help...

1999-09-13  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	fix swapoff so it's not called with no args

1999-09-11  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/killall: require bash

	* rc.d/rc.local:
	fix for number of processor check. This should work and be portable.

1999-09-10  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec:
	chkconfig --del in %preun, not %postun

	* rc.d/init.d/halt: use killall5, not kill

	* sysconfig/network-scripts/ifup:
	add explicit 'dev'. Could help in some cases, I suppose.

1999-09-10  johnsonm  <johnsonm@redhat.com>

	* src/ppp-watch.c: report failure

1999-09-09  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	swapoff swap that isn't in /etc/fstab, too.

1999-09-08  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: new version

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	make ifdown synchronous modulo timeout

1999-09-07  Bill Nottingham  <notting@redhat.com>

	* sysconfig/init, rc.d/rc.sysinit, sysconfig.txt:
	allow turning off of 'press 'i' prompt'

	* prefdm: add path to prefdm

1999-09-07  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/network-functions:
	work right in the background

	* sysconfig/network-scripts/ifup-ppp:
	work with ppp-watch

	* src/ppp-watch.c:
	do not overload physicalDevice
	sleep only when appropriate

1999-09-07  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	add an 'unconfigure' sort of thing.

1999-09-07  Michael K. Johnson  <johnsonm@redhat.com>

	* src/Makefile: link statically

	* src/ppp-watch.c:
	seems to work for basic operation

	* sysconfig/network-scripts/ifup-post:
	do not read /etc/resolv.conf forever...

1999-09-07  Bill Nottingham  <notting@redhat.com>

	* sysconfig/init, rc.d/rc.sysinit, sysconfig.txt:
	allow turning off of 'press 'i' prompt'

	* prefdm: add path to prefdm

1999-09-07  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/network-functions:
	work right in the background

	* sysconfig/network-scripts/ifup-ppp:
	work with ppp-watch

	* src/ppp-watch.c:
	do not overload physicalDevice
	sleep only when appropriate

1999-09-07  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	add an 'unconfigure' sort of thing.

1999-09-07  Michael K. Johnson  <johnsonm@redhat.com>

	* src/Makefile: link statically

	* src/ppp-watch.c:
	seems to work for basic operation

	* sysconfig/network-scripts/ifup-post:
	do not read /etc/resolv.conf forever...

	* initscripts.spec, ppp/ip-up, src/ppp-watch.c, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp:
	first attempt at integrating ppp-watch

1999-09-06  Michael K. Johnson  <johnsonm@redhat.com>

	* src/Makefile, src/ppp-watch.c, src/shvar.c, src/shvar.h:
	first pass at ppp-watch

	* sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-ppp, sysconfig.txt:
	DEFROUTE defaults on; PEERDNS documented and defaults on

	* sysconfig/network-scripts/ifup-ppp:
	chat script only needs to exist if wvdial not in use

1999-09-04  Bill Nottingham  <notting@redhat.com>

	* prefdm:
	Wow. That's *brooooooooooooooooken*.

1999-09-03  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/netfs:
	oops, don't try to remount network filesystems with mount -a.

	* initscripts.spec: require lsof

1999-09-02  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	oops. reversed logic in killproc.

1999-09-02  Bill Nottingham  <notting@redhat.com>

	* src/getkey.c, src/Makefile, rc.d/init.d/functions, rc.d/rc, rc.d/rc.sysinit:
	add interactive prompt to make Cristian & Preston happy

1999-08-31  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit, sysconfig/init, sysconfig.txt:
	disable magic sysrq by default

	* initscripts.spec: make utmp group 22

1999-08-30  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/netfs:
	new NFS unmounting stuff from Bill Rugolsky <rugolsky@ead.dsa.com>

1999-08-25  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-sl: typo

	* rc.d/rc.sysinit: ditto

	* rc.d/rc.sysinit: more raid fixes

1999-08-25  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: more raid fixes

1999-08-24  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifcfg-lo:
	give lo a name for usernet

	* sysconfig.txt:
	oops, wvdial does not override those

1999-08-24  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-sl:
	dip apparently goes into background now. (#3361)

1999-08-21  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: change onboot grep

	* service:
	fix this. this has been broke for a while

1999-08-20  Bill Nottingham  <notting@redhat.com>

	* Makefile: don't check csh file with bash

	* lang.csh: add lang.csh. Might even work.

	* sysconfig/network-scripts/ifup:
	add option to pass hostname with pump

1999-08-20  Bill Nottingham  <notting@redhat.com>

	* Makefile: don't check csh file with bash

	* lang.csh: add lang.csh. Might even work.

	* sysconfig/network-scripts/ifup:
	add option to pass hostname with pump

1999-08-19  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp:
	wvdial/too much ifdown-post

1999-08-19  Bill Nottingham  <notting@redhat.com>

	* src/process.c:
	I don't remember smoking crack, but I must have been...

	* rc.d/rc.sysinit:
	depmod exits with 0 even with unresolved dependencies. Bad.

1999-08-19  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp:
	wvdial/too much ifdown-post

1999-08-19  Bill Nottingham  <notting@redhat.com>

	* src/process.c:
	I don't remember smoking crack, but I must have been...

	* rc.d/rc.sysinit:
	depmod exits with 0 even with unresolved dependencies. Bad.

1999-08-18  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig.txt:
	more updates relative to wvdial

1999-08-17  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: specspo fix.

1999-08-16  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: change kernel boot define

	* rc.d/rc.sysinit: add a boot_kernel.h file

1999-08-13  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec, sysconfig.txt, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp:
	use new pppd

1999-08-13  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	remove stuff for setting preferred link

	* rc.d/rc.sysinit:
	new raid startup stuff from Doug

1999-08-10  Bill Nottingham  <notting@redhat.com>

	* src/initlog.conf, src/initlog.c:
	ignore anything before a ^H
	ignore twiddles on lines by themselves
	allow BOL/EOL matching

1999-08-10  Erik Troan  <ewt@redhat.com>

	* src/ipcalc.c: added help/usage messages

1999-08-10  Bill Nottingham  <notting@redhat.com>

	* src/initlog.conf, src/initlog.c:
	ignore anything before a ^H
	ignore twiddles on lines by themselves
	allow BOL/EOL matching

1999-08-10  Erik Troan  <ewt@redhat.com>

	* src/ipcalc.c: added help/usage messages

1999-08-06  Bill Nottingham  <notting@redhat.com>

	* src/initlog.c:
	what's that debugging code doing there?

1999-08-04  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-ppp:
	take advantage of userpeerdns

1999-08-04  Bill Nottingham  <notting@redhat.com>

	* sysconfig.txt:
	document keytable stuff a little more

1999-08-02  Bill Nottingham  <notting@redhat.com>

	* prefdm: fix typo

	* Makefile:
	add a 'make check' target to catch typos.

	* sysconfig/network-scripts/ifup-ppp:
	fix typo

1999-08-02  Bill Nottingham  <notting@redhat.com>

	* Makefile:
	add a 'make check' target to catch typos.

	* sysconfig/network-scripts/ifup-ppp:
	fix typo

1999-07-29  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: fix time %post

	* initscripts.spec, prefdm, Makefile:
	add prefdm as a real file.

	* rc.d/rc.sysinit:
	set /etc/HOSTNAME no matter what...

1999-07-28  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec, sysconfig.txt, sysconfig/network-scripts/ifup-ppp:
	first try at basic integrated wvdial support

1999-07-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	trap sigpipe in shell...

1999-07-26  Bill Nottingham  <notting@redhat.com>

	* ppp/ip-up:
	added stuff for heartbeat monitoring

1999-07-26  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup:
	take out some code that's never run...

	* sysconfig/network-scripts/ifdown-aliases, sysconfig/network-scripts/ifup-aliases:
	speedup fixes for ifup-aliases from David Harris (dharris@drh.net)

1999-07-25  Bill Nottingham  <notting@@redhat.com>

	* src/process.c:
	- increase buffer from 2K to 8K
	- add regexp checking
	- add a usleep() call so we don't read 4000 twiddles from fsck

	* src/Makefile: install initlog.conf

	* src/initlog.c:
	add config file parsing, strip data before a \r

	* src/initlog.conf: initial checkin

1999-07-24  Bill Nottingham  <notting@@redhat.com>

	* src/process.c:
	when 'rexec'ing, run initlog as child, not parent.
	Ignore SIGPIPE when writing to initlog FD.

	* rc.d/init.d/functions:
	When we write to initlog's FD, write in subshell so we don't die with SIGPIPE

	* src/process.c:
	oops, logging was broken 'cos we were passing bogus command line

1999-07-22  Donnie Barnes  <djb@@redhat.com>

	* src/usleep.c: added --oot option

	* src/usleep.c: minor nit

	* src/usleep.c:
	fixed bug oot introduced into my code

1999-07-22  Erik Troan  <ewt@@redhat.com>

	* src/usleep.c: added missing include <sigh>

	* src/Makefile, src/usleep.1, src/usleep.c:
	popt'd usleep (djb made me)

1999-07-21  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit:
	mount /proc before checking / so that volume labels can work

1999-07-15  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.local:
	"processor" isn't common to all architectures. But bogomips is! :)

1999-07-09  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec:
	fix path sed of zonefile location

1999-07-08  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec:
	fix timeconfig non-dependency

	* ChangeLog, initscripts.spec:
	require new setup (inputrc)

	* inputrc: remove file

	* Makefile, initscripts.spec, lang.sh, sysconfig.txt:
	more fixes for i18n from nkbj@image.dk, move inputrc to setup package

	* lang.sh: revert changes for time being

	* src/initlog.c, src/process.c, src/testd.c, src/usleep.c:
	fix some compiler warnings (nkbj@image.dk)

1999-07-08  Cristian Gafton  <gafton@@redhat.com>

	* rc.d/init.d/netfs: Change the run levels to 25/75, so that the nfs lock 
	daemons will be started and killed in the correct order.
	* Makefile: remove *~ on make clean

1999-07-07  Bill Nottingham  <notting@@redhat.com>

	* adjtime, lang.sh, rc.d/init.d/network:
	fixes from nkbj@image.dk

1999-07-06  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec:
	fix killall links (#3889)

	* rc.d/init.d/functions:
	oops, can't short-circuit backtics

1999-07-01  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/network:
	don't bring down non-existent IPX nets

1999-06-29  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit:
	don't source /etc/sysconfig/i18n if it's not there...

	* rc.d/init.d/functions:
	oops, don't call tty before /usr is mounted

1999-06-25  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit:
	don't create module-info, System.map links - they aren't needed

1999-06-22  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	always set clock first thing (req. timeconfig 3.0)
	touch utmpx/wtmpx if needed

1999-06-21  Bill Nottingham  <notting@@redhat.com>

	* syssconfig/network-scripts/ifup-aliases:
	um, can't 'return' from a shell script

	* src/process.c:
	fix bug in parsing command arguments

	* src/doexec.c:
	make doexec not segfault if called with no args....

1999-06-18  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-routes:
	remove commented-out linuxconf support ;)

1999-06-17  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions:
	check for the presence of a tty before doing anything rash...

	* rc.d/rc.sysinit:
	add SRM clock support, take out hwclock --adjust

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-routes:
	comment out linuxconf support

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	use INITLOG_ARGS everywhere except fsck, fix typo

	* rc.d/rc.sysinit:
	set the clock if we can read the /etc/localtime link, too

	* rc.d/rc.sysinit:
	set clock as soon as possible...

1999-06-15  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit:
	make setsysfont call smarter

1999-06-14  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	add routes after aliases

	* rc.d/init.d/network:
	don't need to check internal node number...

	* rc.d/rc.sysinit:
	add a space after 'alias sound|midi' so we don't get confused by alsaconf
	stuff

	* sysconfig/network-scripts/ifup-aliases:
	fix so it does aliases in order

	* rc.d/rc.sysinit:
	um, it makes very little sense to touch /var/run/utmp and promptly remove it.

1999-06-07  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: revert raid

1999-05-25  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: don't make relative links to display manager

	* rc.d/init.d/network: don't run ipx_internal_net if both params are 0

1999-05-24  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: comment clean out of /var

	* rc.d/init.d/network: fix restart/cwd problem

1999-05-24  Michael K. Johnson  <johnsonm@@redhat.com>

	* ppp/ip-up: let everyone read /var/run/ppp-*.dev

1999-05-19  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: clean up /var more completely

1999-05-14  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: fix typos

	* rc.d/init.d/network: oops, xargs is on /usr/bin, can't use that.

	* rc.d/rc.sysinit: load modules earlier

1999-05-12  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit:
	be careful about loading st.o

	* rc.d/rc.sysinit:
	Wow, the rhmkvtag stuff has been seriously screwed for 2+ months now.

1999-05-10  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	fix raid start

1999-05-04  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.local: add SMP info to /etc/issue

1999-04-19  Bill Nottingham  <notting@@redhat.com>

	* lang.sh: inputrc is always on

	* initscripts.spec, inputrc: commit inputrc changes

1999-04-18  Matt Wilson  <msw@@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup: typo

1999-04-15  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/single, rc.d/rc: dpn't run rpmnew scripts either

1999-04-13  Bill Nottingham  <notting@@redhat.com>

	* inittab: xdm returns to runlevel 5

	* rc.d/rc.sysinit: set preferred display manager link, fix quotas

	* src/initlog.c: log by default to LOCAL7

	* rc.d/rc: don't run single-user mode through initlog

	* Makefile, initscripts.spec, service:
	add a service script for starting and stopping things. wheeeeeeeeee...

	* inittab: don't run mingetty in runlevel 1

	* rc.d/init.d/single:
	if people want to run scripts in runlevel 1, let them

1999-04-12  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec: add console-tools req, add kernel <= 2.2 conflict

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases:
	remove 2.0 kernel support

	* rc.d/init.d/single: kill kerneld

	* rc.d/rc.sysinit:
	kill kerneld. make sure sound aliases aren't commented out

1999-04-09  Bill Nottingham  <notting@@redhat.com>

	* src/process.c, src/process.h, src/initlog.c, src/initlog.h, src/minilogd.c:
	fixeds for the case where /dev/log exists at boot

1999-04-08  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases:
	check for 2.0 kernels before doing some stuff

	* initscripts.spec: make rc.local config(noreplace)

1999-04-07  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions:
	add a --check to daemon so that we don't look for su's pid

	* rc.d/rc.sysinit: touch wtmp, don't zero it

	* sysconfig/network-scripts/ifup: fix check for non-existent devices

1999-04-07  Erik Troan  <ewt@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	made wtmp, utmp mode 664 and owned by group wtmp

1999-04-06  Bill Nottingham  <notting@@redhat.com>

	* inittab: take out --noclear

	* rc.d/rc.sysinit: do loadkeys nicer

1999-04-06  Michael K. Johnson  <johnsonm@@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-ipx:
	ifup-ipx ./_ confusion fixed

1999-04-06  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: echo after loading keymap

	* setsysfont: look for consolechars in both /bin & /usr/bin

1999-04-06  Erik Troan  <ewt@@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-post:
	run ifup-local as appropriate

1999-04-06  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: don't touch/remove/bother utmpx

	* rc.d/init.d/network:
	make network work for restart if called as ./network

	* lang.sh:
	take out loadunimap, since setsysfont should take care of this

	* Makefile, initscripts.spec, lang.sh:
	add some changes suggested by Peter Ivanyi

	* rc.d/rc.sysinit:
	load keymaps & fonts early. add ncp&smb to the 'don't mount yet' list

1999-04-05  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/network-functions: fix for $PARENTDEVNAME

1999-04-01  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/network: only bring up/shut down boot devices

1999-04-01  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup: fix channel bonding

	* initscripts.spec: add procps to dependencies

	* lang.sh: fix typo

1999-03-31  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: link system.map in all cases, not just old kernels

1999-03-30  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions: fix for pid grep in status

1999-03-29  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: fix depmod logic (preferred really is dead.)

	* sysconfig/network-scripts/ifup: fix test for 2.0/2.2 kernel

1999-03-27  Cristian Gafton  <gafton@@redhat.com>

	* initscripts.spec: new version - added sysvinitfiles as a %doc file

1999-03-26  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/netfs, rc.d/init.d/nfsfs: nfsfs -> netfs.

	* rc.d/init.d/functions: swapped out can be [foo]

	* rc.d/init.d/functions: fix killproc foo SIGNAL so it works sanely

1999-03-24  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: only pass -A to clock if it's /sbin/clock

1999-03-23  Bill Nottingham  <notting@@redhat.com>

	* lang.sh: fix for koi8-r

1999-03-22  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions: if $BOOTUP is already set, don't source config

1999-03-19  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-routes:
	don't run linuxconf if /usr isn't mounted

	* sysconfig/network-scripts/ifup: set macaddr before bootp

1999-03-18  Cristian Gafton  <gafton@@redhat.com>

	* rc.d/rc.sysinit: zero in the /var/run/utmpx file

1999-03-18  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	don't set hostname on ppp/slip (kills X)

1999-03-18  Bill Nottingham  <notting@@redhat.com>

	* src/initlog.c, src/initlog.h, src/process.c:
	don't output error messages if reading commands

	* src/Makefile, src/initlog.c, src/initlog.h, src/process.c:
	gack. don't exit on command format errors from subprocess

	* sysconfig/network-scripts/ifup: Exit the script if pump fails. Doh.

1999-03-16  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec: bump rev to 3.96

	* src/process.c:
	if we are 'in initlog' rewrite output so it goes to initlog

	* src/initlog.c:
	if /dev/log exists on ROFS, that *doesn't* mean syslog is running

	* rc.d/init.d/functions: remove cruft

	* rc.d/init.d/functions: add a 'PASSED' result
	fix ROFS logging to be sane

	* rc.d/rc.sysinit:
	rewrite fsck so you don't get FAILED on a passed check

1999-03-16  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp: fix for CHATPID (bug #1343)

1999-03-15  Bill Nottingham  <notting@@redhat.com>

	* sysconfig.txt: fixes from ultrapenguin - document SYSFONTACM

	* lang.sh: more sysfontacm fixes

	* lang.sh: more support for SYSFONTACM from consoletools

	* setsysfont:
	work with SYSFONTACM and use consolechars from console-tools

	* sysconfig/network-scripts/ifup:
	add routes to non-local subnets if they aren't already there

	* sysconfig/network-scripts/ifup-aliases:
	changes from ultrapenguin (bash2 stuff)

1999-03-15  Michael Johnson  <johnsonm@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: pam_console cleanups

1999-03-15  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec: remove console-tools from deps

1999-03-15  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec: add gawk to dependencies

1999-03-14  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions: change variable name

	* rc.d/init.d/functions, rc.d/rc.sysinit, src/initlog.c:
	if [ 0 ] don't work in shell. *thwap*

1999-03-11  Erik Troan  <ewt@@redhat.com>

	* initscripts.spec: release 2

1999-03-10  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec: remove ifdhcpcdccpdc-done

1999-03-10  Erik Troan  <ewt@@redhat.com>

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	pump actually works now

1999-03-10  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/nfsfs: add a mount -a after nfs mounts

1999-03-10  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/nfsfs: add a mount -a after nfs mounts

1999-03-10  Erik Troan  <ewt@@redhat.com>
	* sysconfig/network-scripts/ifup: use pump for bootp and dhcp
	* sysconfig/network-scripts/ifdhcp-done: obsolete

1999-03-10  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions:
	change to pidofproc suggested by "Mike McHenry" <mmchen@minn.net>

	* src/minilogd.c: ack. Must remove debugging code.

1999-02-26  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions: fix killproc to be more sane

1999-02-25  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: remove random from rc.sysinit

	* rc.d/rc.sysinit: put preferred support back in

	* ChangeLog, sysconfig.txt, sysconfig/init:
	more changes for sysconfig/init

	* rc.d/init.d/functions: ditto

1999-02-23  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit: fix 'force fsck on boot'

1999-02-22  Bill Nottingham  <notting@@redhat.com>

	* Makefile, initscripts.spec, rc.d/init.d/functions, sysconfig/init:
	add default /etc/sysconfig/init
	change raw ansi to echo -e
	add a 'serial' mode that has no ansi escapes

1999-02-19  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/functions:
	$@ -> $*. I knew there was a reason I did that.

1999-02-18  Bill Nottingham  <notting@@redhat.com>

	* rc.d/init.d/single: fie, a missing fi. Also, source functions.

	* rc.d/init.d/functions: $* -> $@

1999-02-13  Cristian Gafton  <gafton@@redhat.com>

	* rc.d/init.d/halt: Attempt a fix for the raid stop code

1999-02-11  Bill Nottingham  <notting@@redhat.com>

	* rc.d/rc.sysinit:
	Remove support for modules/preferred, since we don't need it anymore.

1999-02-10  Bill Nottingham  <notting@@redhat.com>

	* sysconfig/network-scripts/ifdhcpc-done, sysconfig/network-scripts/ifup:
	fix kernel-2.2 double net routes, remove '-x' from ifdhcpc-done

	* inittab:
	turn off xdm in runlevel 5

1999-02-05  Bill Nottingham  <notting@@redhat.com>

	* src/process.c, sysconfig/network-scripts/ifup-aliases:
	bill is a moron. also, fix ifup-aliases for bash2

	* rc.d/init.d/functions:
	add /usr/X11R6/bin to path, so 'daemon xdm' works

1999-02-04  Bill Nottingham  <notting@@redhat.com>

	* initscripts.spec: add changelog entry for this mess

	* src/initlog.h, src/loglevel.c:
	fix syscall to something lots more portable

	* initscripts.spec, src/loglevel.c, sysconfig.txt:
	add loglevel.c, document LOGLEVEL setting

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/rc.sysinit:
	bugfixes for 'old' mode

	* rc.d/init.d/single, rc.d/rc.sysinit:
	swap workaround; kerneld/kmod fixes

	* rc.d/init.d/random, src/Makefile, src/initlog.c, src/process.c, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/rc, rc.d/rc.sysinit:
	fixes

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/rc, rc.d/rc.sysinit, src/initlog.c, src/process.c:
	bugfixes...

1999-02-03  notting  <notting@@redhat.com>

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/network,
	  rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/single, rc.d/rc:
	more initlog changes

        * rc.d/init.d/functions
	wait a little longer for kill -TERM

	* initscripts.spec, rc.d/rc.sysinit, setsysfont,
	  sysconfig/network-scripts/ifup-ppp:
	setsysfont only if font defined 
	do hwclock --adjust
	fix /forcefsck
	fix ifup-ppp (move & to after redirect)

	* Makefile, initscripts.spec, rc.d/init.d/functions,
          rc.d/init.d/network, rc.d/rc, rc.d/rc.sysinit,
	  src/Makefile, src/initlog.1, src/initlog.c,
	  src/initlog.h, src/minilogd.c,
	  src/process.c, src/process.h, sysconfig.txt:
	add initlog stuff. Use %defattr in specfile.
	
	* rc.d/init.d/halt:
	  do "halt -p", "umount -f" in shutdown.

1999-01-25  jbj  <jbj@@redhat.com>

	* rc.d/rc.sysinit:
	Perform quota checking on file systems after they are marked read/write (#719).

	* sysconfig/network-scripts/ifup-ppp:
	Explicitly force RX escape char negotiation if ESCAPECHARS = no (#519).

	* sysconfig/network-scripts/ifup:
	bootpc: 2.2 kernels complain about broadcast and netmask on ifup.
	bootpc: Give slow 10Mbps/100Mbps autodetecting cards a second chance.

	* initscripts.spec: Bump version.

1998-12-06  jbj  <jbj@@redhat.com>

	* sysconfig/network-scripts/ifup-ipx: Bug #205 sez':
	in ifup-ipx script underlines in next line should be
	changes to dots

	for frametype in 802_2 802_3 ETHERII SNAP ; do

	I have verified this to be a bug in the initscripts. If autoprimary
	and and autoframetype is enabled in /etc/sysconfig/network then the
	interface will come up properly. If they are set to no then whatever
	frametypes that are defined in the
	/etc/sysconfig/network-scripts/ifcfg-ethx will not become activated.

1998-11-12  pbrown  <pbrown@@redhat.com>

	* rc.d/init.d/halt, initscripts.spec:
	halt passed the -i flag to disable network interfaces (new halt option).

1998-11-10  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/ifup-aliases, initscripts.spec:
	linuxconf ipalias fix; work with both old and new linuxconf

1998-11-02  notting  <notting@@redhat.com>

	* rc.d/init.d/functions: sort daemons in status() by pid

1998-10-28  notting  <notting@@redhat.com>

	* rc.d/init.d/functions:
	fix status() (was catching instance of initscripts)

1998-10-15  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit: can't have spaces around = in sh

	* rc.d/init.d/halt: fixed shell stuff

	* initscripts.spec: version 3.78

	* rc.d/init.d/halt: raidstop -r doesn't work for 5.2 ;-)

	* initscripts.spec: added raidstop to halt

	* rc.d/init.d/halt: added raidstop stuff

	* initscripts.spec: version 3.77

	* initscripts.spec: fixed raidstart

	* rc.d/rc.sysinit: raidstart doesn't exist! use raidadd/raidrun

1998-10-12  gafton  <gafton@@redhat.com>

	* initscripts.spec, lang.sh, sysconfig.txt: Handle LC_ALL

1998-10-12  pbrown  <pbrown@@redhat.com>

	* initscripts.spec, setsysfont: updated so that setfont always runs.

1998-10-06  gafton  <gafton@@redhat.com>

	* initscripts.spec: New release

	* rc.d/rc.sysinit: Accept all kernel numbers instead of just 2.0.x

1998-10-05  gafton  <gafton@@redhat.com>

	* initscripts.spec: require: e2fsprogs

1998-10-03  gafton  <gafton@@redhat.com>

	* .cvsignore, ChangeLog, initscripts.spec, lang.sh:
	Use SYSTERM, not SYSTEM in lang.sh

1998-09-25  gafton  <gafton@@redhat.com>

	* Makefile, initscripts.spec: New file part of the dist: inputrc

	* lang.sh: Set INPUTRC and LESSCHARSET on linux-lat systems

	* inputrc: New file

1998-09-21  johnsonm  <johnsonm@@redhat.com>

	* rc.d/init.d/functions:
	a few bugs fixed and a few unneeded processes removed

	* sysconfig.txt: updated QUEUE meaning

1998-09-17  johnsonm  <johnsonm@@redhat.com>

	* sysconfig.txt: /etc/sysconfig/sendmail added

1998-09-16  jbj  <jbj@@redhat.com>

	* sysconfig.txt: Document UNIMAP variable.

	* initscripts.spec: Version 3.71.

	* rc.d/rc.sysinit: Raid startup.

	* rc.d/rc: Don't run [KS]??foo.{rpmsave,rpmorig} scripts.

	* setsysfont:
	I've changed /sbin/setsysfont from the RH51 initscripts package to handle
	Unicode fonts. To do this I've added the variable UNIMAP to
	/etc/sysconfig/i18n (It holds the name of the Unicode mapping table.) The
	changes should be backwards compatible.

	Niels Kristian Bech Jensen - nkbj@image.dk - http://www.image.dk/~nkbj/

1998-08-21  jbj  <jbj@@redhat.com>

	* rc.d/rc.sysinit:
	Remove Postgres sockets while booting (problem #816).

1998-08-17  ewt  <ewt@@redhat.com>

	* initscripts.spec: verion 3.70

	* rc.d/rc.local:
	1) only update /etc/issue if /etc/redhat-release is present
	2) use the text of /etc/redhat-releae verbatim; don't add "Red Hat Linux" to
	   the front

1998-08-16  jbj  <jbj@@redhat.com>

	* initscripts.spec, rc.d/init.d/halt, rc.d/rc.sysinit:
	Remove annoying error messages.

1998-08-14  jbj  <jbj@@redhat.com>

	* rc.d/rc.sysinit:
	Remove attempt to avoid running depmod on 2.1.x kernels.

1998-08-01  jbj  <jbj@@redhat.com>

	* rc.d/rc.sysinit: Typo (Hao Li <hli@wag.caltech.edu>)

1998-07-07  jbj  <jbj@@redhat.com>

	* rc.d/init.d/nfsfs, rc.d/init.d/network, initscripts.spec:
	Permit /usr to be NFS mounted.

1998-07-07  johnsonm  <johnsonm@@redhat.com>

	* sysvinitfiles: priority specification

	* sysconfig/network-scripts/ifdown-ppp:
	fix long-standing bug and work with (currently vaporware) newer ps versions

1998-07-07  jbj  <jbj@@redhat.com>

	* sysconfig/network-scripts/ifup-ppp: Invert logic for ESCAPECHARS=yes.

	* sysconfig/network-scripts/ifup-sl, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifdown:
	Always "cd /etc/sysconfig/network-scripts" before sourcing network_functions.

	* sysconfig/network-scripts/ifdown-sl: Bug report:

	I am running dip-3.3.7o-10 and initscripts-3.32-1 on Red Hat 5.0 Intel and
	was unable to terminate an established SLIP connection in the standard
	fashion.  After some hacking around I discovered that the problem
	was that when dip establishes a connection, it changes it's argument
	list to '-dip (IP_ADDRESS)' where IP_ADDRESS is the local IP address.
	This of course breaks the network-scripts handling of the connection.
	I've modified /etc/sysconfig/network-scripts/ifdown-sl to take this
	into account and included the modified file below.  I don't think it
	will work for people with dynamically allocated IP addresses though...

	-Mike Wittman
	support login: wittman@cs.berkeley.edu

1998-07-01  jbj  <jbj@@redhat.com>

	* rc.d/rc.sysinit: Perform rhkmvtag magic with module-info.

	* rc.d/rc.sysinit: Remove debugging "echo ...".

	* rc.d/rc.sysinit:
	Use rhkmvtag to attach modules directory to running kernel.

1998-07-01  ewt  <ewt@@redhat.com>

	* src/usernetctl.c, initscripts.spec:
	USERNET attribute can have "" around it

1998-07-01  jbj  <jbj@@redhat.com>

	* initscripts.spec: Add %defattr for non-root build/install.

	* Makefile: More cvs workarounds.

	* Makefile: Deal with some cvs quirks.

	* initscripts.spec: Bump version.

	* rc.d/init.d/halt: Turn off accounting before unmounting /var.

	* rc.d/rc.sysinit: Correctly check fsck return code for non-root fs.

1998-06-21  jbj  <jbj@@redhat.com>

	* sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup, src/usernetctl.c, rc.d/init.d/network, rc.d/rc.sysinit, initscripts.spec:
	Fix bug track problems (#677, #731, #734, E-mail).

1998-06-07  ewt  <ewt@@redhat.com>

	* initscripts.spec: version 3.66

	* rc.d/rc.sysinit:
	look for bootfile= to set /lib/modules/preferred symlink

1998-06-02  ewt  <ewt@@redhat.com>

	* initscripts.spec: version 3.65

1998-06-01  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit:
	1) if preferred doesn't exist, run depmod -a normally
	2) do proper symlink check for preferred

	* src/Makefile: ipcalc shouldn't be setgid root

1998-05-10  ewt  <ewt@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	be more forcefull about creating preferred directories

1998-05-08  djb  <djb@@redhat.com>

	* initscripts.spec: updated version number

	* ppp/ip-up: added path shit to ip-up

	* initscripts.spec: forgot to increment version number

	* setsysfont: made setsysfont do *nothing* if there is no $SYSFONT

1998-05-06  djb  <djb@@redhat.com>

	* Makefile, initscripts.spec: makefile bug

	* Makefile, initscripts.spec, lang.sh, rc.d/rc.sysinit:
	moved stuff to /etc/profile.d/lang.sh

	* Makefile: minor fix

	* setsysfont: added setsysfont

	* Makefile, initscripts.spec, rc.d/rc.sysinit, sysconfig.txt:
	added added sysconfig/i18n support

1998-05-04  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: added missing files

	* initscripts.spec: new release

1998-05-03  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: more commentary

	* rc.d/init.d/network, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup-routes, sysconfig.txt:
	update to linuxconf 1.11r8 capabilities.
	Full support for IPX as configured by linuxconf.
	Updated sysconfig.txt documentation to reflect new parameters.

1998-05-02  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-routes, initscripts.spec, rc.d/init.d/network:
	linuxconf support

	* rc.d/init.d/network: probe function, more hinting

1998-05-01  ewt  <ewt@@redhat.com>

	* rc.d/init.d/network: added missing ;;

	* rc.d/rc.sysinit: run depmod properly

	* initscripts.spec:
	requires 2.1.85-3 for /lib/modules/preferred directory

	* initscripts.spec: vesrion 3.54

	* rc.d/rc.sysinit: use /lib/modules/preferred symlink

1998-04-30  djb  <djb@@redhat.com>

	* rc.d/init.d/random: various cleanups

	* sysconfig/network-scripts/ifup-plip: plip cleanup

	* rc.d/rc.sysinit:
	rc.sysinit was removing /etc/nologin.  Bad.  Removed.

	* rc.d/init.d/nfsfs: added sourcing of functions

1998-04-24  johnsonm  <johnsonm@@redhat.com>

	* rc.d/rc: info for linuxconf

1998-04-21  johnsonm  <johnsonm@@redhat.com>

	* rc.d/rc.sysinit: handle kmod in 2.1 kernels nicely

1998-04-20  johnsonm  <johnsonm@@redhat.com>

	* rc.d/init.d/random: works better

	* rc.d/init.d/random: reasonable status, restart, reload

	* rc.d/init.d/nfsfs: Added reload function.
	Made status do something other than "command not found".

	* rc.d/init.d/killall: tpyo

	* rc.d/init.d/network: Made some sense of the "network status" command.
	Integrate with linuxconf (works with or without).

1998-04-20  ewt  <ewt@@redhat.com>

	* initscripts.spec: version 3.53

	* rc.d/rc.sysinit: sets up modules symlink properly

	* rc.d/rc.sysinit: added more "" to get rid of some problems

1998-04-14  johnsonm  <johnsonm@@redhat.com>

	* rc.d/rc: only kill things that are currently up

1998-04-05  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit, sysconfig/network-scripts/network-functions:
	moved adding /etc/resolv.conf search path to normal reverse name lookup
	handling

	* initscripts.spec, rc.d/rc.sysinit:
	fixed bugs in kernel-release handling

1998-04-02  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit:
	1) set domain variable if none is set in /etc/sysconfig/network
	2) add search path to /etc/resolv.conf if none is present

1998-03-30  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit:
	make /lib/modules/default point to the proper modules for this kernel

1998-03-22  ewt  <ewt@@redhat.com>

	* sysconfig/network-scripts/ifup: added netmask calculation

	* src/ipcalc.1: added --netmask

	* src/ipcalc.c: added --netmask argument

	* initscripts.spec: version 3.51

	* sysconfig/network-scripts/ifup: fixed network address calculations

	* src/ipcalc.1: fixed man page

1998-03-16  johnsonm  <johnsonm@@redhat.com>

	* sysconfig.txt: document the static-routes file.
	Include documentation for how it *will* be, rather than how it is now ("any").

1998-03-10  johnsonm  <johnsonm@@redhat.com>

	* sysconfig.txt: more detail on ifcfg files

	* sysconfig.txt: first rev to Jacques

1998-03-10  ewt  <ewt@@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	look for ipcalc in /bin, not /sbin

	* sysconfig/network-scripts/network-functions: added missing \

	* src/Makefile: ipcalc should go in /bin, not /sbin

	* sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifup:
	1) added need_hostname and set_hostname functions
	2) changed hostname lookup to use ipcalc

	* initscripts.spec: added ipcalc

	* src/Makefile: added ipcalc.1

	* src/ipcalc.1: added man page

	* src/ipcalc.c: added --hostname option

	* initscripts.spec: version 3.50

	* sysconfig/network-scripts/ifup:
	use ipcalc to calculate netmask and/or broadcast address

	* src/Makefile, src/ipcalc.c: added ipcalc

	* initscripts.spec: version 3.32

	* sysconfig/network-scripts/ifdhcpc-done:
	removed senseless dhcp log in /tmp

1998-03-09  ewt  <ewt@@redhat.com>

	* sysconfig/network-scripts/ifup:
	if bootp fails and there is no fallback IP, take down the device

	* initscripts.spec: added info on 3.31 release

	* Makefile: still more cvs workarounds

	* Makefile: MORE cvs brokenness

	* Makefile: more cvs broknness

	* Makefile: made archive rule work w/ broken cvs

	* sysconfig/network-scripts/ifup: added check for mktemp failure

1998-03-04  johnsonm  <johnsonm@@redhat.com>

	* sysconfig.txt: Initial revision of sysconfig hierarchy description

1998-02-14  johnsonm  <johnsonm@@redhat.com>

	* sysvinitfiles: Took out autoreload tag.

1998-02-13  johnsonm  <johnsonm@@redhat.com>

	* sysvinitfiles: per-config file autoreload

1998-02-12  johnsonm  <johnsonm@@redhat.com>

	* sysvinitfiles: Languages.
	A few more notes on how to do things.

1998-02-10  johnsonm  <johnsonm@@redhat.com>

	* sysvinitfiles: Standard Red Hat copyright

	* sysvinitfiles:
	Added full instructions on writing a System V init script for Red Hat Linux.

1998-02-09  johnsonm  <johnsonm@@redhat.com>

	* sysvinitfiles: pidfile contents are examined after all...

	* sysvinitfiles: Complete list of tags to use in sysv init files

1998-02-06  ewt  <ewt@@redhat.com>

	* src/usernetctl.c: didn't work for cloned devices

1998-01-12  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: /sbin/

	* sysconfig/network-scripts/ifup-routes: /sbin/ isn't always in $PATH

1997-12-31  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit:
	- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
	- the logic for when  /var/lock/subsys/kerneld is touched was backwards

1997-12-30  ewt  <ewt@@redhat.com>

	* initscripts.spec: version 3.30

	* rc.d/rc.sysinit:
	1) tried to get /proc stuff right one more time (uses -t nonfs,proc now)
	2) added support for /fsckoptions
	3) changed 'yse' to 'yes'

1997-12-09  ewt  <ewt@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	1) set domainname to "" if none is specified
	2) version 3.29

	* initscripts.spec: version 3.28

	* rc.d/rc.sysinit: fixed wrong umount

1997-12-08  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit: more /proc mounting fixes

	* initscripts.spec: version 3.27

	* rc.d/rc.sysinit:
	changed how /proc gets mounted so that it ends up in /etc/mtab

1997-12-08  johnsonm  <johnsonm@@redhat.com>

	* Makefile:
	Allow creating new archives without creating a new tag if necessary.

	* initscripts.spec: release 3.26

1997-11-20  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/network-functions: Inheritance was wrong.

1997-11-07  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit: added sound stuff

1997-11-07  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: new version

	* rc.d/init.d/network: Added missing "then"

1997-11-06  johnsonm  <johnsonm@@redhat.com>

	* rc.d/init.d/network:
	only enable/disable forwarding on start, always disable on stop.

	* initscripts.spec: New version

	* sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post:
	PPP debugging fixed.
	PPP Persisting fixed.
	Moved netreport stuff into one place.

1997-11-02  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit: don't mount /proc twice

	* rc.d/rc.sysinit: don't umount /proc after mounting it

1997-10-31  ewt  <ewt@@redhat.com>

	* rc.d/rc.sysinit, initscripts.spec: added isapnp support

1997-10-28  ewt  <ewt@@redhat.com>

	* initscripts.spec: make archive

1997-10-28  djb  <djb@@redhat.com>

	* rc.d/rc: edited comments

	* initscripts.spec: changelog

	* rc.d/init.d/functions: added the ability to 'nice' daemons

	* initscripts.spec, rc.d/init.d/skeleton:
	removed the skeleton initscript (basically useless)

1997-10-28  ewt  <ewt@@redhat.com>

	* rc.d/init.d/single: single user mode restarts kerneld

	* rc.d/rc.sysinit: touch /var/lock/subsys/kernel

	* sysconfig/network-scripts/ifup, initscripts.spec:
	1) fixed dhcp problem
	2) version 3.21

1997-10-23  djb  <djb@@redhat.com>

	* initscripts.spec: %changelog

	* rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/network:
	added status|restart to all scripts

1997-10-23  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: New version.

	* rc.d/init.d/random, initscripts.spec:
	touch random seed file before chmoding it.

1997-10-21  ewt  <ewt@@redhat.com>

	* sysconfig/network-scripts/ifup:
	set hostname from bootp if hostname = (none)

1997-10-15  ewt  <ewt@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: 1) changed version to 3.19
	2) added NISDOMAIN support

1997-10-15  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: random seed protected from sight...

	* rc.d/init.d/random: Make random seed file mode 600.

1997-10-14  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: ppp sleep bug fixed.

	* sysconfig/network-scripts/ifup-ppp:
	Die if ifdown-ppp was called on the device during the sleep.

1997-10-13  ewt  <ewt@@redhat.com>

	* Makefile: grab version from .spec file

	* initscripts.spec, rc.d/init.d/nfsfs, rc.d/init.d/random:
	1) updated .spec file
	2) removed trailing spaces

	* Makefile: added archive rule

	* rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, initscripts.spec:
	1) version 3.18
	2) switched to new chkconfig which doesn't use database file

1997-10-11  ewt  <ewt@@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: fixed rc.sysinit for hwclock

1997-10-10  johnsonm  <johnsonm@@redhat.com>

	* rc.d/rc.sysinit: Only check scsi if it exists.

1997-10-09  ewt  <ewt@@redhat.com>

	* initscripts.spec, rc.d/init.d/functions:
	added ulimit -c 0 to daemon function

1997-10-08  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: new version

	* initscripts.spec: prereq

1997-10-08  djb  <djb@@redhat.com>

	* initscripts.spec: added chkconfig support

1997-10-06  ewt  <ewt@@redhat.com>

	* initscripts.spec: fixed typo

	* initscripts.spec: changed spec file to put version in a single place

	* initscripts.spec: updated version number

	* sysconfig/network-scripts/network-functions:
	fixes for config files which were given w/ fully qualified pathnames

	* sysconfig/network-scripts/ifup:
	Removed pcmcia hacks for releases prior to RH 3.0.3

1997-10-01  johnsonm  <johnsonm@@redhat.com>

	* Makefile, initscripts.spec: Changes for 3.15

	* initscripts.spec: Preparing for 3.14

	* src/usernetctl.c: Only compare variable name, not entire string.

	* src/usernetctl.c: strncmp sense reversed.

1997-09-30  johnsonm  <johnsonm@@redhat.com>

	* src/usernetctl.1, src/usernetctl.c: Added report option for usernet.

	* initscripts.spec: Remove the whole buildroot in %clean

1997-09-29  johnsonm  <johnsonm@@redhat.com>

	* initscripts.spec: Make missing directories.

	* initscripts-3.13.spec:
	Don't want name changing every time; renamed to initscripts.spec

	* initscripts.spec:
	Added changelog entry and added symlinks to spec file.

1997-09-24  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/ifdown: source_config

	* sysconfig/network-scripts/ifup-ppp: CONFIG after daemon daemonizing.

	* sysconfig/network-scripts/ifup-ppp: Fixed potential syntax error.

1997-09-23  djb  <djb@@redhat.com>

	* initscripts-3.13.spec: added Requires mktemp and changelog

	* sysconfig/network-scripts/ifup: added mktemp support

1997-09-23  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-sl:
	Disassociate from controlling tty so SIGHUPs won't be generated.

1997-09-21  johnsonm  <johnsonm@@redhat.com>

	* src/usernetctl.c:
	Fixed allocation bug Erik found, plus a few stylistic points.

1997-09-18  johnsonm  <johnsonm@@redhat.com>

	* src/usernetctl.1, src/usernetctl.c, sysconfig/network-scripts/ifup-sl, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifdown-ppp:
	Support alternative device configurations.

1997-09-18  djb  <djb@@redhat.com>

	* initscripts-3.13.spec, initscripts-3.12.spec: updated spec file

	* rc.d/init.d/functions: Fixed awk bug in pidofproc

1997-09-17  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	Don't print an error if no aliases exist.

1997-09-16  johnsonm  <johnsonm@@redhat.com>

	* rc.d/init.d/network: General cleanup.
	Don't start devices that shouldn't be started.

1997-09-16  djb  <djb@@redhat.com>

	* rc.d/init.d/functions:
	changed the order of the check for process Id...first is /var/run/pid
	and the second is pidof.

1997-09-16  johnsonm  <johnsonm@@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp:
	Bring down pppd even if only ifup-ppp is running, waiting to persist.

1997-09-16  djb  <djb@@redhat.com>

	* initscripts-3.12.spec, rc.d/init.d/functions:
	changed status() to be more intelligent wrt programs that change argv[0]

1997-09-16  johnsonm  <johnsonm@@redhat.com>

	* src/usernetctl.c:
	Users are not required to specify the "ifcfg-" part of the config file name.

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp:
	ifup and ifdown complain if $1 not specified.
	The "ifcfg-" part of the device name is now optional for ifup and ifdown.
	ifdown-ppp kills a pppd's chat session if it is active.
	Generic part of ifup uses MACADDR variable if present.
	ifup-ppp honors DEBUG variable, both for pppd (debug) and chat (-v).

1997-09-16  djb  <djb@@redhat.com>

	* initscripts-3.12.spec: Added spec file to CVS archive.

1997-09-16  ewt  <ewt@@redhat.com>

	* ppp/ip-down, ppp/ip-up, src/Makefile, src/doexec.1, src/doexec.c, src/netreport.1, src/netreport.c, src/testd.c, src/testdinit, src/usernetctl.1, src/usernetctl.c, src/usleep.1, src/usleep.c, sysconfig/network-scripts/ifdhcpc-done, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post:
	Initial import of initscripts sources into CVS

	* ppp/ip-down, ppp/ip-up, src/Makefile, src/doexec.1, src/doexec.c, src/netreport.1, src/netreport.c, src/testd.c, src/testdinit, src/usernetctl.1, src/usernetctl.c, src/usleep.1, src/usleep.c, sysconfig/network-scripts/ifdhcpc-done, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post:
	New file.

	* Makefile, adjtime, inittab, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/skeleton, rc.d/rc, rc.d/rc.local, rc.d/rc.sysinit, sysconfig/network-scripts/ifcfg-lo, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl:
	Initial import of initscripts sources into CVS

	* Makefile, adjtime, inittab, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/skeleton, rc.d/rc, rc.d/rc.local, rc.d/rc.sysinit, sysconfig/network-scripts/ifcfg-lo, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl:
	New file.