summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
blob: fad553dafeb2906e25870d59aeab2263bde7af54 (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
package detect_devices; # $Id$

use diagnostics;
use strict;
use vars qw($pcitable_addons $usbtable_addons);

#-######################################################################################
#- misc imports
#-######################################################################################
use log;
use common;
use devices;
use run_program;
use modules;
use c;

#-#####################################################################################
#- Globals
#-#####################################################################################
my %serialprobe;

#-######################################################################################
#- Functions
#-######################################################################################
sub dev_is_devfs() { -e "/dev/.devfsd" } #- no $::prefix, returns false during install and that's nice :)


sub get() {
    #- Detect the default BIOS boot harddrive is kind of tricky. We may have IDE,
    #- SCSI and RAID devices on the same machine. From what I see so far, the default
    #- BIOS boot harddrive will be
    #- 1. The first IDE device if IDE exists. Or
    #- 2. The first SCSI device if SCSI exists. Or
    #- 3. The first RAID device if RAID exists.

    getIDE(), getSCSI(), getDAC960(), getCompaqSmartArray(), getATARAID();
}
sub hds()         { grep { may_be_a_hd($_) } get() }
sub tapes()       { grep { $_->{media_type} eq 'tape' } get() }
sub cdroms()      { grep { $_->{media_type} eq 'cdrom' } get() }
sub burners()     { grep { isBurner($_) } cdroms() }
sub dvdroms()     { grep { isDvdDrive($_) } cdroms() }
sub raw_zips()    { grep { member($_->{media_type}, 'fd', 'hd') && isZipDrive($_) } get() }
#-sub jazzs     { grep { member($_->{media_type}, 'fd', 'hd') && isJazzDrive($_) } get() }
sub ls120s()      { grep { member($_->{media_type}, 'fd', 'hd') && isLS120Drive($_) } get() }
sub zips()        {
    map { 
	$_->{device} .= 4; 
	$_->{devfs_device} = $_->{devfs_prefix} . '/part4'; 
	$_;
    } raw_zips();
}

sub floppies() {
    require modules;
    my @fds;
    eval { modules::load("floppy") if $::isInstall };
    if (!is_xbox()) {
        @fds = map {
            my $info = (!dev_is_devfs() || -e "/dev/fd$_") && c::floppy_info(devices::make("fd$_"));
            if_($info && $info ne '(null)', { device => "fd$_", devfs_device => "floppy/$_", media_type => 'fd', info => $info });
        } qw(0 1);
    }
        
    my @ide = ls120s() and eval { modules::load("ide-floppy") };

    eval { modules::load("usb-storage") } if usbStorage();
    my @scsi = grep { $_->{media_type} eq 'fd' } getSCSI();
    @ide, @scsi, @fds;
}
sub floppies_dev() { map { $_->{device} } floppies() }
sub floppy() { first(floppies_dev()) }
#- example ls120, model = "LS-120 SLIM 02 UHD Floppy"

sub removables() {
    floppies(), cdroms(), zips();
}

sub get_sys_cdrom_info {
    my (@drives) = @_;

    my @drives_order;
    foreach (cat_("/proc/sys/dev/cdrom/info")) {
	my ($t, $l) = split ':';
	my @l;
	@l = split(' ', $l) if $l;
	if ($t eq 'drive name') {
	    @drives_order = map {
		my $dev = $_;
		find { $_->{device} eq $dev } @drives;
	    } @l;
	} else {
	    my $capacity;
	    if ($t eq 'Can write CD-R') {
		$capacity = 'burner';
	    } elsif ($t eq 'Can read DVD') {
		$capacity = 'DVD';
	    }
	    if ($capacity) {
		each_index {
		    ($drives_order[$::i] || {})->{capacity} .= "$capacity " if $_;
		} @l;
	    }
	}
    }
}

sub get_usb_storage_info_24 {
    my (@l) = @_;

    my %usbs = map {
	my $s = cat_(glob_("$_/*"));
	my ($host) = $s =~ /^\s*Host scsi(\d+):/m; #-#
	my ($vendor_name) = $s =~ /^\s*Vendor: (.*)/m;
	my ($vendor, $id) = $s =~ /^\s*GUID: (....)(....)/m;
	if_(defined $host, $host => { vendor_name => $vendor_name, usb_vendor => hex $vendor, usb_id => hex $id });
    } glob_('/proc/scsi/usb-storage-*') or return;

    #- only the entries matching the following conditions can be usb-storage devices
    @l = grep { $_->{channel} == 0 && $_->{id} == 0 && $_->{lun} == 0 } @l;
    my %l; push @{$l{$_->{host}}}, $_ foreach @l;

    foreach my $host (keys %usbs) {
	my @choices = @{$l{$host} || []} or log::l("weird, host$host from /proc/scsi/usb-storage-*/* is not in /proc/scsi/scsi"), next;
	if (@choices > 1) {
	    @choices = grep { $_->{info} =~ /^\Q$usbs{$host}{vendor_name}/ } @choices;
	    @choices or log::l("weird, can not find the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next;
	    @choices == 1 or log::l("argh, can not determine the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next;
	}
	add2hash($choices[0], $usbs{$host});
    }
    complete_usb_storage_info(@l);

    @l;
}

sub complete_usb_storage_info {
    my (@l) = @_;

    my @usb = grep { exists $_->{usb_vendor} } @l;

    foreach my $usb (usb_probe()) {
	if (my $e = find { $_->{usb_vendor} == $usb->{vendor} && $_->{usb_id} == $usb->{id} } @usb) {
	    $e->{"usb_$_"} = $usb->{$_} foreach keys %$usb;
	}
    }
}

sub get_devfs_devices {
    my (@l) = @_;

    my %h = (cdrom => 'cd', hd => 'disc');

    foreach (@l) {
	$_->{devfs_prefix} = sprintf('scsi/host%d/bus%d/target%d/lun%d', $_->{host}, $_->{channel}, $_->{id}, $_->{lun})
	  if $_->{bus} eq 'SCSI';

	my $t = $h{$_->{media_type}} or next;
	$_->{devfs_device} = $_->{devfs_prefix} . '/' . $t;
    }
}

sub isBurner { 
    my ($e) = @_;
    $e->{capacity} =~ /burner/ and return 1;
      
    #- do not work for SCSI
    my $f = tryOpen($e->{device}); #- SCSI burner are not detected this way.
    $f && c::isBurner(fileno($f));
}
sub isDvdDrive {
    my ($e) = @_;
    $e->{capacity} =~ /DVD/ || $e->{info} =~ /DVD/ and return 1;

    #- do not work for SCSI
    my $f = tryOpen($e->{device});
    $f && c::isDvdDrive(fileno($f));
}
sub isZipDrive { $_[0]{info} =~ /ZIP\s+\d+/ } #- accept ZIP 100, untested for bigger ZIP drive.
sub isJazzDrive { $_[0]{info} =~ /\bJAZZ?\b/i } #- accept "iomega jaz 1GB"
sub isLS120Drive { $_[0]{info} =~ /LS-?120|144MB/ }
sub isRemovableUsb { begins_with($_[0]{usb_media_type} || '', 'Mass Storage') && usb2removable($_[0]) }
sub isKeyUsb { begins_with($_[0]{usb_media_type} || '', 'Mass Storage') && $_[0]{media_type} eq 'hd' }
sub isFloppyUsb { $_[0]{usb_driver} && $_[0]{usb_driver} eq 'Removable:floppy' }
sub may_be_a_hd { 
    my ($e) = @_;
    $e->{media_type} eq 'hd' && !(
	isZipDrive($e) 
           || isLS120Drive($e)
           || begins_with($e->{usb_media_type} || '', 'Mass Storage|Floppy (UFI)')
    );
}

sub get_scsi_driver {
    my (@l) = @_;
    my %host2driver = map { if_(m!.*/(.*)/(.*)!, $2, $1) } glob("/proc/scsi/*/*");
    foreach (@l) {
	if (my $driver = $host2driver{$_->{host}}) {
	    $_->{driver} = $driver;
	}
    }
}

sub getSCSI_24() {
    my $err = sub { log::l("ERROR: unexpected line in /proc/scsi/scsi: $_[0]") };

    my ($first, @l) = common::join_lines(cat_("/proc/scsi/scsi")) or return;
    $first =~ /^Attached devices:/ or $err->($first);

    @l = map_index {
	my ($host, $channel, $id, $lun) = m/^Host: scsi(\d+) Channel: (\d+) Id: (\d+) Lun: (\d+)/ or $err->($_);
	my ($vendor, $model) = /^\s*Vendor:\s*(.*?)\s+Model:\s*(.*?)\s+Rev:/m or $err->($_);
	my ($type) = /^\s*Type:\s*(.*)/m or $err->($_);
	{ info => "$vendor $model", host => $host, channel => $channel, id => $id, lun => $lun, 
	  device => "sg$::i", raw_type => $type, bus => 'SCSI' };
    } @l;

    get_usb_storage_info_24(@l);

    each_index {
	my $dev = "sd" . chr($::i + ord('a'));
	put_in_hash $_, { device => $dev, media_type => isFloppyUsb($_) ? 'fd' : 'hd' };
    } grep { $_->{raw_type} =~ /Direct-Access|Optical Device/ } @l;

    each_index {
	put_in_hash $_, { device => "st$::i", media_type => 'tape' };
    } grep { $_->{raw_type} =~ /Sequential-Access/ } @l;

    each_index {
	put_in_hash $_, { device => "sr$::i", media_type => 'cdrom' };
    } grep { $_->{raw_type} =~ /CD-ROM|WORM/ } @l;

    # Old hp scanners report themselves as "Processor"s
    # (see linux/include/scsi/scsi.h and sans-find-scanner.1)
    each_index {
	put_in_hash $_, { media_type => 'scanner' };
    } grep { $_->{raw_type} =~ /Scanner/ || $_->{raw_type} =~ /Processor / } @l;

    delete $_->{raw_type} foreach @l;

    get_devfs_devices(@l);
    get_sys_cdrom_info(@l);
    get_scsi_driver(@l);
    @l;
}

sub getSCSI_26() {
    my $dev_dir = '/sys/bus/scsi/devices';

    my @scsi_types = (
	"Direct-Access",
	"Sequential-Access",
	"Printer",
	"Processor",
	"WORM",
	"CD-ROM",
	"Scanner",
	"Optical Device",
	"Medium Changer",
	"Communications",
    );

    my @l = map {
	my ($host, $channel, $id, $lun) = split ':' or log::l("bad entry in $dev_dir: $_"), next;

	my $dir = "$dev_dir/$_";
	my $get = sub {
	    my $s = cat_("$dir/$_[0]");
	    $s =~ s/\s+$//;
	    $s;
	};

	my $usb_dir = readlink("$dir/block/device") =~ m!/usb! && "$dir/block/device/../../../..";
	my $get_usb = sub { chomp_(cat_("$usb_dir/$_[0]")) };

	my ($device) = readlink("$dir/block") =~ m!/block/(.*)!;

	my $media_type = ${{ st => 'tape', sr => 'cdrom', sd => 'hd' }}{substr($device, 0, 2)};
	# Old hp scanners report themselves as "Processor"s
	# (see linux/include/scsi/scsi.h and sans-find-scanner.1)
	my $raw_type = $scsi_types[$get->('type')];
	$media_type ||= 'scanner' if $raw_type =~ /Scanner|Processor/;

	{ info =>  $get->('vendor') . ' ' . $get->('model'), host => $host, channel => $channel, id => $id, lun => $lun, 
	  bus => 'SCSI', media_type => $media_type, device => $device,
	    $usb_dir ? (
	  usb_vendor => hex($get_usb->('idVendor')), usb_id => hex($get_usb->('idProduct')),
	    ) : (),
        };
    } all($dev_dir);

    @l = sort { $a->{host} <=> $b->{host} || $a->{channel} <=> $b->{channel} || $a->{id} <=> $b->{id} || $a->{lun} <=> $b->{lun} } @l;

    complete_usb_storage_info(@l);

    foreach (@l) {
	$_->{media_type} = 'fd' if $_->{media_type} eq 'hd' && isFloppyUsb($_);
    }

    get_devfs_devices(@l);
    get_sys_cdrom_info(@l);
    get_scsi_driver(@l);
    @l;
}
sub getSCSI() { c::kernel_version() =~ /^\Q2.6/ ? getSCSI_26() : getSCSI_24() }


my %eide_hds = (
    "ASUS" => "Asus",
    "CD-ROM CDU" => "Sony",
    "CD-ROM Drive/F5D" => "ASUSTeK",
    "Compaq" => "Compaq",
    "CONNER" => "Conner Peripherals",
    "IBM" => "IBM",
    "FUJITSU" => "Fujitsu",
    "HITACHI" => "Hitachi",
    "Lite-On" => "Lite-On Technology Corp.",
    "LITE-ON" => "Lite-On Technology Corp.",
    "LTN" => "Lite-On Technology Corp.",
    "IOMEGA" => "Iomega",
    "MAXTOR" => "Maxtor",
    "Maxtor" => "Maxtor",
    "Micropolis" => "Micropolis",
    "Pioneer" => "Pioneer",
    "PLEXTOR" => "Plextor",
    "QUANTUM" => "Quantum", 
    "SAMSUNG" => "Samsung",
    "Seagate " => "Seagate Technology",
    "ST3" => "Seagate Technology",
    "TEAC" => "Teac",
    "TOSHIBA" => "Toshiba",
    "WDC" => "Western Digital Corp.",
);


sub getIDE() {
    my @idi;

    #- what about a system with absolutely no IDE on it, like some sparc machine.
    -e "/proc/ide" or return ();

    #- Great. 2.2 kernel, things are much easier and less error prone.
    foreach my $d (sort @{[glob_('/proc/ide/hd*')]}) {
	cat_("$d/driver") =~ /ide-scsi/ and next; #- already appears in /proc/scsi/scsi
	my $t = chomp_(cat_("$d/media"));
	my $type = ${{ disk => 'hd', cdrom => 'cdrom', tape => 'tape', floppy => 'fd' }}{$t} or next;
	my $info = chomp_(cat_("$d/model")) || "(none)";

	my $num = ord(($d =~ /(.)$/)[0]) - ord 'a';
	my ($vendor, $model) = map { 
	    if_($info =~ /^$_(-|\s)*(.*)/, $eide_hds{$_}, $2);
	} keys %eide_hds;

	my $host = $num;
	($host, my $id) = divide($host, 2);
	($host, my $channel) = divide($host, 2);
	my $devfs_prefix = sprintf('ide/host%d/bus%d/target%d/lun0', $host, $channel, $id);

	push @idi, { media_type => $type, device => basename($d), 
		     devfs_prefix => $devfs_prefix,
		     info => $info, host => $host, channel => $channel, id => $id, bus => 'ide', 
		     if_($vendor, Vendor => $vendor), if_($model, Model => $model) };
    }
    get_devfs_devices(@idi);
    get_sys_cdrom_info(@idi);
    @idi;
}

sub block_devices() {
    -d '/sys/block' 
      ? map { s|!|/|; $_ } all('/sys/block') 
      : map { $_->{dev} } do { require fs::proc_partitions; fs::proc_partitions::read_raw() };
}

sub getCompaqSmartArray() {
    my (@idi, $f);

    foreach ('array/ida', 'cpqarray/ida', 'cciss/cciss') {
	my $prefix = "/proc/driver/$_"; #- kernel 2.4 places it here
	$prefix = "/proc/$_" if !-e "${prefix}0"; #- kernel 2.2

	my ($name) = m|/(.*)|;
	for (my $i = 0; -r ($f = "${prefix}$i"); $i++) {
	    my @raw_devices = cat_($f) =~ m|^\s*($name/.*?):|gm;
	    @raw_devices or @raw_devices = grep { m!^$name/! } block_devices();

	    foreach my $raw_device (@raw_devices) {
		my $device = -d "/dev/$raw_device" ? "$raw_device/disc" : $raw_device;
		push @idi, { device => $device, prefix => $raw_device . 'p', 
			     info => "Compaq RAID logical disk",
			     media_type => 'hd', bus => $name };
	    }
	}
    }
    @idi;
}

sub getDAC960() {
    my %idi;

    #- We are looking for lines of this format:DAC960#0:
    #- /dev/rd/c0d0: RAID-7, Online, 17928192 blocks, Write Thru0123456790123456789012
    foreach (syslog()) {
	my ($device, $info) = m|/dev/(rd/.*?): (.*?),| or next;
	$idi{$device} = { info => $info, media_type => 'hd', device => $device, prefix => $device . 'p', bus => 'dac960' };
    }
    values %idi;
}

sub getATARAID() {
    my %l;
    foreach (syslog()) {
	my ($device) = m|^\s*(ataraid/d\d+):| or next;
	$l{$device} = { info => 'ATARAID block device', media_type => 'hd', device => $device, prefix => $device . 'p', bus => 'ataraid' };
	log::l("ATARAID: $device");
    }
    values %l;
}


# cpu_name : arch() =~ /^alpha/ ? "cpu	" :
# arch() =~ /^ppc/ ? "processor" : "vendor_id"

# cpu_model : arch() =~ /^alpha/ ? "cpu model" :
# arch() =~ /^ppc/ ? "cpu  " : "model name"

# cpu_freq = arch() =~ /^alpha/ ? "cycle frequency [Hz]" :
# arch() =~ /^ppc/ ? "clock" : "cpu MHz"

sub getCPUs() { 
    my (@cpus, $cpu);
    foreach (cat_("/proc/cpuinfo")) {
	   if (/^processor/) { # ix86 specific
		  push @cpus, $cpu if $cpu;
		  $cpu = {};
	   }
	   $cpu->{$1} = $2 if /^([^\t]+).*:\s(.*)$/;
	   $cpu->{processor}++ if $1 eq "processor";
    }
    push @cpus, $cpu;
    @cpus;
}

sub ix86_cpu_frequency() {
    cat_('/proc/cpuinfo') =~ /cpu MHz\s*:\s*(\d+)/ && $1;
}

sub getSoundDevices() {
    modules::probe_category('multimedia/sound');
}

sub isTVcard { member($_[0]{driver}, qw(bttv saa7134)) }

sub getTVcards() { modules::probe_category('multimedia/tv') }

sub getInputDevices() {
    my (@devices, $device);
    foreach (cat_('/proc/bus/input/devices')) {
        if (/^I:/) {
            push @devices, $device if $device;
            $device = {};
            $device->{vendor} = $1 if /Vendor=([0-9a-f]+)/;
            $device->{id} = $1 if /Product=([0-9a-f]+)/;
        }
        $device->{description} = "|$1" if /N: Name="(.*)"/;
        $device->{driver} = $1 if /H: Handlers=(\w+)/;
        if (/P: Phys=(.*)/) {
            $device->{location} = $1;
            $device->{bus} = 'isa' if $device->{location} =~ /^isa/;
            $device->{bus} = 'usb' if $device->{location} =~ /^usb/i;
        }
    }
    push @devices, $device if $device;
    @devices;
}

sub getSynapticsTouchpads() {
    grep {
        member($_->{description}, "|SynPS/2 Synaptics TouchPad", "|AlpsPS/2 ALPS TouchPad");
    } getInputDevices();
}

sub getSerialModem {
    my ($modules_conf, $o_mouse) = @_;
    my $mouse = $o_mouse || {};
    $mouse->{device} = readlink "/dev/mouse";
    my $serdev = arch() =~ /ppc/ ? "macserial" : "serial";
    eval { modules::load($serdev) };

    my @modems;

    probeSerialDevices();
    foreach my $port (map { "ttyS$_" } (0..7)) {
	next if $mouse->{device} =~ /$port/;
     my $device = "/dev/$port";
	next if !-e $device || !hasModem($device);
     $serialprobe{$device}{device} = $device;
     push @modems, $serialprobe{$device};
    }
    my @devs = pcmcia_probe();
    foreach my $modem (@modems) {
        #- add an alias for macserial on PPC
        $modules_conf->set_alias('serial', $serdev) if arch() =~ /ppc/ && $modem->{device};
        foreach (@devs) { $_->{type} =~ /serial/ and $modem->{device} = $_->{device} }
    }
    @modems;
}

sub getModem {
    my ($modules_conf) = @_;
    getSerialModem($modules_conf, {}), matching_driver__regexp('www\.linmodems\.org'),
      matching_driver(list_modules::category2modules('network/modem'), list_modules::category2modules('network/slmodem'));
}

sub getSpeedtouch() {
    grep { $_->{description} eq 'Alcatel|USB ADSL Modem (Speed Touch)' } probeall();
}

sub getBewan() {
    matching_desc__regexp('Bewan Systems\|.*ADSL|BEWAN ADSL USB|\[Unicorn\]');
}
sub getSagem() {
    matching_driver('eagle-usb');
}

# generate from the following from eci driver sources:
# perl -e 'while (<>) { print qq("$1$2",\n"$3$4",\n) if /\b([a-z\d]*)\s*([a-z\d]*)\s*([a-z\d]*)\s*([a-z\d]*)$/ }' <modems.db|sort|uniq
sub getECI() {
    my @ids = (
              "05090801",
              "05472131",
              "06590915",
              "071dac81",
              "08ea00c9",
              "09150001",
              "09150002",
              "091500ca",
              "091500e7",
              "09150101",
              "09150102",
              "09150204",
              "09150206",
              "09150802",
              "09150916",
              "09158000",
              "09158001",
              "0915ac82",
              "0baf00e6",
              "0e600100",
              "0e600101",
              "0fe88000",
              "16900203",
              "16900205",
             );
    grep { member(sprintf("%04x%04x%04x%04x", $_->{vendor}, $_->{id}, $_->{subvendor}, $_->{subid}), @ids) } usb_probe();
}

sub is_lan_interface {
    # we want LAN like interfaces here (eg: ath|br|eth|fddi|plip|ra|tr|usb|wifi|wlan).
    # there's also bnep%d for bluetooth, bcp%d...
    # we do this by blacklisting the following interfaces:
    # - sit0 which is *always* created by net/ipv6/sit.c, thus is always created since net.agent loads ipv6 module
    # - ippp|isdn|plip|ppp (initscripts suggest that isdn%d can be created but kernel sources claim not)
    #   ippp%d are created by drivers/isdn/i4l/isdn_ppp.c
    #   plip%d are created by drivers/net/plip.c
    #   ppp%d are created by drivers/net/ppp_generic.c
    # - wifi%d are created by 3rdparty/hostap/hostap_hw.c (pseudo statistics devices, #14523)
    #
    # we need both detection schemes since:
    # - get_netdevices() use the SIOCGIFCONF ioctl that does not list interfaces that are down
    # - /proc/net/dev does not list VLAN and IP aliased interfaces

    $_[0] !~ /^(?:lo|ippp|isdn|plip|ppp|sit0|wifi)/;
}

sub is_wireless_interface {
    my ($interface) = @_;
    #- some wireless drivers don't always support the SIOCGIWNAME ioctl
    #-   ralink devices need to be up to support it
    #-   wlan-ng (prism2_*) need some special tweaks to support it
    #- use sysfs as fallback to detect wireless interfaces,
    #- i.e interfaces for which get_wireless_stats() is available
    c::isNetDeviceWirelessAware($interface) || -e "/sys/class/net/$interface/wireless";
}

sub get_sysfs_device_id_map {
    my ($dev_path) = @_;
    my $is_usb = -f "$dev_path/bInterfaceNumber";
    $is_usb ?
      { id => '../idProduct', vendor => '../idVendor' } :
      { id => "device", subid => "subsystem_device", vendor => "vendor", subvendor => "subsystem_vendor" };
}

sub getNet() {
    grep { is_lan_interface($_) }
      uniq(
           (map { if_(/^\s*([A-Za-z0-9:\.]*):/, $1) } cat_("/proc/net/dev")),
           c::get_netdevices(),
          );
 }

#sub getISDN() {
#    mapgrep(sub {member (($_[0] =~ /\s*(\w*):/), @netdevices), $1 }, split(/\n/, cat_("/proc/net/dev")));
#}

sub getUPS() {
    my @usb_devices = map { ($_->{name} = $_->{description}) =~ s/.*\|//; $_ } grep { $_->{description} !~ /GamePad|IR Combo Device|Joystick|SideWinder/ } usb_probe();

    # MGE serial PnP devices:
    (map {
        $_->{port} = $_->{DEVICE};
        $_->{bus} = "Serial";
        $_->{driver} = "mge-utalk" if $_->{MODEL} =~ /0001/;
        $_->{driver} = "mge-shut"  if $_->{MODEL} =~ /0002/;
        $_->{media_type} = 'UPS';
        $_->{description} = "MGE UPS SYSTEMS|UPS - Uninterruptible Power Supply" if $_->{MODEL} =~ /000[12]/;
        $_;
    } grep { $_->{DESCRIPTION} =~ /MGE UPS/ } values %serialprobe),
      # USB UPSs;
      (grep { $_->{driver} = 'hidups' if $_->{driver} eq 'usbhid'; $_->{description} =~ /American Power Conversion\|Back-UPS/ } @usb_devices),
      (map {
          $_->{port} = "auto";
          $_->{media_type} = 'UPS';
          $_->{driver} = 'newhidups';
          $_;
      } grep { $_->{driver} =~ /ups$/ && $_->{description} !~ /American Power Conversion\|Back-UPS/ } @usb_devices);
}

$pcitable_addons = <<'EOF';
# add here lines conforming the pcitable format (0xXXXX\t0xXXXX\t"\w+"\t".*")
EOF

$usbtable_addons = <<'EOF';
# add here lines conforming the usbtable format (0xXXXX\t0xXXXX\t"\w+"\t".*")
EOF

sub install_addons {
    my ($prefix) = @_;

    #- this test means install_addons can only be called after ldetect-lst has been installed.
    if (-d "$prefix/usr/share/ldetect-lst") {
	my $update = 0;
	foreach ([ 'pcitable.d', $pcitable_addons ], [ 'usbtable.d', $usbtable_addons ]) {
	    my ($dir, $str) = @$_;
	    -d "$prefix/usr/share/ldetect-lst/$dir" && $str =~ /^[^#]/m and $update = 1 and
	      output "$prefix/usr/share/ldetect-lst/$dir/95drakx.lst", $str;
	}
	$update and run_program::rooted($prefix, "/usr/sbin/update-ldetect-lst");
    }
}

sub add_addons {
    my ($addons, @l) = @_;

    foreach (split "\n", $addons) {
	/^\s/ and die qq(bad detect_devices::probeall_addons line "$_");
	s/^#.*//;
	s/"(.*?)"/$1/g;
	next if /^$/;
	my ($vendor, $id, $driver, $description) = split("\t", $_, 4) or die qq(bad detect_devices::probeall_addons line "$_");
	foreach (@l) {
	    $_->{vendor} == hex $vendor && $_->{id} == hex $id or next;
	    put_in_hash($_, { driver => $driver, description => $description });
	}
    }
    @l;
}

sub pci_probe() {
    add_addons($pcitable_addons, map {
	my %l;
	@l{qw(vendor id subvendor subid pci_bus pci_device pci_function media_type driver description)} = split "\t";
	$l{$_} = hex $l{$_} foreach qw(vendor id subvendor subid);
	$l{bus} = 'PCI';
	\%l;
    } c::pci_probe());
}

sub usb_probe() {
    -e "/proc/bus/usb/devices" or return;

    add_addons($usbtable_addons, map {
	my %l;
	@l{qw(vendor id media_type driver description pci_bus pci_device)} = split "\t";
	$l{media_type} = join('|', grep { $_ ne '(null)' } split('\|', $l{media_type}));
	$l{$_} = hex $l{$_} foreach qw(vendor id);
	$l{bus} = 'USB';
	\%l;
    } c::usb_probe());
}

sub firewire_probe() {
    my $dev_dir = '/sys/bus/ieee1394/devices';
    my @l = map {
        my $dir = "$dev_dir/$_";
        my $get = sub { chomp_(cat_($_[0])) };
        {
            version => hex($get->("$dir/../vendor_id")),
            specifier_id => hex($get->("$dir/specifier_id")),
            specifier_version => hex($get->("$dir/version")),
            bus => 'Firewire',
        };
    } grep { -f "$dev_dir/$_/specifier_id" } all($dev_dir);

    my $e;
    foreach (cat_('/proc/bus/ieee1394/devices')) {
	if (m!Vendor/Model ID: (.*) \[(\w+)\] / (.*) \[(\w+)\]!) {
	    push @l, $e = { 
			   vendor => hex($2), id => hex($4), 
			   description => join('|', $1, $3),
			   bus => 'Firewire',
			  };
	} elsif (/Software Specifier ID: (\w+)/) {
	    $e->{specifier_id} = hex $1;
	} elsif (/Software Version: (\w+)/) {
	    $e->{specifier_version} = hex $1;	    
	}
    }

    foreach (@l) {
	if ($_->{specifier_id} == 0x00609e && $_->{specifier_version} == 0x010483) {
	    add2hash($_, { driver => 'sbp2', description => "Generic Firewire Storage Controller" });
	} elsif ($_->{specifier_id} == 0x00005e && $_->{specifier_version} == 0x000001) {
	    add2hash($_, { driver => 'eth1394', description => "IEEE 1394 IPv4 Driver (IPv4-over-1394 as per RFC 2734)" });
	}
    }
    @l;
}

sub pcmcia_controller_probe() {
    require list_modules;
    my @modules = list_modules::category2modules('bus/pcmcia');
    grep { member($_->{driver}, @modules) } probeall();
}

sub real_pcmcia_probe() {
    return if $::testing;

    c::pcmcia_probe() || first(map { $_->{driver} } pcmcia_controller_probe());
}

sub pcmcia_probe() {
    -e '/var/run/stab' || -e '/var/lib/pcmcia/stab' or return ();

    my (@devs, $desc);
    foreach (cat_('/var/run/stab'), cat_('/var/lib/pcmcia/stab')) {
	if (/^Socket\s+\d+:\s+(.*)/) {
	    $desc = $1;
	} else {
	    my (undef, $type, $module, undef, $device) = split;
	    push @devs, { description => $desc, driver => $module, type => $type, device => $device };
	}
    }
    @devs;
}

my $dmi_probe;
sub dmi_probe() {
    $dmi_probe ||= [ map {
	/(.*?)\t(.*)/ && { bus => 'DMI', driver => $1, description => $2 };
    } c::dmi_probe() ];
    @$dmi_probe;
}

# pcmcia_probe provides field "device", used in network.pm
# => probeall with $probe_type is unsafe
sub probeall() {
    return if $::noauto;

    require sbus_probing::main;
    pci_probe(), usb_probe(), firewire_probe(), pcmcia_probe(), sbus_probing::main::probe(), dmi_probe();
}
sub matching_desc__regexp {
    my ($regexp) = @_;
    grep { $_->{description} =~ /$regexp/i } probeall();
}
sub matching_driver__regexp {
    my ($regexp) = @_;
    grep { $_->{driver} =~ /$regexp/i } probeall();
}

sub matching_driver {
    my (@list) = @_;
    grep { member($_->{driver}, @list) } probeall();
}
sub probe_name {
    my ($name) = @_;
    map { $_->{driver} =~ /^$name:(.*)/ } probeall();
}
sub probe_unique_name {
    my ($name) = @_;
    my @l = uniq(probe_name($name));
    if (@l > 1) {
	log::l("oops, more than one $name from probe: ", join(' ', @l));
    }
    $l[0];
}

sub stringlist() { 
    map {
	sprintf("%-16s: %s%s%s", 
		$_->{driver} || 'unknown', 
		$_->{description} eq '(null)' ? sprintf("Vendor=0x%04x Device=0x%04x", $_->{vendor}, $_->{id}) : $_->{description},
		$_->{media_type} ? sprintf(" [%s]", $_->{media_type}) : '',
		$_->{subid} && $_->{subid} != 0xffff ? sprintf(" SubVendor=0x%04x SubDevice=0x%04x", $_->{subvendor}, $_->{subid}) : '',
	       );
    } probeall(); 
}

sub tryOpen($) {
    my $F;
    sysopen($F, devices::make($_[0]), c::O_NONBLOCK()) && $F;
}

sub tryWrite($) {
    my $F;
    sysopen($F, devices::make($_[0]), 1 | c::O_NONBLOCK()) && $F;
}

sub syslog() {
    if (-r "/tmp/syslog") {
	map { /<\d+>(.*)/ } cat_("/tmp/syslog");
    } else {
	`/bin/dmesg`;
    }
}

sub get_mac_model() {
    my $mac_model = cat_("/proc/device-tree/model") || die "Can not open /proc/device-tree/model";
    log::l("Mac model: $mac_model");
    $mac_model;	
}

sub get_mac_generation() {
    cat_('/proc/cpuinfo') =~ /^pmac-generation\s*:\s*(.*)/m ? $1 : "Unknown Generation";	
}

sub hasSMP() { 
    return if $::testing;
    c::detectSMP() || any { /\bProcessor #(\d+)\s+(\S*)/ && $1 > 0 && $2 ne 'invalid' } syslog();
}
sub hasPCMCIA() { $::o->{pcmcia} } #- because /proc/pcmcia seems not to be present on 2.4 at least (or use /var/run/stab)

my (@dmis, $dmidecode_already_runned);

# we return a list b/c several DMIs have the same name:
sub dmidecode() {
    return @dmis if $dmidecode_already_runned;

    foreach (run_program::get_stdout('dmidecode')) {
	if (/^\t\t(.*)/) {
	    $dmis[-1]{string} .= "$1\n";
	    $dmis[-1]{$1} = $2 if /^\t\t(.*): (.*)$/;
	} elsif (my ($s) = /^\t(.*)/) {
	    next if $s =~ /^DMI type /;
	    $s =~ s/ Information$//;
	    push @dmis, { name => $s };
	}
    }
    $dmidecode_already_runned = 1;
    @dmis;
}
sub dmidecode_category {
    my ($cat) = @_;
    my @l = find { $_->{name} eq $cat } dmidecode();
    wantarray() ? @l : $l[0] || {};
}

sub computer_info() {
     my $Chassis = dmidecode_category('Chassis')->{Type} =~ /(\S+)/ && $1;

     my $date = dmidecode_category('BIOS')->{'Release Date'} || '';
     my $BIOS_Year = $date =~ m!(\d{4})! && $1 ||
	             $date =~ m!\d\d/\d\d/(\d\d)! && "20$1";
	
     +{ 
	 isLaptop => member($Chassis, 'Portable', 'Laptop', 'Notebook', 'Hand Held', 'Sub Notebook', 'Docking Station'),
	 if_($BIOS_Year, BIOS_Year => $BIOS_Year),
     };
}

#- try to detect a laptop, we assume pcmcia service is an indication of a laptop or
#- the following regexp to match graphics card apparently only used for such systems.
sub isLaptop() {
    arch() =~ /ppc/ ? 
      get_mac_model() =~ /Book/ :
      computer_info()->{isLaptop}
	|| (matching_desc__regexp('C&T.*655[45]\d') || matching_desc__regexp('C&T.*68554') ||
	    matching_desc__regexp('Neomagic.*Magic(Media|Graph)') ||
	    matching_desc__regexp('ViRGE.MX') || matching_desc__regexp('S3.*Savage.*[IM]X') ||
	    matching_desc__regexp('ATI.*(Mobility|LT)'))
	|| cat_('/proc/cpuinfo') =~ /\bmobile\b/i;
}

sub BIGMEM() {
    arch() !~ /x86_64|ia64/ && $> == 0 && c::dmiDetectMemory() > 4 * 1024;
}

sub is_i586() {
    my $cpuinfo = cat_('/proc/cpuinfo');
    $cpuinfo =~ /^cpu family\s*:\s*(\d+)/m && $1 < 6 ||
      !has_cpu_flag('cmov');
}
sub has_cpu_flag {
    my ($flag) = @_;
    cat_('/proc/cpuinfo') =~ /^flags.*\b$flag\b/m;
}

sub matching_type {
    my ($type) = @_;
    if ($type =~ /laptop/i) {
        return isLaptop();
    } elsif ($type =~ /wireless/i) {
        return any { is_wireless_interface($_) } getNet();
    }
}

sub usbMice()      { grep { $_->{media_type} =~ /\|Mouse/ && $_->{driver} !~ /wacom/ ||
			  $_->{driver} =~ /Mouse:USB/ } usb_probe() }
sub usbWacom()     { grep { $_->{driver} =~ /wacom/ } usb_probe() }
sub usbKeyboards() { grep { $_->{media_type} =~ /\|Keyboard/ } usb_probe() }
sub usbStorage()   { grep { $_->{media_type} =~ /Mass Storage\|/ } usb_probe() }
sub has_mesh()     { find { /mesh/ } all_files_rec("/proc/device-tree") }
sub has_53c94()    { find { /53c94/ } all_files_rec("/proc/device-tree") }

sub usbKeyboard2country_code {
    my ($usb_kbd) = @_;
    my ($F, $tmp);
    sysopen($F, sprintf("/proc/bus/usb/%03d/%03d", $usb_kbd->{pci_bus}, $usb_kbd->{pci_device}), 0) and
      sysseek $F, 0x28, 0 and
      sysread $F, $tmp, 1 and
      unpack("C", $tmp);
}

sub probeSerialDevices() {
    require list_modules;
    require modules;
    modules::append_to_modules_loaded_at_startup_for_all_kernels(modules::load_category($::o->{modules_conf}, 'various/serial'));
    foreach (0..3) {
	#- make sure the device are created before probing,
	devices::make("/dev/ttyS$_");
	#- and make sure the device is a real terminal (major is 4).
	int((stat "/dev/ttyS$_")[6]/256) == 4 or $serialprobe{"/dev/ttyS$_"} = undef;
    }

    #- for device already probed, we can safely (assuming device are
    #- not moved during install :-)
    #- include /dev/mouse device if using an X server.
    mkdir_p("/var/lock");
    -l "/dev/mouse" and $serialprobe{"/dev/" . readlink "/dev/mouse"} = undef;
    foreach (keys %serialprobe) { m|^/dev/(.*)| and touch "/var/lock/LCK..$1" }

    print STDERR "Please wait while probing serial ports...\n";
    #- start probing all serial ports... really faster than before ...
    #- ... but still take some time :-)
    my %current; 
    foreach (run_program::get_stdout('serial_probe')) {
	if (/^\s*$/) {
	    $serialprobe{$current{DEVICE}} = { %current } if $current{DEVICE};
	    %current = ();
	} elsif (/^([^=]+)=(.*?)\s*$/) {
	    $current{$1} = $2;
	}
    }

    foreach (values %serialprobe) {
	$_->{DESCRIPTION} =~ /modem/i and $_->{CLASS} = 'MODEM'; #- hack to make sure a modem is detected.
	$_->{DESCRIPTION} =~ /olitec/i and $_->{CLASS} = 'MODEM'; #- hack to make sure such modem gets detected.
	log::l("probed $_->{DESCRIPTION} of class $_->{CLASS} on device $_->{DEVICE}");
    }
}

sub probeSerial($) { $serialprobe{$_[0]} }

sub hasModem($) {
    $serialprobe{$_[0]} && $serialprobe{$_[0]}{CLASS} eq 'MODEM' && $serialprobe{$_[0]}{DESCRIPTION};
}

sub hasMousePS2 {
    my $t; sysread(tryOpen($_[0]) || return, $t, 256) != 1 || $t ne "\xFE";
}

sub usb_description2removable {
    local ($_) = @_;
    return 'camera' if /\bcamera\b/i;
    return 'memory_card' if /\bmemory\s?stick\b/i || /\bcompact\s?flash\b/i || /\bsmart\s?media\b/i;
    return 'memory_card' if /DiskOnKey/i || /IBM-DMDM/i;
    return 'zip' if /\bzip\s?(100|250|750)/i;
    return 'floppy' if /\bLS-?120\b/i;
    return;
}

sub usb2removable {
    my ($e) = @_;
    $e->{usb_driver} or return;

    if ($e->{usb_driver} =~ /Removable:(.*)/) {
	return $1;
    } elsif (my $name = usb_description2removable($e->{usb_description})) {
	return $name;
    }
    undef;
}

sub suggest_mount_point {
    my ($e) = @_;

    my $name = $e->{media_type};
    if (member($e->{media_type}, 'hd', 'fd')) {
	if (exists $e->{usb_driver}) {
	    $name = usb2removable($e) || 'removable';
	} elsif (isZipDrive($e)) {
	    $name = 'zip';
	} elsif ($e->{media_type} eq 'fd') {
	    $name = 'floppy';
	} else {
	    log::l("suggest_mount_point: do not know what to with hd $e->{device}");
	}
    }
    $name;
}

1;
ef='#n5305'>5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183
2006-04-10  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.32-1

2006-04-10  Renato Pavicic  <repavici@globalnet.hr>

	* po/hr.po: *** empty log message ***

2006-04-06  Maxim Dziumanenko <mvd@mylinux.ua>

	* po/uk.po: Updated Ukrainian translation.

2006-04-03  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/netfs: fix redirect (#187505)

2006-04-03  Chung Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: routine merge

2006-03-28  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/rc.sysinit: Add "forcequotacheck" (#168118)

2006-03-27  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/functions (failure, passed, warning, action):
	Make variables local, fixes running
	quotacheck after fsck has repaired something (#168118).

	* rc.d/init.d/functions (killproc):
	Respect -p when removing the pid file

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown-eth, sysconfig/network-scripts/ifup-eth:
	Add support for DHCP on bridges (#125259, original patch by Anders Kaseorg
	<anders@kaseorg.com>):
	- rc.d/init.d/network: Initialize bridges after bridged interfaces,
	  deinitialize them before bridged interfaces
	- sysconfig/network-scripts/ifdown-eth: Destroy bridges lazily when the last
	  bridged interface is stopped
	- sysconfig/network-scripts/ifup-eth:
	  * Handle bridges before checking for module presence or wireless devices
	  * Add bridges lazily when the first bridged interface is started

2006-03-24  Peter Jones  <pjones@redhat.com>

	* rc.d/rc.sysinit:
	- killall is in /usr , so we need to use pidof here. (bz 185429)

2006-03-20  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2006-03-20  Miloslav Trmac  <mitr@redhat.com>

	* sysconfig/network-scripts/ifup-ppp:
	Don't unnecessarily keep the ifup-ppp process (#163950, patch by Avi Kivity
	<avi@argo.co.il>)

	* ppp/ip-up, sysconfig/network-scripts/ifup-post:
	Provide the underlying device name to ip-up (and thus ifup-routes) for PPP
	devices (#92023)

2006-03-19  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/functions (status):
	Try the PID from the PID file if (pidof) fails (#182623)

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	Undefine $WINDOW to avoid conflict with screen(1) (#174336)

	* rc.d/init.d/network, sysconfig/network-scripts/ifup-eth:
	Minor cleanups (#173574):
	- Don't duplicate unset
	- Remove two (eval `grep ...`) instances

	* rc.d/rc.sysinit: Allow -y in $fsckoptions (#143351)

	* sysconfig/network-scripts/ifup-ppp:
	Fix boot handling of ppp (#129195)

2006-03-17  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, src/Makefile, src/rename_device.c, udev/rules.d/60-net.rules:
	add a udev helper to do device renames on module load. Essentially,
	it's network-functions rename_device ported to C, with locking added.

	* sysconfig/network-scripts/network-functions:
	don't hang if we try to rename a device that's already up

2006-03-17  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn_IN.po: Updated Bengali India Translation

2006-03-15  Keld Simonsen  <keld@rap.rap.dk>

	* po/da.po: updates
	initscripts/da.po

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

	* rc.d/rc.sysinit, initscripts.spec, po/da.po, po/es.po, po/it.po:
	fix context of /dev/pts (#185436)
	translation updates

	* rc.d/rc.sysinit: oops

	* rc.d/rc.sysinit: set context on /dev/pts (#185436)

2006-03-13  keldsim  <keldsim@redhat.com>

	* po/da.po: Updates
	anaconda/da.po initscripts/da.po
	system-config-securitylevel/da.po
	system-config-date/timezones/da.po system-config-lvm/po/da.po

2006-03-08  Miloslav Trmac  <mitr@redhat.com>

	* src/ppp-watch.c: - Fix one-byte buffer overflow
	- Make theChild a pid_t

2006-03-08  Manuel Eduardo Ospina Sarmiento  <mospina@redhat.com>

	* po/es.po: updated

2006-03-07  Subhransu Behera  <sbehera@redhat.com>

	* po/or.po: Added Oriya File

2006-03-06  Francesco Tombolini  <tombo@adamantio.net>

	* po/it.po: uniformed firewall strings

2006-03-05  Bill Nottingham <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.31-1

2006-03-05  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: translation finished in initscripts

2006-03-03  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt: kexec support (<jmoyer@redhat.com>)

2006-03-01  Leah Liu  <liuwei99@gmail.com>

	* po/zh_CN.po: *** empty log message ***

2006-02-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.30-1

	* sysconfig/network-scripts/ifup-eth, sysconfig/network-scripts/network-functions:
	Fix potentials for endless loops when you have multiple devices
	that claim to have the same hardware address. (#177792, #182466)
	This happens most with hostap_cs and similar wireless drivers
	that have ethX/wlanX *and* wifiX. Do this by ignoring ieee802.11
	links. Also, use /sbin/ip, not nameif - it gets confused in these
	cases as well.

	* sysconfig/network-scripts/ifdown-eth, sysconfig/network-scripts/network-functions:
	don't cause the module to get reloaded on ifdown if it's not loaded
	(#179809)

2006-02-28  Ani Peter  <apeter@redhat.com>

	* po/ml.po: added file for malayalam

2006-02-25  Ronny Buchmann  <ronny-vlug@vlugnet.org>

	* po/de.po: german translation update

2006-02-24  Leah Liu  <liuwei99@gmail.com>

	* po/zh_CN.po: *** empty log message ***

2006-02-23  Amanpreet Brar  <aalam@redhat.com>

	* po/pa.po: update for Punjabi

2006-02-23  leahliu  <leahliu@redhat.com>

	* po/zh_CN.po: *** empty log message ***

2006-02-22  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Updated Catalan translation.

2006-02-21  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2006-02-21  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update

2006-02-21  Chung Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2006-02-20  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: optimize, and add some more files

2006-02-20  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: updated

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

	* rc.d/rc.sysinit:
	relabeling sources /etc/selinux/config, which uses $SELINUX. Pick
	something else. (#181893)

2006-02-17  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2006-02-16  Nikola Štohanzl  <niko@srnet.cz>

	* po/cs.po: Finished

2006-02-15  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Updated translation

2006-02-15  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2006-02-15  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-bnep: nuke debugging

2006-02-15  José Nuno Coelho Sanarra Pires  <jncp+fedora@netcabo.pt>

	* po/pt.po: Finished all for today

2006-02-14  Gábor Szentiványi  <szentivanyi.gabor@ulx.hu>

	* po/hu.po: Translation updated for FC5.

2006-02-14  Peter Jones  <pjones@redhat.com>

	* initscripts.spec, rc.d/init.d/functions, rc.d/rc.sysinit:
	- filter out another "no" message from dmraid.  We need to fix dmraid's
	  exit status in these cases and use that in the future...
	- add path to one dmraid call
	- bump version, add changelog

2006-02-14  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: hindi updted

2006-02-14  Amanpreet Brar  <aalam@redhat.com>

	* po/pa.po: update for Punjabi

2006-02-14  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: Updated Gujarati Translations

2006-02-14  Miloš Komarčević <kmilos@gmail.com>

	* po/sr@Latn.po, po/sr.po: *** empty log message ***

2006-02-13  Yong-Joon Bae  <ybae@redhat.com>

	* po/ko.po: translation updated

2006-02-13  Rodrigo Padula de Oliveira <rodrigopadula@gmail.com>

	* po/pt_BR.po: Traducao

2006-02-13  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2006-02-13  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: Add mounting of /proc and /sys back to rc.sysinit.

	Note that booting of Fedora Core without the use of an initrd is deprecated,
	and support for booting the system in this manner may be removed in
	a later release.

2006-02-13  Francesco Tombolini  <tombo@adamantio.net>

	* po/it.po: updated strings

2006-02-13  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Update

2006-02-13  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.28-1

	* po/ta.po, po/tr.po, po/uk.po, po/ur.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/ru.po, po/si.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ku.po, po/lo.po, po/lt.po, po/mk.po, po/mr.po, po/ms.po, po/my.po, po/nb.po, po/nl.po, po/nn.po, po/no.po, po/pa.po, po/pl.po, po/hy.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ka.po, po/ko.po, po/da.po, po/de.po, po/en_GB.po, po/es.po, po/et.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/gu.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/ar.po, po/bg.po, po/bn.po, po/bn_IN.po, po/ca.po, po/cs.po, po/cy.po:
	update-po && refresh-po

2006-02-13  Peter Jones  <pjones@redhat.com>

	* rc.d/rc.sysinit: - kill nash-hotplug before starting udev

	* rc.d/init.d/functions:
	- check for "No devices found" when calling dmsetup

2006-02-13  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.27-1

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

	* sysconfig/network-scripts/network-functions:
	fix loop when change_resolve_conf is supplied the same DNS address
	multiple times (Michael Reinsch, via <oblin@mandriva.com>)

2006-02-10  Miloslav Trmac  <mitr@redhat.com>

	* sysconfig/network-scripts/ifdown-aliases, sysconfig/network-scripts/ifup-aliases:
	ifup-aliases:
	- Revert the previous commit
	- Reformat the eval of doom, add comments
	- Add support for non-numeric IP aliases
	ifdown-aliases:
	- Copy the updated eval of doom

2006-02-09  Peter Jones  <pjones@redhat.com>

	* sysconfig/network-scripts/ifup-aliases:
	- don't restrict alias names unnecessarily, but do check that the filename is
	  the same as any DEVICE line contained inside.

2006-02-07  Bill Nottingham  <notting@redhat.com>

	* lang.sh: revert fix for #176832, it's broken

2006-02-07  Serhat GUNGOR  <gungorserh@itu.edu.tr>

	* po/tr.po: Done

2006-02-07  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.26-1

	* rc.d/rc.sysinit: put usbfs back

2006-02-06  Severin Heiniger  <heinigerseverin@gmail.com>

	* po/de.po: translation updated

2006-02-06  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/net.hotplug, rc.d/rc.sysinit:
	dirty hacks to make sure hotplug doesn't run after unclean shutdown
	(#177795)

2006-02-06  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2006-02-05  Pedro Macedo  <webmaster@margo.bijoux.nom.br>

	* po/pt_BR.po: Alterações e correções pre-FC5T3.

2006-02-05  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: translation finished in initscripts

2006-02-03  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: updtaed hi

2006-02-03  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: Updated Gujarati Translations

2006-02-03  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/halt:
	Try to unmount tmpfs filesystems before swapoff (#174000)

2006-02-03  Peter Jones  <pjones@redhat.com>

	* rc.d/rc.sysinit: don't mount /sys and /proc in rc.sysinit, since
	initrd has to mount them anyway.

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

	* ChangeLog, initscripts.spec: 8.25-1

2006-02-02  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/functions (get_numeric_dev):
	On second thought, write directly what we want awk to do.

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

	* sysconfig/network-scripts/ifup-eth:
	move the arping to before we actually add the address. If the address
	is already on the device, it's a little late... (fixes a xen issue)

2006-02-02  Miloslav Trmac  <mitr@redhat.com>

	* po/cs.po:
	Change "  OK  " translation to try and make the output aligned again.

2006-02-02  Severin Heiniger  <heinigerseverin@gmail.com>

	* po/de.po: corrections and updates

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

	* ChangeLog, initscripts.spec: 8.24-1

	* rc.d/init.d/functions: fix sendmail startup

2006-02-02  Miloslav Trmac  <mitr@redhat.com>

	* sysconfig.txt: Fix typos

2006-02-01  Francesco Tombolini  <tombo@adamantio.net>

	* po/it.po: Unload -> Scarico
	Flush -> Svuoto

2006-02-01  Gábor Szentiványi  <szentivanyi.gabor@ulx.hu>

	* po/hu.po: Translation finished for FC5.

2006-02-01  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/functions:
	Eliminate creating the second awk process in get_numeric_dev()

2006-01-31  Rodrigo Padula de Oliveira <rodrigopadula@gmail.com>

	* po/pt_BR.po: Correção e Tradução

2006-01-31  Peter Jones  <pjones@redhat.com>

	* ChangeLog, initscripts.spec: 8.23-1

	* rc.d/rc.sysinit: cleans dmraid input/output better.

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

	* ChangeLog, initscripts.spec: 8.22-1

	* prefdm, rc.d/init.d/functions, service, sysconfig/network-scripts/network-functions:
	remove references to /usr/X11R6/bin (#177938)

	* rc.d/rc.sysinit: fix formatting (#178532)

	* rc.d/rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)

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

	* rc.d/init.d/halt:
	move halt.local so that it runs before /  is remounted r/o (#179314)

2006-01-31  Peter Jones  <pjones@redhat.com>

	* rc.d/init.d/functions: add functions to remap dmraid names
	* rc.d/rc.sysinit: don't activate already active dmraids
	
2006-01-31  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: remove stray 'ok/failed'

2006-01-31  Chung Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2006-01-30  Chung Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2006-01-29  Miloš Komarčević <kmilos@gmail.com>

	* po/sr@Latn.po, po/sr.po: *** empty log message ***

2006-01-29  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Updated translation and fix mistakes in commit 1.83

2006-01-29  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2006-01-28  Nikola Štohanzl  <niko@srnet.cz>

	* po/cs.po: Fuzzy entries corrected, missing supplied.

2006-01-27  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/functions: Add -p to status() (#134363)

2006-01-26  Jamil Ahmed  <jam@siriusbb.com>

	* po/bn.po: Updated translation on Jan 26, 2006

2006-01-26  Miloslav Trmac  <mitr@redhat.com>

	* rc.d/init.d/functions:
	- Separate /var/run/*.pid handling and pidof calls to private functions
	  (#63440)
	- Update to implement current LSB specification for init script functions,
	  notably including -p pidfile (#99325, #134363) (based in part on patch
	  by Tobias Burnus)
	- Misc. cleanups:
	  - Fix failures when run with (set -u)
	  - Mark more variables as local

2006-01-25  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: usbfs is no longer needed

2006-01-25  Miloslav Trmac  <mitr@redhat.com>

	* src/Makefile, src/getkey.1: Add man page for getkey.

	* src/getkey.c: - Print message even if there is no timeout (#54481)
	- Reject negative timeout (#54481)
	- Misc. cleanups:
	  - Use _exit(), not exit() within a signal handler
	  - Only install signal handlers after data they reference is initialized
	  - Don't limit the number of allowed keys to 100

	* src/.cvsignore: Add genhostid

2006-01-24  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2006-01-24  Amanpreet Brar  <aalam@redhat.com>

	* po/pa.po: update for Punjabi

2006-01-24  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: Updated Gujarati Translations

2006-01-23  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2006-01-22  Florian La Roche  <laroche@redhat.com>

	* lang.sh:
	- avoid calling consoletype if one of the other conditions already fail

2006-01-21  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2006-01-21  Miloslav Trmac  <mitr@redhat.com>

	* lang.sh: Restore fix of #176832

	* service.8: Fix copyright year

2006-01-21  Dima  <dimazest@gmail.com>

	* po/ru.po: some entries were translated

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

	* ChangeLog, initscripts.spec: 8.21-1

	* initscripts.spec, lang.sh, prefdm:
	get rid of some path lookups (#178321, <mclasen@redhat.com>)

	* Makefile, initscripts.spec, sysconfig/network-scripts/net.hotplug:
	move hotplug handling here. add udev rules. obsolete hotplug.

	* sysconfig/network-scripts/network-functions:
	get hwaddrs from sysfs as opposed to ip | sed, etc.

2006-01-20  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: initscript hindi

2006-01-20  Francesco Tombolini  <tombo@adamantio.net>

	* po/it.po:
	Ripristino preposizioni semplici ed articolate; senza di esse i messaggi sono troppo freddi

2006-01-20  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: updated

2006-01-20  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Updated.

2006-01-19  Francesco Tombolini  <tombo@adamantio.net>

	* po/it.po: Global normalization of the file, where possible:
	Default become predefinito/a
	Shutting down become Interruzione in all cases
	Starting become Avvio in all cases
	Warning become Attenzione in all cases
	Reloading become Ricaricamento in alla cases
	Unmounting become Smontaggio in all cases
	Saving become Salvataggio in all cases

2006-01-19  Miloslav Trmac  <mitr@redhat.com>

	* Makefile, service.8: Add service(8) man page (#44857).

2006-01-19  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2006-01-19  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update

2006-01-19  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: hindi update

2006-01-19  Francesco Valente  <fvalen@redhat.com>

	* po/it.po: Updated

2006-01-18  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2006-01-18  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn_IN.po: Updated Bengali INDIA (bn_IN) Translation:18/01

2006-01-18  Francesco Valente  <fvalen@redhat.com>

	* po/it.po: Updated

2006-01-18  Manuel Eduardo Ospina Sarmiento  <mospina@redhat.com>

	* po/es.po: updated

2006-01-17  Leah Liu  <liuwei99@gmail.com>

	* po/zh_CN.po: *** empty log message ***

	* po/zh_CN.po: modified by Leah

2006-01-17  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: Updated.

2006-01-17  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2006-01-17  Chung Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: Routine merge

2006-01-16  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2006-01-16  Miloš Komarčević <kmilos@gmail.com>

	* po/sr@Latn.po, po/sr.po: *** empty log message ***

2006-01-16  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: Updated.

2006-01-15  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2006-01-14  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Update Polish translation

2006-01-14  Walter Cheuk  <wwycheuk@netvigator.com>

	* po/zh_TW.po: update

2006-01-13  José Nuno Coelho Sanarra Pires  <jncp+fedora@netcabo.pt>

	* po/pt.po: Removed spelling errors

2006-01-13  Amanpreet Brar  <aalam@redhat.com>

	* po/pa.po: update for fuzzy

2006-01-13  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update

2006-01-13  José Nuno Coelho Sanarra Pires  <jncp+fedora@netcabo.pt>

	* po/pt.po: Removed one fuzzy and removed check failures

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

	* rc.d/init.d/halt:
	ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)

2006-01-12  José Nuno Coelho Sanarra Pires  <jncp+fedora@netcabo.pt>

	* po/pt.po: Finished new changes on initscripts

2006-01-11  Bill Nottingham  <notting@redhat.com>

	* po/sr@Latn.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/ur.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/ru.po, po/si.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/ku.po, po/lo.po, po/lt.po, po/mk.po, po/mr.po, po/ms.po, po/my.po, po/nb.po, po/nl.po, po/nn.po, po/no.po, po/pa.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/gu.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/hy.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ka.po, po/ko.po, po/bn.po, po/bn_IN.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/en_GB.po, po/es.po, po/et.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/ar.po, po/bg.po:
	refresh-po/update-po.

	Now includes translations for Fedora Extras packages.

2006-01-11  Miloš Komarčević <kmilos@gmail.com>

	* po/sr@Latn.po: *** empty log message ***

2006-01-10  Alan Cox  <alan@redhat.com>

	* po/en_GB.po: Update for FC5

2006-01-09  Sarah Wang  <sarahs@redhat.com>

	* po/sr@Latn.po: correct locale added

	* po/sr@Latin.po: wrong locale added, removing it

	* po/sr@Latin.po: new locale for Serbian Latin

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

	* lang.sh: don't run unicode_start for subshells (#176832)

2005-12-23  Sarah Wang  <sarahs@redhat.com>

	* po/my.po: add new locale

2005-12-21  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.20-1

	* sysconfig/network-scripts/network-functions, initscripts.spec, rc.d/init.d/network, rc.d/rc.sysinit, src/Makefile:
	udev now loads modules - use that, remove the kmodule stuff
	don't set hotplug, it can't possibly work

2005-12-15  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.19-1

	* initscripts.spec, rc.d/rc.sysinit: fix fsck invocation (#175803)

	* initscripts.spec:  require syslog (#172885)

2005-12-15  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Improvements and updates

2005-12-07  Tongjie Fu  <tfu@redhat.com>

	* po/zh_CN.po: update translation

2005-12-02  Bill Nottingham  <notting@redhat.com>

	* service: fix quoting of environment variables (#174825)

2005-12-02  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.18-1

2005-12-02  José Nuno Coelho Sanarra Pires  <jncp+fedora@netcabo.pt>

	* po/pt.po: Removed most of the 'not-real' spelling errors

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

	* initscripts.spec, sysconfig/network-scripts/ifdown-eth, sysconfig/network-scripts/ifup-eth:
	use new dhclient file paths, add appropriate conflict (#169164)

2005-11-14  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Updates and improvments

2005-11-11  Miloš Komarčević <kmilos@gmail.com>

	* po/sr.po: *** empty log message ***

2005-10-31  Teguh DC  <dheche@bradjamoesti.or.id>

	* po/id.po: finished

	* po/id.po: 102 line left

	* po/id.po: fixing all fuzzy entries

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

	* src/initlog.c: fix use-after-free (#171198)

2005-10-24  Miloš Komarčević <kmilos@gmail.com>

	* po/sr.po: *** empty log message ***

2005-10-21  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Update and another improvements

2005-10-10  Sarah Wang  <sarahs@redhat.com>

	* po/hy.po: initial files

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

	* ChangeLog, initscripts.spec: 8.17-1

2005-10-05  Chung Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: Automerge

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

	* rc.d/init.d/functions:
	make sure corefile limiting works for user processes as well (#166511, <ville.skytta@iki.fi>)

	* sysconfig/network-scripts/ifup-routes:
	handle no EOF in the route file (#156972)

	* rc.d/rc.sysinit: tweak message (#146532)

	* sysconfig/network-scripts/ifdown-eth:
	clean up error message (#135167)

	* rc.d/rc.sysinit: call kpartx on multipath devices (#160227)

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

	* sysconfig/network-scripts/ifup-eth:
	move wireless options before bridge options (#122801)

	* initscripts.spec: collapse triggers due to rpm bug (#164053)

	* sysconfig/network-scripts/ifup-wireless: silence error (#90601)

	* sysconfig.txt: clarify docs (#84296)

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

	* rc.d/init.d/netfs: set status correctly (#60711)

	* rc.d/init.d/functions: change translated string (#54682)

2005-09-27	Than Ngo <than@redhat.com>

	* Changelog, initscripts.spec: 8.16-1

	* sysconfig/network-scripts/network-functions: typo bug

2005-09-26	Than Ngo	<than@redhat.com>

	* ChangeLog, initscripts.spec: 8.15-1

	* sysconfig/network-scripts/ifup-ippp: support proper dial-in configuration #158380

2005-09-22  Bill Nottingham  <notting@redhat.com>

	* src/kmodule.c:
	don't probe for uninteresting devices. speeds things up (floppy probe is slow)

	* sysconfig/network-scripts/network-functions:
	deal with broken networks better (#168947)

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

	* rc.d/rc.sysinit:
	automatically reboot if labels are really out of date (<dwalsh@redhat.com>)

	* sysconfig/network-scripts/network-functions:
	throw out nameif error messages

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

	* rc.d/rc.sysinit: use multipath.static (#168321)

	* rc.d/rc.sysinit: move clock earlier, remove echo for font

2005-09-18  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-09-15  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: make the Requires: a Conflicts: for dep happiness

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

	* rc.d/rc.sysinit: use ignorelocking (#168195)

2005-09-12  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.14-1

	* ChangeLog: fix all the random charsets in entries/names - UTF-8
          everywhere

	* rc.d/rc.sysinit: fix usage of the blacklist (#168020)

2005-09-11  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-09-11  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Many improvements and updates

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

	* ChangeLog, initscripts.spec: 8.13-1

	* rc.d/rc.sysinit: Fix on-boot relabelling (<dwalsh@redhat.com>)

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

	* ChangeLog, intiscripts.spec: 8.13-1

	* rc.d/rc.sysinit: Fix on-boot relabelling (<dwalsh@redhat.com>)

2005-09-05  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: Updated Gujarati Translations

2005-09-03  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-09-02  Jun Gu  <mrbob0473@gmail.com>

	* po/zh_CN.po: Two items remains to be translated.

2005-08-25  Sherif Abdelgawad <sabdelg@redhat.com>

	* po/ar.po: Committing for M. Ghoniem

2005-08-22  Bill Nottingham <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.12-1

2005-08-21  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-08-17  Munzir Taha <munzirtaha@newhorizons.com.sa>

	* po/ar.po: - Fixed translations: "OK", "FAILED", and "PASSED".

2005-08-14  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-08-11  Miloš Komarčević <kmilos@gmail.com>

	* po/sr.po: *** empty log message ***

2005-08-06  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-08-05  Wei Liu  <weliu@redhat.com>

	* po/zh_CN.po, po/zh_TW.po: *** empty log message ***

2005-08-05  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: add changelog

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

	* src/process.c:
	from popt.h: The argument array is malloc'd as a single area, so only argv must be free'd. Oops. (#165033)

2005-08-04  Wei Liu  <weliu@redhat.com>

	* po/zh_CN.po: *** empty log message ***

2005-08-01  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	don't run multipath unless there's a multipath configuration

2005-07-30  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-07-29  Wei Liu  <weliu@redhat.com>

	* po/zh_CN.po: modified

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

	* sysconfig.txt: remove hdparm docs (#162962)

2005-07-28  Allan Sims <allsi@eau.ee>

	* po/et.po: Improved language

	* po/et.po: Fixed fuzzies and improved language

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

	* initscripts.spec, src/redhat-support-check.c:
	handle multi-core itanium (#163783)

2005-07-22  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-07-21  Daniel Walsh  <dwalsh@redhat.com>

	* src/initlog.c: fix glibc free error

2005-07-14  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/init.d/netfs:
	handle lvm & fsck for network block devices (#148764, <alewis@redhat.com>)

2005-07-13  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-wireless: set rate in quotes (#163123)

2005-07-13  Marissa Min Jung Shin <marissa.shin@gmail.com>

	* po/ko.po: This is my first Fedora translation.
	translated 34 fuzzy entries and 15 untranslated entries

2005-07-12  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

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

	* initscripts.spec:
	That fix was in 2.6.*12*-rc4, not 2.6.11-rc4. Adjust accordingly

2005-06-30  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-06-26  Sekine Tatsuo <tsekine@sdri.co.jp>

	* po/ja.po: fix some entries

2005-06-23  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	handle odd quoting in args (#161316, <stransky@redhat.com>)

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

	* rc.d/rc.sysinit: dmraid/multipath support

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

	* initscripts.spec, rc.d/rc.sysinit:
	add diskdump restore support (<tuchida@redhat.com>)
	conflict with appropriate diskdumputils

	* sysconfig/network-scripts/ifdown-aliases:
	add 'cd' to the proper dir (#161170)

2005-06-20  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: always use udevsend, even if no modules (#160987)

2005-06-10  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

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

	* setsysfont: correctly bracket systfontacm (#159706)

2005-06-06  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	A fix for the font-not-initialized-on-secondary-consoles was
	merged in 2.6.11-rc4. Remove workaround, add dep.

2005-05-30  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)

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

	* initscripts.spec: bump

	* sysconfig/network-scripts/ifup-eth: fix interface renaming (#158774)

2005-05-25  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

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

	* ChangeLog, initscripts.spec: 8.11-1

	* sysconfig/network-scripts/ifdown-eth, sysconfig/network-scripts/network-functions:
	fix grep to always match the full hwaddr, as opposed to matching '0'
	against '00:AA:BB:CC:DD:EE'. Take into account lines that end with
	spaces, or with "# this is a comment", too. Also, put the grep in only
	one place instead of 3. Fixes #157252, #153669.

2005-05-10  Philippe  <kissifrot@kissifrot.com>

	* po/fr.po: *** empty log message ***

2005-05-09  Philippe  <kissifrot@kissifrot.com>

	* po/fr.po: *** empty log message ***

2005-05-09  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	if you boot without selinux support, make sure things are
	automaitically relabelled later (<dwalsh@redhat.com>)

	* rc.d/rc.sysinit: fix fixfiles invocation (#157182)

2005-05-05  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: btmp should be 0600 (#156900)

2005-05-04  Nikolay Sarmadzhiev  <nikolays@phxa.com>

	* po/bg.po: *** empty log message ***

2005-05-04  Dmitri Alenitchev  <alenitchev@nm.ru>

	* po/ru.po:
	Замена "сброс postfix" на "очистка postfix"
	Замена "отмена postfix" на "экстренный останов postfix"

2005-05-04  Arangel Angov  <ufo@users.ossm.org.mk>

	* po/mk.po: fix

2005-05-03  Dmitri Alenitchev  <alenitchev@nm.ru>

	* po/ru.po: *** empty log message ***

2005-05-03  Amanpreet Singh Alam  <aalam@redhat.com>

	* po/pa.po: update by alam

2005-05-01  Rodolfo M. Raya  <rodolfo@heartsome.net>

	* po/es.po: Reviewed fuzzy entries. This file deserves thorough review

2005-04-30  Jaswinder Singh Phulewala  <jaswinderphulewala@yahoo.com>

	* po/pa.po: update by jaswinderphulewala@yahoo.com

2005-04-29  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 8.10-1

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	fix hang on stale gdm fifo (#156355)

2005-04-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt, rc.d/init.d/netfs, rc.d/init.d/network:
	I'm going to go out on a limb and say that /proc/mounts *doesn't* have
	comments.

2005-04-27  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.09-1

	* rc.d/rc.sysinit: clean up screen sockets (#155969)

2005-04-25  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/init.d/functions:
	use pidof -c in various functions

	* sysconfig/network-scripts/ifup-ppp:
	fix static routes with ppp demand dialing (#20142, <ohrn+redhat@chalmers.se>)

2005-04-25  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: translation finished in initscripts

2005-04-25  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small update

2005-04-25  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn_IN.po: Updated Bengali INDIA (bn_IN) translation:25/04

2005-04-25  Jamil Ahmed  <jam@siriusbb.com>

	* po/bn.po: Updated on April 25, 2005

2005-04-25  Amanpreet Singh Alam  <aalam@redhat.com>

	* po/pa.po: update by amanpreetalam@yahoo.com

2005-04-24  Arangel Angov  <ufo@users.ossm.org.mk>

	* po/mk.po: update

2005-04-24  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-04-24  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: translation partialy finished in initscripts

2005-04-24  Juan Pablo Berdejo  <jpberdejo@gmail.com>

	* po/es.po: Revisados los que estaban fuzzy

2005-04-22  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2005-04-22  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: add btmp support (#155537)

2005-04-22  Juan Pablo Berdejo  <jpberdejo@gmail.com>

	* po/es.po: Los que estaban sin traducir

2005-04-21  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-eth:
	don't send dhcp hostname (revert of fix for #149667)

2005-04-21  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small fixes

2005-04-21  Bahadir Yagan  <bahadir.yaan@mentorsystem.com>

	* po/tr.po: bitti fc4

2005-04-20  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2005-04-20  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	more early-login modifications (<mclasen@redhat.com>)

2005-04-20  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update header too

	* po/nb.po: Update

2005-04-20  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

2005-04-20  Alan Cox  <alan@redhat.com>

	* po/cy.po: Fix naughty Mr Bill's late translation changes

	fixes c/o Rhys Jones

2005-04-19  Pedro Macedo  <webmaster@margo.bijoux.nom.br>

	* po/pt_BR.po: Fixed several fuzzy strings.

2005-04-19  Keld Simonsen  <keld@rap.rap.dk>

	* po/da.po: updates
	anaconda/da.po comps-po/da.po initscripts/da.po
	system-config-date/da.po system-config-kickstart/da.po
	system-config-nfs/da.po system-config-users/da.po

2005-04-19  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: initscript-sys-date

2005-04-18  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Updated translation except related to postfix errors

2005-04-18  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions: fix echo (#155270)

2005-04-18  Amanpreet Singh Alam  <aalam@redhat.com>

	* po/pa.po: update by amanpreetalam@yahoo.com

2005-04-18  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec: - fix ifup-routes script (#155195)

	* sysconfig/network-scripts/ifup-routes:
	message from Thomas Zehetbauer on fedora-devel (in URL field).
	In initscripts-8.08-2, "/etc/init.d/network" will hang in "ifup-routes"
	during boot.
	The cause is a missing "$file" in the script, making "egrep" hang waiting
	for data on STDIN.

2005-04-18  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2005-04-18  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn_IN.po: Added translation for bengali INDIA (bn_IN):18/04

2005-04-18  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: Updated Gujarati Translation

2005-04-18  Chester Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: automerge

2005-04-18  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: - fix strstr call in rc.sysinit

2005-04-17  Chester Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2005-04-17  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-04-17  Ronny Buchmann  <ronny-vlug@vlugnet.org>

	* po/de.po: german translation updated

2005-04-16  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small fixes

2005-04-16  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

2005-04-16  Miloslav Trmac  <mitr@redhat.com>

	* po/cs.po: Update Czech translation

2005-04-16  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Updated Catalan translation.

2005-04-16  Lorenzo  <lorenzo.stobbione@clsengineering.it>

	* po/it.po: *** empty log message ***

2005-04-16  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2005-04-16  Rodolfo M. Raya  <rodolfo@heartsome.net>

	* po/es.po: Partial update

2005-04-16  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2005-04-16  Rodolfo M. Raya  <rodolfo@heartsome.net>

	* po/es.po: Partial update

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

	* ChangeLog, initscripts.spec: 8.08-1

	* po/sl.po, po/sq.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/ur.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/nb.po, po/nl.po, po/nn.po, po/no.po, po/pa.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/si.po, po/sk.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ka.po, po/ko.po, po/ku.po, po/lo.po, po/lt.po, po/mk.po, po/mr.po, po/ms.po, po/ar.po, po/bg.po, po/bn.po, po/bn_IN.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/en_GB.po, po/es.po, po/et.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/gu.po:
	update-po && refresh po

	* sysconfig/network-scripts/network-functions-ipv6:
	get rid of excess messages

	* initscripts.spec: the recent ifup-routes change requires bash 3.0

	* sysconfig/network-scripts/ifup-eth:
	automatically send hostname if it's available and not overridden
	(#149667)

	* Makefile, initscripts.spec, rc.d/rc.sysinit:
	load user-defined module scripts from /etc/sysconfig/modules at boot
	(#123927)

	* rc.d/rc.sysinit: remove more initlog code

	* rc.d/init.d/halt:
	reverse sort the mount list, avoiding errors (#147254, <jamesodhunt@hotmail.com>)

	* sysconfig/network-scripts/ifup-wireless: add SECURITYMODE (#145407)

	* sysconfig/network-scripts/network-functions:
	don't error out if hotplug doesn't exist (#140008)

	* rc.d/init.d/network: optimize some (#138557, <drepper@redhat.com>)

	* sysconfig/network-scripts/ifdown-ippp: get rid of an ifconfig use

	* rc.d/init.d/network, rc.d/rc.sysinit: silence sysctl some more

	* sysconfig/network-scripts/ifup-eth:
	- always return errors on trying to bring up nonexistent devices (#131461)
	- fix error message (#143674)

	* sysconfig.txt: add DHCLIENT_IGNORE_GATEWAY comment

	* sysconfig/network-scripts/ifup-eth:
	remove duplicate route check... this should get fixed in
	dhclient-script (or wherever) if it still happens

	* rc.d/rc.sysinit: add a autorelabel boot target (#154496)

	* prefdm:
	if something else is specified as $DISPLAYMANAGER, try that (#147304)

	* inittab.s390, prefdm, rc.d/rc.sysinit, initscripts.spec, inittab:
	early-login support

	* sysconfig/network-scripts/ifup-eth: cleanups

	* sysconfig.txt, sysconfig/network-scripts/ifup-eth:
	more pump/dhcpcd removal

	* sysconfig.txt, sysconfig/network-scripts/ifup-eth, sysconfig/network-scripts/ifup-post:
	remove support for the old firewall type

2005-04-15  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

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

	* sysconfig/network-scripts/ifup-routes:
	cleanup (#154353, <link@pobox.com>)

2005-04-11  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: setup-2.0.3 was for RHL 6.1; remove version.
	setup is required by basesystem. basesystem is required by glibc.
	ergo, requirement is superfluous

	* initscripts.spec: remove some conflicts for versions pre-7.0

	* initscripts.spec: remove legacy code for upgrades from 6.0 or earlier

	* prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)

	* sysconfig/network-scripts/ifup-routes:
	make sure commented lines are handled correctly (#154353, #114548)

	* sysconfig.txt: update documentation (#154531, <link@pobox.com>)

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

	* src/process.c:
	fix potential memory overread (#153685, <in-redhat@baka.org>)

2005-04-02  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update

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

	* rc.d/rc.sysinit: fix restorecon invocation (#153100)

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

	* src/initlog.c, src/process.c:
	free some of the more egregious memory leaks (#85935)

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

	* ChangeLog, initscripts.spec: 8.07-1

	* initscripts.spec, src/Makefile, src/initlog.1, src/initlog.c:
	bring back initlog for third-party scripts. officially deprecate it

2005-03-31  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

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

	* ChangeLog, initscripts.spec: 8.06-1

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown-eth, sysconfig/network-scripts/ifup:
	handle alternate VLAN naming schemes (#115001)

	* sysconfig/network-scripts/ifup-ipsec: handle non-ascii keys (#150552)

2005-03-30  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-03-30  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: one more fresh review completed

2005-03-29  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: miscellaneous file

2005-03-28  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown-ipsec, sysconfig/network-scripts/ifup-ipsec:
	add proper ipsec route (#146169, #140654)

	* sysconfig/network-scripts/ifdown-ipsec, sysconfig/network-scripts/ifup-ipsec:
	set proper route (#140654, #146169)

	* rc.d/rc.sysinit: add a restorecon for tmpfs use

2005-03-28  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small fixes

2005-03-24  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Updated translation of 'storage' on request of Leon Kanter

2005-03-23  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn_IN.po: Updated Bengali(India) bn_IN translation:23/03

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

	* sysconfig.txt: add more notes

	* sysconfig.txt: add a quick note on ONHOTPLUG

2005-03-21  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn_IN.po: Added file for locale Bengali (IN):21/03

2005-03-20  Michael Stefaniuc  <mstefani@redhat.com>

	* po/ro.po: - translate the low hanging fruits (201 messages)

2005-03-19  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small fixes

2005-03-17  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small fixes

2005-03-16  Michael Stefaniuc  <mstefani@redhat.com>

	* po/ro.po: - change the file encoding to utf-8
	- use the right characters instead of their latin-1 replacements
	- clean up the fuzzy messages (fixed or removed)

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

	* po/hi.po, po/pt_BR.po, po/ta.po: don't do that! :) (#151120)

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

	* rc.d/init.d/functions:
	don't return 1 if the service isn't running at all (#151104)

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

	* sysconfig/network-scripts/ifdown-ipsec, sysconfig/network-scripts/ifup-ipsec:
	don't explicitly set fwd policies; let setkey handle it

2005-03-10  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Small fixes

2005-03-07  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.05-1

2005-03-03  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/network-functions-ipv6:
	ipv6 cleanups (<pb@bieringer.de>)

2005-03-02  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: don't run rngd, it's broken

	* rc.d/rc.sysinit: fix check (#130350)

2005-02-28  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: get rid of duplicate printout (#149795)

2005-02-21  Chester Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2005-02-19  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Poprawione literowki

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

	* sysconfig/network-scripts/ifdown-ipsec:
	more ipsec stuff (#147001, <ckjohnson@gwi.net>)

2005-02-17  Sarah Wang  <sarahs@redhat.com>

	* po/bn.po, po/gu.po, po/hi.po, po/ta.po, po/bg.po, po/ar.po, po/es.po, po/pt_BR.po, po/mk.po, po/ko.po, po/fr.po, po/zh_TW.po:
	merged with pot file

2005-02-16  Sarah Wang  <sarahs@redhat.com>

	* po/it.po: merged with pot file

2005-02-16  Lauri Nurmi <lanurmi@iki.fi>

	* po/fi.po: Updated Finnish translation.

2005-02-16  Sarah Wang  <sarahs@redhat.com>

	* po/pa.po: merged with pot file

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

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-eth:
	dhcp release cleanups (<jvdias@redhat.com>)

2005-02-13  Lauri Nurmi <lanurmi@iki.fi>

	* po/fi.po: Updated Finnish translation.

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

	* sysconfig/network-scripts/ifup-bnep:
	bluetooth update <dwmw2@infradead.org>

2005-02-10  Lauri Nurmi <lanurmi@iki.fi>

	* po/fi.po: Updated Finnish translation.

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

	* rc.d/init.d/netfs:
	fix _netdev unmounting (#147610, <alewis@redhat.com>)

2005-02-07  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-eth:
	handle being called on down devices better

2005-02-07  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-02-05  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-02-01  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown-post:
	handle saved resolv.conf on all device types

	* sysconfig/network-scripts/network-functions: unbreak the "cleanup"

2005-01-29  Piotr Drąg  <raven@pmail.pl>

	* po/pl.po: Poprawione literówki i różne błędy językowe

2005-01-29  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Committed patches for bugs founded by Maxim Dziumanenko.

2005-01-28  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2005-01-27  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* Update Ukrainian translation

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

	* ChangeLog, initscripts.spec: 8.04-1

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-bnep, sysconfig/network-scripts/ifdown-eth, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-bnep, sysconfig/network-scripts/ifup-eth:
	split out ifup/ifdown general case to ifup/ifdown-eth; add ifup/ifdown-bnep (<dwmw2@redhat.com>)

	* sysconfig/network-scripts/ifup-ipsec: add fwd policies (#145507)

2005-01-18  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: fix multiple scsi_hostadapter loads (#145432)

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

	* sysctl.conf, sysctl.conf.s390, sysctl.conf.sparc:
	add syncookies (#145201)

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

	* sysconfig.txt: document NOZEROCONF

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

	* ChangeLog, initscripts.spec: 8.03-1

	* initscripts.spec, rc.d/rc.sysinit:
	use udevsend to handle hotplug events, conflict with inappropriate
	udev versions

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	remove pump, dhcpcd support.

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	fix various fgreps to not catch commented lines (#136531, expanded from <cww@redhat.com>)

	* sysconfig/network-scripts/ifup: fix ONxxx (#136531, <cww@redhat.com>)

	* sysconfig/network-scripts/ifup:
	set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)

	* sysconfig/network-scripts/ifdown:
	kill dhcp client even if BOOTOPROTO is now static (#127726, others)

	* sysconfig.txt, sysconfig/network-scripts/ifdown:
	support releasing the dhcp lease (<jvdias@redhat.com>)

	* sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	clean up whitespace <pb@bieringer.de>

	* ipv6-6to4.howto, ipv6-tunnel.howto:
	IPv6 doc changes (<pb@beiringer.de>,<pekkas@netcore.fi>)

2005-01-11  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	replace the use of route/ifconfig with ip, remove support for ipv6calc
	(<pb@bierenger.de>, <pekkas@netcore.fi>)

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

	* rc.d/init.d/functions: fix quoting (#144634)

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

	* sysconfig/network-scripts/network-functions:
	return the result of the operation, not the result of nscd

	* rc.d/init.d/network, rc.d/rc.sysinit: shut up sysctl (#144483)

2005-01-03  Bill Nottingham  <notting@redhat.com>

	* Changelog, initscripts.spec: 8.02-1

	* rc.d/rc.sysinit: use kmodule's daemon mode by default

2005-01-03  Alan Cox  <alan@redhat.com>

	* po/en_GB.po: UK English: Initialised, Synchronised, re-configured

	General bugs in base one that ought to be fixed
		"Red Hat Network Daemon" should be "daemon"
		IA32 (microcode) is IA-32 according to the trademark

2004-12-22  Bill Nottingham  <notting@redhat.com>

	* src/kmodule.c:
	in order to avoid probing twice on startup, add a daemon mode that
	waits for a connection on an abstract socket, and then dumps the
	probe information. Requires a corresponding kudzu change to read
	from said socket...

	* initscripts.spec, rc.d/init.d/functions, rc.d/rc.sysinit, src/Makefile, sysconfig/network-scripts/network-functions:
	remove initlog, minilogd

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

	* sysconfig/network-scripts/network-functions-ipv6:
	change setting of IPv6 default route (#142308, <pb@bieringer.de>

	* rc.d/init.d/netfs: don't unmount NFS root FS (#142169)

2004-12-07  Bill Nottingham  <notting@redhat.com>

	* src/kmodule.c: no DDC probe, please

2004-12-07  Sarah Smith  <sarahs@redhat.com>

	* po/en_GB.po, po/zh_CN.po: merged with pot file

2004-12-06  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 8.01-1

2004-12-02  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: do implicit unicode conversion on keymap

2004-12-02  Erwien Samantha  <erwiensamantha@gmail.com>

	* po/id.po: Inialisasi

2004-12-01  Munzir Taha  <munzirtaha@newhorizons.com.sa>

	* po/ar.po: - 535 translated messages.

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

	* rc.d/rc.sysinit: get rid of noise on mount -f

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

	* rc.d/rc.sysinit:
	only run restorecon if absolutely necessary (restorecon will check
	is_selinux_enabled anyway)

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

	* ChaneLog, initscripts.spec: 8.00-1

	* rc.d/rc.sysinit: fix mtab writing (#139656)

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

	* ChangeLog, initscripts.spec: 7.99-1

	* rc.d/rc.sysinit:
	clear and repopulate mtab before mounting other filesystems (#139656)

	* rc.d/init.d/halt, rc.d/rc.sysinit: remove more devfs compat

	* initscripts.spec: bump release

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

	* ChangeLog, initscripts.spec: 7.99-1

	* rc.d/rc.sysinit:
	clear and repopulate mtab before mounting other filesystems (#139656)

	* rc.d/init.d/halt, rc.d/rc.sysinit: remove more devfs compat

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

	* ChangeLog, initscripts.spec: 7.98-1

	* rc.d/init.d/netfs: don't mount GFS (#140281)

2004-11-23  Bill Nottingham  <notting@redhat.com>

	* src/kmodule.c: ftw? is slow.

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

	* src/initlog.c, src/minilogd.c:
	fix various minilogd bogosities (uninitialized variable, handling of wrong-protocol connections, don't check atime) (#106338)

2004-11-15  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	- configure the CTC protocol if CTCPROT is set (mainframe)

2004-11-15  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updates

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

	* sysconfig/network-scripts/network-functions:
	fix check_link_down to still check negotiation if link is listed as "up" on entering (#110164, <dbaron@dbaron.org>

2004-11-14  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: Some fixes for initscripts nl.po

2004-11-11  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	- parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)

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

	* rc.d/rc.sysinit: don't completely override AUTOFSCK_OPT

2004-11-10  N Jayaradha  <njaya@redhat.com>

	* po/ta.po: trans

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

	* sysconfig/network-scripts/ifup:
	fix typo (#134787, <bnocera@redhat.com>)

2004-11-07  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.95-1

2004-11-04  Allan Sims <allsi@eau.ee>

	* po/et.po: Fixed fuzzies and last translated

2004-11-04  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2004-11-04  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: fix firmware uploading on boot (#137263)

2004-11-03  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updates

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

	* rc.d/rc.sysinit: more LC_ALL=C

2004-11-02  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: ankit@redhat.com * Proof Read

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

	* rc.d/rc.sysinit: fsck *once*. rearrange things thusly.

	* rc.d/rc.sysinit: move zfcp before raid/lvm

	* rc.d/rc.sysinit: remove isapnp call

	* rc.d/rc.sysinit: set up raid & LVM before first fsck

	* rc.d/rc.sysinit: remove old raidtab code in favor of mdadm

	* rc.d/rc.sysinit: remove LVM1 code

	* rc.d/rc.sysinit:
	remove version code (not used) (<laroche@redhat.com>)

	* rc.d/rc.sysinit: remove hdparm code; this is best done elsewhere

	* rc.d/rc.sysinit:
	remove delay on unclean startup - rely on autofsck/forcefsck

2004-11-01  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	fix blacklisting to not mismatch on substrings (#137755)

	* rc.d/rc.sysinit:
	minor bug fixes (RHGB_STARTED, $cmdline use-before-set, <laroche@redhat.com>)

2004-10-31  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec, rc.d/rc, rc.d/rc.sysinit, sysconfig.txt, sysconfig/init, sysconfig/init.s390, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/network-functions:
	- some optims/cleanups, details in initscripts.spec

2004-10-29  Bill Nottingham  <notting@redhat.com>

	* src/kmodule.c: don't probe the serial bus

2004-10-28  Bill Nottingham  <notting@redhat.com>

	* src/kmodule.c: remove bogus include (#137470)

	* rc.d/init.d/functions: fix incorrect rhgb temp path (#137391)

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

	* prefdm: fix prefdm fallback to installed display managers (#137274)

2004-10-27  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: FPR

2004-10-26  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2004-10-26  Dafydd Walters  <dwalters@dragontechnology.com>

	* po/cy.po:
	1 fuzzy fixed, and made translation of 'loopback' consistent.

2004-10-25  Sarah Smith  <sarahs@redhat.com>

	* po/en_GB.po: mark all entries fuzzy

	* po/en_GB.po: fixed header

2004-10-25  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updates

2004-10-25  Sarah Smith  <sarahs@redhat.com>

	* po/en_GB.po: added new locale as requested

2004-10-23  Martin Willemoes Hansen  <mwh@sysrq.dk>

	* po/da.po: quick fix

	* po/da.po:
	* da.po: Updated Danish translation. Hmm why cant I change ChangeLog as well :(

2004-10-22  Lorenzo  <lorenzo.stobbion@clsengineering.it>

	* po/it.po: *** empty log message ***

2004-10-20  Bill Nottingham  <notting@redhat.com>

	* Makefile: fix 136421

2004-10-19  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Translated 2 messages modified after FC3 string freeze

2004-10-19  Yelitza Louze  <ylouze@redhat.com>

	* po/es.po: updated

2004-10-18  Nikolay Sarmadzhiev  <nikolays@phxa.com>

	* po/bg.po: bg.po

2004-10-18  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: updated

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

	* ChangeLog, initscripts.spec: 7.93-1

	* sysconfig/network-scripts/ifup: fix GATEWAYDEV (#133575)

	* sysconfig/network-scripts/ifup:
	fix GATEWAYDEV (#133375, <pekkas@netcore.fi>)

2004-10-18  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Updated translation

2004-10-18  Adrian Grygier  <adi@zwami.pl>

	* po/pl.po: *** empty log message ***

2004-10-18  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2004-10-18  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2004-10-18  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: ankit@redhat.com 18/10/2004

2004-10-18  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated translation

2004-10-18  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn.po: Updated Bengali(bn) Translation:date 18/10

2004-10-18  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: yet to proof

2004-10-18  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: fuzzy

2004-10-18  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: latest updates

2004-10-18  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po: udpated those two

2004-10-17  Chester Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2004-10-17  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update

2004-10-17  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2004-10-17  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: translation finished

2004-10-17  Ronny Buchmann  <ronny-vlug@vlugnet.org>

	* po/de.po: fix fuzzy/missing after update

2004-10-17  Miloslav Trmac  <mitr@redhat.com>

	* po/cs.po: Update Czech translation

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

	* ChangeLog, initscripts.spec: 7.91-1

	* po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/ur.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/si.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/ja.po, po/ka.po, po/ko.po, po/ku.po, po/lo.po, po/lt.po, po/mk.po, po/mr.po, po/ms.po, po/nb.po, po/nl.po, po/nn.po, po/no.po, po/pa.po, po/et.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/gu.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ar.po, po/bg.po, po/bn.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/es.po:
	refresh-po & update-po

	* rc.d/rc.sysinit:
	automatically reboot when fsck calls for it, instead of requiring manual intervention (#117641 and duplicates)

	* rc.d/rc.sysinit: mdadm support

	* rc.d/rc.sysinit:
	make sure we return to rhgb after fsck (#133966, #112839)

	* ppp/ip-down, ppp/ip-up:
	call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)

	* sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/network-functions-ipv6:
	some cleanups

2004-10-17  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2004-10-15  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: update

2004-10-13  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: remove devlabel call

2004-10-13  Tomasz Berner  <tom@man.lodz.pl>

	* po/pl.po: CVS_SILENT

2004-10-12  Tomasz Berner  <tom@man.lodz.pl>

	* po/pl.po: CVS_SILENT

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

	* sysconfig/network-scripts/ifup-wireless:
	fix key for open vs. restricted (#135235, <dax@gurulabs.com>)

2004-10-11  Allan Sims <allsi@eau.ee>

	* po/et.po: Some fixed fuzzies

2004-10-09  Ronny Buchmann  <ronny-vlug@vlugnet.org>

	* po/de.po: shorten text to fit in line

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

	* initscripts.spec, sysconfig/rawdevices: remove rawdevices

2004-10-08  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: spelling

2004-10-08  Karsten Hopp <karsten@redhat.com>

	* ChangeLog, initscripts.spec: 7.90-1

	* sysconfig/network-scripts/network-functions: fix portname for LCS devices

2004-10-07  Florian La Roche <laroche@redhat.com>

	* ChangeLog, initscripts.spec: 7.89-1

	* sysctl.conf*: disallow source routed packets per default

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

	* ChangeLog, initscripts.spec: 7.88-1

	* initscripts.spec: fix typo

2004-10-06  Dan Walsh  <dwalsh@redhat.com>

	* initscripts.spec: fix location of runuser

2004-10-06  N Jayaradha  <njaya@redhat.com>

	* po/ta.po: review -1

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

	* ChangeLog, initscripts.spec: 7.87-1

2004-10-05  Dan Walsh  <dwalsh@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	don't remount inside of SELinux relabel code

2004-10-05  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nb.po: Update

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

	* initscripts.spec, rc.d/init.d/functions:
	use runuser instead of su, require it

	* rc.d/init.d/halt: whoops, wrong file (#134432)

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

	* ChangeLog, initscripts.spec: 7.86-1

	* rc.d/rc.sysinit:
	use /etc/hotplug/blacklist to blacklist modules (#132719)

2004-09-30   Maxim Dziumanenko <mvd@mylinux.com.ua>

	* po/uk.po:
	Updated Ukrainian translation

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

	* rc.d/init.d/functions: filter indic locales on the console (#134198)

2004-09-29  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: check

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

	* ChangeLog, initscripts.spec: 7.85-1

2004-09-29  Nikolay Sarmadzhiev  <nikolays@phxa.com>

	* po/bg.po: bg.po

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

	* rc.d/init.d/functions:
	fix checkpid logic, clean up potential errors (#134030)

2004-09-28  Ronny Buchmann  <ronny-vlug@vlugnet.org>

	* po/de.po: more consistency, some fixes

2004-09-28  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)

2004-09-28  Sarah Smith  <sarahs@redhat.com>

	* po/he.po, po/ku.po, po/mr.po, po/si.po, po/sq.po, po/ur.po:
	fixed formatting error

2004-09-27  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

2004-09-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: fix overzealousness with -range aliases (#65415)

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	shell quoting will EAT YOUR BRANE

	* sysconfig/network-scripts/network-functions:
	be more liberal in what we accept for link types (#90602, #127984)

	* rc.d/init.d/functions:
	allow daemon to coredump if requested (#130175)

2004-09-27  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

2004-09-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions: export LC_MESSAGES (#133786)

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

	* rc.d/rc.sysinit: use recursive restorecon

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

	* initscripts.spec, prefdm: clean up prefdm
	- don't use which... just try to exec the thing
	- remove completely useless stanza

	* initscripts.spec: conflict with tcsh < 6.13-5, for dspmbyte setting

	* rc.d/rc.sysinit: move relabel until after all FSes are checked

	* rc.d/rc.sysinit: fix restorecon

2004-09-23  Keld Simonsen  <keld@rap.rap.dk>

	* po/da.po: updates
	initscripts/da.po system-config-securitylevel/da.po
	anaconda-help/help/da.po

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

	* lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)

2004-09-23  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: translation finished in initscripts

2004-09-23  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn.po: Updated Bengali (bn) Translation

2004-09-23  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Translated forgoten 'non translated' strings

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

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	fix shell quoting

2004-09-23  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2004-09-22  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.84-1

	* rc.d/rc.sysinit: second start stanza is extraneous

2004-09-22  Jeremy Katz  <katzj@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
	- conflict with old udev
	- use udev if it's present

2004-09-22  Gabor Suveg  <gabor@suveg.hu>

	* po/hu.po: testing fuzzy stings

2004-09-22  Tomasz Berner  <tom@man.lodz.pl>

	* po/pl.po: CVS_SILENT

2004-09-22  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Translation is complete and ready for FC3

2004-09-22  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't mount usbfs without usb. also, at least be consistent

2004-09-22  N Jayaradha  <njaya@redhat.com>

	* po/ta.po: review 1 completed

2004-09-21  Tomasz Berner  <tom@man.lodz.pl>

	* po/pl.po: CVS_SILENT

2004-09-21  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Fixed few strings

2004-09-21  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn.po: Updated Bengali (bn) Translation

2004-09-21  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Partial translation after FC3 string freeze

2004-09-21  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: ankit@redhat.com 21/09/2004

2004-09-21  Sarah Smith  <sarahs@redhat.com>

	* po/pa.po: pa.po

2004-09-21  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: translation update done

2004-09-20  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: proofread

2004-09-20  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: latest updates

2004-09-19  Krzysztof Kluczynski  <sonyam@tlen.pl>

	* po/pl.po: no message

2004-09-19  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po: some fixes in initscripts nl.po

2004-09-18  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

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

	* ChangeLog, initscripts.spec: 7.82-1

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	fix handling of nonexistent devices (#132839)

2004-09-17  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: *** empty log message ***

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

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	rhgb enhancements (<veillard@redhat.com>, #132665)

2004-09-17  Hirofumi Saito  <hi_saito@yk.rim.or.jp>

	* po/ja.po: some translation finished in initscripts

2004-09-17  Krzysztof Kluczynski  <sonyam@tlen.pl>

	* po/pl.po: no message

2004-09-17  Yelitza Louze  <ylouze@redhat.com>

	* po/es.po: Updated spanisht translation

2004-09-17  Francesco Valente  <fvalen@redhat.com>

	* po/it.po: Updated

2004-09-16  Verena Fuhrer  <vfuehrer@redhat.com>

	* po/de.po: chng + trans de

2004-09-16  Chester Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

2004-09-16  Hicham AMAOUI  <amaoui@altern.org>

	* po/ar.po: - updated.

2004-09-16  Nikolay Sarmadzhiev  <nikolays@phxa.com>

	* po/bg.po: bg.po

2004-09-16  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2004-09-16  Miloslav Trmac  <mitr@redhat.com>

	* po/cs.po: Update Czech translation

2004-09-16  Szell Tamas  <tomi@digiflex.hu>

	* po/hu.po: tomjoad

2004-09-16  Alan Cox  <alan@redhat.com>

	* po/cy.po: We love string freezes

2004-09-16  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2004-09-16  Mohamed Eldesoky  <mohamed.eldesoky@linux-egypt.org>

	* po/ar.po:
	Fixing some fuzzy entries, and added some translations for new strings

2004-09-16  Pedro Macedo  <webmaster@margo.bijoux.nom.br>

	* po/pt_BR.po:
	Traduzidas as novas linhas. Falta revisao e checagem de consistencia.
	Translated the new lines. Needs revision and consistency check.

2004-09-16  hutuworm  <hutuworm@hutuworm.org>

	* po/zh_CN.po: update by hutuworm @ 20040915

2004-09-16  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Updated translation

2004-09-16  Bill Nottingham  <notting@redhat.com>

	* po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/ro.po, po/ru.po, po/si.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/ur.po, po/ja.po, po/ka.po, po/ko.po, po/ku.po, po/lo.po, po/lt.po, po/mk.po, po/mr.po, po/ms.po, po/nb.po, po/nl.po, po/nn.po, po/no.po, po/pa.po, po/pl.po, po/pt.po, po/pt_BR.po, po/et.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/gu.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ar.po, po/bg.po, po/bn.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/es.po:
	update-po/refresh-po

2004-09-15  Sarah Smith  <sarahs@redhat.com>

	* po/lo.po: initial file

	* po/zh_CN.po: merged with pot files

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

	* initscripts.spec: require nash (#132513)

2004-09-14  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec: - build a new package with yesterdays iucv changes

2004-09-13  Karsten Hopp  <karsten@redhat.com>

	* sysconfig/network-scripts/ifup-iucv:
	- same as ctc devices, move loading of sysconfig-network to top and allow overwriting of GATEWAY in device config

2004-09-13  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: proofread

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

	* ChangeLog, initscripts.spec: 7.80-1

	* sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/network-functions-ipv6:
	fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)

2004-09-10  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-ctc:
	- CTC uses GATEWAY as pointtopoint partner. This works as long as CTC
	  is the primary network interface, but fails otherwise.
	  Load /etc/sysconfig/network before ifcfg-ctcX so that GATEWAY can be
	  set in ifcfg-ctcX and doesn't get overwritten.

2004-09-09  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: proofread

2004-09-08  Dan Walsh  <dwalsh@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: Fix call to restorecon

2004-09-08  N Jayaradha  <njaya@redhat.com>

	* po/ta.po: yet to review

2004-09-08  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.78-1

	* rc.d/rc.sysinit: restore contexts of udev-created /dev files

2004-09-07  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: proofread

2004-09-06  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn.po: Updated Bengali (bn) Translation

2004-09-05  Miloslav Trmac  <mitr@redhat.com>

	* po/cs.po: Minor fixes to Czech translation

2004-09-04  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn.po: Updated Bengali (bn) Translation

2004-09-03  Runa Bhattacharjee  <runab@redhat.com>

	* po/bn.po: Adding Bengali (bn) Translation

2004-09-03  Ankitkumar Rameshchandra Patel  <ankit@redhat.com>

	* po/gu.po: ankit@redhat.com 03/09/2004

2004-09-03  Rajesh Ranjan  <rranjan@redhat.com>

	* po/hi.po: prfread

2004-09-02  Nikolay Sarmadzhiev  <nikolays@phxa.com>

	* po/bg.po:
	 	bg.po

2004-09-01  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.77-1

	* rc.d/rc.sysinit: mount usbfs (#131347)
	start any automatic raid devices

2004-09-01  Jeremy Katz  <katzj@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: udev uses UDEV_TMPFS now

2004-09-01  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec: ifcfg-escon is gone

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	- qeth can hav eth, hsi and tr interfaces, lcs can have eth and tr interfaces,
	  too. We can't tell apart if p.e. eth0 is qeth or lcs, but need to know it for
	  sysfs configuration. Remove TYPE=QETH hack and use a more generic NETTYPE
	  instead

	* sysconfig/network-scripts/ifup-escon, sysconfig/network-scripts/network-functions:
	- esconX interfaces are gone, they are now called ctcX and configured the same as ctc interfaces

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

	* initscripts.spec:
	remove triggers for ancient releases, bulletproof remaining ones (#131356)

2004-08-31  Dan Walsh  <dwalsh@redhat.com>

	* rc.d/rc.sysinit: allow messages to show up on console

2004-08-30  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	LCS devices use portno instead if portname

2004-08-27  Jason Vas Dias  <jvdias@redhat.com>

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	Add support for new DHCPv6 client (new DHCPV6C ifcfg variable)

	* initscripts.spec:
	Add support for new DHCPv6 client (new DHCPV6C ifcfg variable) to ifup

	* sysconfig.txt: Add documentation for new DHCPV6C ifcfg variable

	* sysconfig/network-scripts/ifup:
	Add support for new DHCPv6 client (new DHCPV6C ifcfg variable)

2004-08-27  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, Changelog: 7.72-1
	
	* initscripts.spec:
	flip the kernel conflict to a Requires:

2004-08-26  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-ctc, sysconfig/network-scripts/ifup-iucv:
	- ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead

2004-08-26  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.70-1

	* rc.d/rc.sysinit, src/Makefile, src/kmodule.c:
	autoloading of hardware at boot time

2004-08-26  Chester Cheng  <ccheng@redhat.com>

	* po/zh_TW.po: *** empty log message ***

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

	* rc.d/rc.sysinit:
	minor cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)

	* sysconfig/network-scripts/ifup: support STP bridging (#123324)

	* rc.d/rc.sysinit: do a SELinux relabel if forced

	* rc.d/rc.sysinit: remove devfs compat and 2.4 compat

	* sysconfig/network-scripts/ifup-wireless:
	support multiple keys (#127957)

	* sysconfig/network-scripts/network-functions:
	fix firmware loading (#129155, <bnocera@redhat.com>)

	* sysconfig/network-scripts/network-functions:
	fix firmware loading (#129155)

2004-08-24  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	- configure all zfcp (scsi over fibrechannel) devices before trying to mount them (mainframe)

2004-08-23  Jason Vas Dias  <jvdias@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	 fix resolv.conf merge if pre-existing resolv.conf nonexistent or empty

2004-08-23  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: final

2004-08-20  Jason Vas Dias  <jvdias@redhat.com>

	* initscripts.spec:
	Preserve options in resolv.conf; Allow users to use generic /etc/dhclient.conf

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

	* sysconfig/network-scripts/ifup-post: remove wackycomment

	* sysconfig/network-scripts/network-functions: remove unneeded line

2004-08-20  Jason Vas Dias  <jvdias@redhat.com>

	* sysconfig/network-scripts/ifup:
	Allow users to use generic /etc/dhclient.conf if per-device file non-existent or empty

	* sysconfig/network-scripts/network-functions:
	Fix for 125712: preserve options in resolv.conf

2004-08-20  Jeremy Katz  <katzj@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	* Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
	- look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)

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

	* ChangeLog, initscripts.spec: 7.64-1

	* rc.d/rc.sysinit: check for dev file too (#130350)

2004-08-19  Than Ngo  <than@redhat.com>

	* sysconfig/network-scripts/ifup-ippp, initscripts.spec:
	- allow CBCP with own number (#125710)

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

	* ChangeLog, initscripts.spec: 7.62-1

	* sysconfig/network-scripts/network-functions:
	fix up resolv.conf munging (#129921)

	* rc.d/rc.sysinit: use rngd if available

	* rc.d/rc.sysinit: run udev_start if necessary (#120605)

	* rc.d/rc.sysinit: readonly root updates (#129893, <markmc@redhat.com>)

	* sysconfig/network-scripts/ifup-wireless: quote key (#129930)

2004-08-18  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/init.d/rawdevices: remove rawdevices (#130048)

	* rc.d/rc.sysinit:
	handle binfmt_misc here for the case where it's built in (#129954)

	* src/mkkerneldoth, initscripts.spec, rc.d/rc.sysinit, src/Makefile:
	remove mkkerneldoth

	* lang.csh, lang.sh: don't remove linguas (part of #9733)

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

	* rc.d/init.d/netfs, rc.d/init.d/network: fix nfs unmounting (#129765)

2004-08-12  Sarah Smith  <sarahs@redhat.com>

	* po/ka.po: new locale translation file added

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

	* ChangeLog, initscripts.spec: 7.61.1-1

	* initscripts.spec: fix URL (#129433)

	* initscripts.spec, sysconfig.txt, sysconfig/network-scripts/ifup:
	spelling :)

2004-08-11  Jason Vas Dias  <jvdias@redhat.com>

	* sysconfig.txt, initscripts.spec, sysconfig/network-scripts/ifup:
	fixed bug #120093: added PERSISTANT_DHCLIENT option to ifcfg files

2004-08-03  Jason Vas Dias  <jvdias@redhat.com>

	* sysconfig/network-scripts/ifdown-post: use change_resolv_conf

2004-08-03  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-iucv:
	- write peerid into sysfs for IUCV devices (mainframe)

2004-08-03  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	don't remove /dev/mapper/control - nash will do it if it has to (#127115)

2004-08-02  Jason Vas Dias  <jvdias@redhat.com>

	* sysconfig/network-scripts/network-functions:
	/sbin/nscd -> /usr/sbin/nscd

2004-08-01  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: updated

2004-07-30  Jason Vas Dias  <jvdias@redhat.com>

	* sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifup-post:
	fix for bug 125712: added change_resolv_conf function to network-functions; made ipup-post and ipdown-post invoke it

2004-07-27  Andrzejo Olszewski  <andrzej.olszewski@ifj.edu.pl>

	* po/pl.po: Finished by A. Olszewski. Not tested on live system.

2004-07-27  Martin Willemoes Hansen  <mwh@sysrq.dk>

	* po/da.po: da.po: Converted from iso-8859-1 to utf-8

	* po/da.po: da.po: Fixed spelling mistake and added proper header

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

	* rc.d/init.d/network: don't bring interfaces down twice (#127487)

2004-07-26  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updated Malay translation

2004-07-25  Miloslav Trmac  <mitr@redhat.com>

	* po/cs.po: Minor fixes to Czech translation

2004-07-23  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: bla

2004-07-22  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: bla

2004-07-22  Onur Gungor  <onurgu@boun.edu.tr>

	* po/tr.po: translation of anaconda is finished.

2004-07-21  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: bla

2004-07-21  Onur Gungor  <onurgu@boun.edu.tr>

	* po/tr.po: *** empty log message ***

2004-07-20  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: ufo pederce

	* po/mk.po: prevod

2004-07-19  Onur Gungor  <onurgu@boun.edu.tr>

	* po/tr.po: *** empty log message ***

2004-07-18  Tomislav Markovski  <tome@users.ossm.org.mk>

	* po/mk.po: prv prevod

2004-07-16  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: *** empty log message ***

2004-07-14  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup: fix bonding + no IP (#127285)

2004-07-12  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)

	* rc.d/rc.sysinit: fix context

	* initscripts.spec: add changelog

2004-07-12  Sarah Smith  <sarahs@redhat.com>

	* po/gu.po: initial file

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

	* rc.d/rc.sysinit: silence restorecon

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

	* rc.d/init.d/halt, rc.d/init.d/random, rc.d/rc.sysinit, initscripts.spec:
	move random stuff to rc.sysinit/halt; move all swap to after this.
	prereq of bug #123278

2004-07-02  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* po/uk.po: Updated Ukrainian translation

2004-07-02  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.59-1

	* rc.d/rc.sysinit: set context (#127099, <concert@europe.com>)

2004-06-30  Nikolay Sarmadzhiev  <nikolays@phxa.com>

	* po/bg.po: commiting bg.po.
	Whole translation is finished. I tested it and itś working.
	The fuzzy translations are fixed as well. If you have any questions - nikolays@phxa.com

2004-06-30  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: don't mount gfs filesystems in rc.sysinit

2004-06-30  Sarah Smith  <sarahs@redhat.com>

	* po/he.po: initial file

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

	* ChangeLog, initscripts.spec: 7.58-1

	* rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)

	* sysconfig/network-scripts/network-functions:
	set devicetype for xDSL (#126194)

	* rc.d/rc.sysinit:
	ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)

	* rc.d/rc.sysinit:
	unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)

2004-06-25  Sarah Smith  <sarahs@redhat.com>

	* po/mk.po: initial po files

2004-06-24  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: bump rev

2004-06-23  Nawawi  <nawawi@roggeng.net>

	* po/ms.po: habis.

2004-06-23  Razvan Corneliu C.R. VILT  <razvan.vilt@linux360.ro>

	* po/ro.po: updated by Razvan Vilt 20040623153900

2004-06-22  Nawawi  <nawawi@roggeng.net>

	* po/ms.po: kita minum dulu..

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

	* sysconfig/network-scripts/ifup: bonding fixes
	- don't enslave before setting the address for static case.
	- for DHCP, minimize the erorrs (they won't all go away), and make it
	  more robust

2004-06-08  Noriko Mizumoto  <noriko@redhat.com>

	* po/ja.po: fixed mistranslation #329

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

	* sysconfig.txt: clarify docs

	* po/Makefile: add /etc/rc

	* sysconfig/network-scripts/ifup-aliases:
	remove bogus route setting (#120908)

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	vlan fixes (#107504, <hrunting@texas.net>)

	* sysconfig/network-scripts/ifup:
	remove duplicate setting of network routes (#125450)

	* setsysfont: remove error (#100559)

2004-06-02  Sarah Smith  <sarahs@redhat.com>

	* po/mr.po, po/ur.po, po/ku.po: add new locales

2004-05-31  Sarah Smith  <sarahs@redhat.com>

	* po/si.po: adding new locale

	* po/initscripts.pot: fixed the header

2004-05-26  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: more silencing (<alexl@redhat.com>)

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

	* ChangeLog, initscripts.spec: 7.57-1

	* rc.d/rc.sysinit: readonly-root fixes (<alexl@redhat.com>)

2004-05-25  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	-special TYPE for qeth devices to differenciate them from ethX

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

	* initscripts.spec: woops, 4 year old typo (#123680)

2004-05-21  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network:
	fix bridging confusing module order (#122848, <luto@myrealbox.com>)

	* rc.d/rc.sysinit: don't mount cifs (#122501)

2004-05-19  Robertas Dereskevicius <roberto@mikrovisata.net> 

	* po/lt.po: *** empty log message ***

2004-05-18  Karsten Hopp  <karsten@redhat.com>

	* initscripts.spec: add changelog

	* initscripts.spec, sysconfig/network-scripts/ifup-ctc, sysconfig/network-scripts/network-functions:
	- add support for mainframe ccwgroup devices (QETH/HSI/CTC/LCS)

2004-05-13  Than Ngo  <than@redhat.com>

	* src/Makefile: add -fPIE

	* initscripts.spec, src/Makefile: enable PIE build of usernetctl

2004-05-07  Jeremy Katz  <katzj@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	* Fri May  7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
	- little lvm tweak (#121963)

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

	* ChangeLog, initscripts.spec: 7.52-1

	* src/ipcalc.c: ip addresses are ints, not longs (#122479)

	* ChangeLog, initscripts.spec: 7.51-1

	* src/initlog.c, src/minilogd.c, src/process.c, src/usernetctl.c:
	cleanup fd leaks, mem leaks, other bogosities (#119987, <linux_4ever@yahoo.com>)

	* rc.d/rc.sysinit, sysconfig/network-scripts/network-functions:
	handle multiple spaces correctly (#118583, <pallas@kadan.cz>)

	* sysconfig/network-scripts/ifup:
	support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)

2004-05-03  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	get rid of LVM error when no volumes are defined (#121197)

	* rc.d/rc.sysinit:
	fix selinux short-circuit test (#121143, <michal@harddata.com>)

	* rc.d/rc.sysinit:
	/dev/mapper/control is a special file, check it accordingly (#121963)

	* rc.d/rc.sysinit: fedora coloring

2004-05-03  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po: Arabeyes.org's Arabic translation

2004-05-02  Youcef Rabah Rahal <rahal@arabeyes.org>
 
	* po/ar.po: Arabeyesorg's Arabic translation of the past week

2004-04-25  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2004-04-21  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: remove ipv6 bogosity (#114128)

	* sysconfig/network-scripts/ifup-ctc, sysconfig/network-scripts/ifup-escon, sysconfig/network-scripts/ifup-iucv:
	modprobe.conf tweakage

2004-04-16  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.50-1

	* rc.d/rc.sysinit: lvm fixes (#120458, #119975)

2004-04-15  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2004-04-15  Owain Green <owaing@oceanfree.net>

	* po/cy.po: Updated new/fuzzy messages

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

	* sysconfig/network-scripts/ifdown-ipsec: fix it here too

	* sysconfig/network-scripts/ifup-ipsec:
	racoon's parser got fixed, oops.

	* sysconfig/network-scripts/ifdown-ipsec:
	get host/network set correctly

2004-04-13  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: Tamas Szanto

2004-04-09  Radoslaw Zawartko <radzaw@lnet.szn.pl>

	* po/pl.po: *** empty log message ***

2004-04-09  Andrew Martynov <andrewm@inventa.ru>

	* po/ru.po: Translations for FC2 done (no fuzzy messages).

	* po/ru.po: Translations for FC2 done.

2004-04-08  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Added missing translations.

2004-04-08  Tino Meinen <a.t.meinen@chello.nl>

	* po/nl.po: Updated Dutch translation

2004-04-08  Allan Sims <allsi@eau.ee>

	* po/et.po: Fixed fuzzies and some more

2004-04-08  James Hashida  <khashida@redhat.com>

	* po/ja.po: finished

2004-04-08  Yelitza Louze  <ylouze@redhat.com>

	* po/es.po: Updated spanish translation, not proofread yet

2004-04-08  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Small spelling error corrected

2004-04-07  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po: Update Czech translation

2004-04-07  James Hashida  <khashida@redhat.com>

	* po/ja.po: half done

2004-04-07  Bernd Groh  <bgroh@redhat.com>

	* po/de.po: translation done

2004-04-06  Tino Meinen <a.t.meinen@chello.nl>

	* po/nl.po: Updated Dutch translation

2004-04-06  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated translation

2004-04-05  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: pa.po translated 0504 amanlinux@netcape.net

2004-04-05  Alan Cox  <alan@redhat.com>

	* po/cy.po: Tidy fuzzies, still 76 strings for someone to fix

2004-04-05  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* Updated Ukrainian translation.

2004-04-05  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: updates
	initscripts/po/da.po

2004-04-04  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: updates
	initscripts/po/da.po redhat-config-kickstart/po/da.po
	redhat-config-proc/po/da.po
	redhat-config-securitylevel/po/da.po
	redhat-config-users/po/da.po system-logviewer/po/da.po
	system-switch-mail/po/da.po

2004-04-04  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: pa.po translated 0404 amanlinux@netcape.net

2004-04-03  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Modified a few strings after review

2004-04-02  Luis Mayoral <mayoral@linuxadicto.org>

	* po/es.po: Updated on Apr 2, 2004

2004-04-02  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Translated few more strings

2004-04-01  Valery Suhomlinov <goodguy@goodguy.spb.ru>

	* po/ru.po: *** empty log message ***

2004-04-01  Sarah Smith  <sarahs@redhat.com>

	* po/sq.po: initial po file

2004-04-01  Amanpreet Singh Alam  <amanlinux@netscape.net>

	* po/pa.po: pa.po translated 0104 amanlinux@netcape.net

2004-03-31  Rok Papez  <rok.papez@lugos.si>

	* po/sl.po: Translation finished

2004-03-31  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated translation

2004-03-30  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated translation

2004-03-28  Radoslaw Zawartko <radzaw@lnet.szn.pl>

	* po/pl.po: *** empty log message ***

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

	* Changelog, initscripts.spec: 7.49-1

	* rc.d/init.d/halt: use alsa for mixer saving

2004-03-26  Valery Suhomlinov <goodguy@goodguy.spb.ru>

	* po/ru.po: - Yum nightly updates and several options translated

2004-03-26  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: New version, added few strings more.

2004-03-25  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Update
	initscripts/po/da.po system-logviewer/po/da.po
	system-switch-mail/po/da.po

2004-03-24  Radoslaw Zawartko <radzaw@lnet.szn.pl>

	* po/pl.po: zmiana kodowania na utf8

2004-03-24  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po:
	fixed some fuzzies and translated some strings in initscripts nl.po

2004-03-24  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated

2004-03-24  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated

2004-03-23  Tadashi Jokagi <fedora@elf.no-ip.org>

	* po/ja.po: o translation updated.

2004-03-23  Marcel Telka <marcel@telka.sk>

	* po/sk.po: Updated Slovak translation.

2004-03-23  Lauri Nurmi <lanurmi@iki.fi>

	* po/fi.po: Updated Finnish translation.

2004-03-23  Gustavo Luiz Gomes dos Santos <gustavo.luiz@click21.com.br>

	* po/pt_BR.po: terminado, mas precisa de revisão

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

	* rc.d/init.d/halt: don't umount /proc (#118880)

2004-03-22  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2004-03-22  Tadashi Jokagi <fedora@elf.no-ip.org>

	* po/ja.po: o translation updated.

2004-03-22  Paolo Dona  <vik@3jv.com>

	* po/it.po: Fixed fuzzies
	Translated Untransalted strings

2004-03-22  Yelitza Louze  <ylouze@redhat.com>

	* po/es.po: Updated strings

2004-03-21  Radoslaw Zawartko <radzaw@lnet.szn.pl>

	* po/pl.po: *** empty log message ***

2004-03-21  Youcef Rabah Rahal <rahal@arabeyes.org>

	* po/ar.po:
	Committing Arabeyes.org's Arabic translation of the past week :-)

2004-03-21  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2004-03-21  Radoslaw Zawartko <radzaw@lnet.szn.pl>

	* po/pl.po: *** empty log message ***

2004-03-19  Andreas Mueller <andreas@andreas-mueller.com>

	* po/de.po: Updated translations, corrected most of fuzzy translations

2004-03-19  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2004-03-19  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2004-03-18  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2004-03-18  Olivier Bietzer <olivier.bietzer@free.fr>

	* po/fr.po: Traduction avec l'aide de Tristan Israel
	Relecture recommandée pour validation vocabulaire

2004-03-18  Tadashi Jokagi <fedora@elf.no-ip.org>

	* po/ja.po: o updated.

2004-03-18  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated translation

2004-03-18  Sarah Smith  <sarahs@redhat.com>

	* po/sv.po: merged with pot file

2004-03-17  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2004-03-17  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po: Update Czech translation

2004-03-17  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: Tamas Szanto

2004-03-17  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2004-03-17  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.48-1

	* rc.d/rc.sysinit:
	disable enforcing in emergency mode for now, relabel some commonly
	mislabeled files on boot

	* rc.d/rc.sysinit:
	remove checkselinux, that's not in the right place, and it's not
	useful ATM for general early-boot use

2004-03-17  Allan Sims <allsi@eau.ee>

	* po/et.po: Fixed fuzzies

2004-03-17  Dan Walsh  <dwalsh@redhat.com>

	* rc.d/rc.sysinit:
	add checkselinux script, to clean up stuff that might have happened because of boots with non SELinux kernels

2004-03-17  hutuworm  <hutuworm@hutuworm.org>

	* po/zh_CN.po: update by hutuworm @ 20040317

2004-03-17  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.47-1

	* po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/ms.po, po/nl.po, po/nn.po, po/no.po, po/pa.po, po/pl.po, po/pt.po, po/es.po, po/et.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/initscripts.pot, po/ar.po, po/bg.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po:
	update-po and refresh-po

	* po/xgettext_sh.py: catch more input strings (#106285, <mitr@volny.cz>)

	* prefdm: remove autologin stuff (not shipped anymore) (#108969)

	* rc.d/rc.sysinit:
	return to rhgb after ./unconfigured if it's running (#109807, <jkeating@j2solutions.net>)

	* setsysfont: handle iso15 (#110243)

	* rc.d/rc.sysinit: clean up samba (#113104)

	* sysconfig.txt, sysconfig/network-scripts/ifdown:
	document MACADDR. fix one of the bizarre interactions with HWADDR.
	note that you shouldn't try this at home. (#110427)

	* rc.d/rc.sysinit:
	ignore ncp/smb (since we ship mount.<those>) and cifs too (#111290)

	* rc.d/init.d/halt:
	fix umounting code (#113088, <giardina@airlab.elet.polimi.it>)

	* rc.d/rc.sysinit: handle nomodules for usb/firewire (#113278)

	* rc.d/init.d/netfs: handle CIFS (#115691)

	* sysconfig/network-scripts/network-functions:
	make sure hotplug doesn't get stuck unset (#116666, <aoliva@redhat.com>)

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

	* sysconfig/network-scripts/ifup-ipsec:
	allow for no AH SPI (#116922, <felipe_alfaro@linuxmail.org>)

	* rc.d/rc:
	check that rhgb is running before calling --quit (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)

	* sysconfig.txt: document ONPARENT (#118063)

	* rc.d/rc.sysinit: fsck the root filesystem from the initrd (#117575)

2004-03-15  Bahadir Yagan <bahadir.yagan@mentorsystem.com>

	* po/tr.po: Baþlýklarý düzenlendi.
	Son deðiþiklikler çevirildi.
	Çeviri kalite kontrolü yapýlmadý!

2004-03-11  Sarah Smith  <sarahs@redhat.com>

	* po/sv.po: merged with pot file

	* po/pa.po: initial po file

2004-03-10  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: updates
	initscripts/po/da.po redhat-config-nfs/po/da.po
	system-logviewer/po/da.po system-switch-mail/po/da.po

2004-03-10  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: Added a few more translations

2004-03-08  Federico Bernardi <fbernardi@bbros.it>

	* po/it.po: it.po

2004-03-05  Allan Sims <allsi@eau.ee>

	* po/et.po: Estonian

2004-03-04  Lauri Nurmi <lanurmi@iki.fi>

	* po/fi.po: Updated Finnish translation.

2004-03-04  Tadashi Jokagi <fedora@elf.no-ip.org>

	* po/ja.po:  translation updates.

2004-03-03  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2004-03-02  Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>

	* po/ms.po: Updates and major spelling correction

2004-03-02  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: clean up /tmp some more (#117117)

2004-02-28  Allan Sims <allsi@eau.ee>

	* po/et.po: Estonian

2004-02-26  Lauri Nurmi <lanurmi@iki.fi>

	* po/fi.po: Updated Finnish translation.

2004-02-26  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* po/uk.po: Update Ukrainian translation

2004-02-26  Volodymyr M. Lisivka <lvm@mystery.lviv.net>

	* po/uk.po: Warnign about "header fuzzy" fixed.

2004-02-25  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: First draft for ca.po

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

	* rc.d/rc.sysinit:
	make acpi module warnings go away (<wtogami@redhat.com>)

2004-02-24  Alan Cox  <alan@redhat.com>

	* po/cy.po: Welsh translation by Owain Green

2004-02-23  Tim Waugh <twaugh@redhat.com>

	* Makefile, initscripts.spec: Use ':' instead of '.' as separator
	for chown.

2004-02-01  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.46-1

	* rc.d/rc.sysinit: more cleanups

2004-01-31  Bahadir Yagan  <bahadir.yagan@mentorsystem.com>

	* po/tr.po: tamamlandý

2004-01-30  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.45-1

	* rc.d/rc.sysinit: duh

2004-01-29  Allan Sims  <allsi@eau.ee>

	* po/et.po: Estonian

2004-01-28  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: clear out environment (#113937, #111584)

2004-01-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.44-1

	* rc.d/rc.sysinit: /var/log/ksyms.0 is dead too

	* rc.d/rc.sysinit: libredhat-kernel is dead

	* rc.d/rc.sysinit: only run mkkerneldoth on < 2.6 kernels
	remove the system.map linking; it's silly

	* rc.d/rc.sysinit:
	remove boot-time depmod. All kernel module installs must run it on
	installation of modules now.

	* rc.d/rc.sysinit:
	mount sysfs. throw away error if it fails (2.4 kernels)

	* rc.d/init.d/halt: don't umount /sys

	* sysconfig/network-scripts/network-functions:
	handlie 2.6-style install lines correctly

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

	* rc.d/init.d/netfs, rc.d/rc.sysinit: fix mount invocation

	* rc.d/init.d/halt, rc.d/init.d/netfs, rc.d/rc.sysinit:
	NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)

2004-01-24  Marcel Telka <marcel@telka.sk>

	* po/sk.po: Started Slovak translations.

2004-01-17  R. Shashidhar  <rhariram@vsnl.net>

	* po/ta.po: newly translated files

2004-01-16  Dan Walsh  <dwalsh@redhat.com>

	* initscripts.spec: remove selinux code from service script

	* service: no longer need run_init

2004-01-16  Daniel Brooke Peig  <linux@brookepeig.com>

	* po/pt_BR.po: Translation revised

2004-01-13  Josep Puigdemont  <baldrick@terra.es>

	* po/ca.po: File created as it is being translated

2003-12-16  Francesco Valente  <fvalen@redhat.com>

	* po/it.po: Updated

2003-12-14  Robert Sedak  <roby@lokalizacija.linux.hr>

	* po/hr.po: *** empty log message ***

2003-12-11  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/network-functions:
	cleanup the test a little

	* sysconfig/network-scripts/network-functions: get rid of error message

2003-12-10  Denis Lackovic  <delacko@linux.hr>

	* po/hr.po: croatian translations update

2003-12-06  Jeremy Katz  <katzj@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: basic lvm2 support

2003-12-05  Yovko Lambrev  <yovko@yovko.net>

	* po/bg.po: Small fix

	* po/bg.po: Language team patch by Yanko Kaneti applied

2003-12-05  Bartosz Sapijaszko  <bartosz.sapijaszko@umwd.pl>

	* po/pl.po: *** empty log message ***

2003-12-04  Tamas Szanto  <tszanto@mol.hu>

	* po/hu.po: CVS_SILENT
	Tamas Szanto

2003-12-04  Yovko Lambrev  <yovko@yovko.net>

	* po/bg.po: Some minimal updates

2003-12-03  Yovko Lambrev  <yovko@yovko.net>

	* po/bg.po:
	Bulgarian translation of initscripts finished: 100% of lines ready  Dec 3, 2003

2003-12-03  Dan Walsh  <dwalsh@redhat.com>

	* service: remove HOME environment variable from SELINUX code

	* service: Add SELinux support

2003-12-03  Yovko Lambrev  <yovko@yovko.net>

	* po/bg.po:
	Bulgarian translation of initscripts: 75% of lines ready Dec 3, 2003

2003-12-02  Yovko Lambrev  <yovko@yovko.net>

	* po/bg.po:
	Bulgarian translation of initscripts: 50% of lines ready Dec 2, 2003

	* po/bg.po:
	Bulgarian translation of initscripts: first update Dec 2, 2003

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

	* initscripts.spec: bump rev for build

	* sysconfig/network-scripts/ifdown-ippp, sysconfig/network-scripts/ifup-ippp:
	fix ipv6 with ippp (#111215, <tomek@jot23.org>)

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

	* initscripts.spec: fix changelog

	* initscripts.spec: 7.42.1-1

	* rc.d/rc.sysinit: fix devpts mounting (#110209)

2003-11-13  Jatin Nansi  <jnansi@redhat.com>

	* po/hi.po: Commit by jnansi@redhat.com

2003-11-11  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* po/uk.po: Update Ukrainian translations.

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

	* rc.d/init.d/network: fix xDSL and other interfaces (#109601)

2003-11-09  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* po/uk.po: Update ukrainian translations.

2003-11-07  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup: get rid of error message

2003-11-07  Jatin Nansi  <jnansi@redhat.com>

	* po/hi.po: Commit by jnansi@redhat.com

2003-10-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.42-1

	* rc.d/rc.sysinit:
	use fgrep in places (<drepper@redhat.com>)

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	turn on details on failed services

2003-10-23  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

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

	* ChangeLog, initscripts.spec:
	7.41-1

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	switch on rhgb details for confirm mode. (#100894)
	catch a couple more failure cases in rc.sysinit for jumping out of rhgb.

	* rc.d/rc.sysinit:
	fix dvorak keymap (#106854)

2003-10-22  Than Ngo  <than@redhat.com>

	* initscripts.spec: bump version number

	* ChangeLog, ppp/ip-down, ppp/ip-up, sysconfig/network-scripts/ifup-ippp, sysconfig/network-scripts/ifup-ppp:
	add better fix to support nickname (#105785)

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

	* rc.d/rc:
	run rhgb-client at the end of a runlevel (#107725)

2003-10-22  Than Ngo  <than@redhat.com>

	* ChangeLog, initscripts.spec, ppp/ip-down, ppp/ip-up, sysconfig/network-scripts/ifup-ippp, sysconfig/network-scripts/ifup-ppp:
	add support nickname (#105785)

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

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	switch on rhgb details for confirm mode. (#100894)
	catch a couple more failure cases in rc.sysinit for jumping out of rhgb.

	* rc.d/rc.sysinit:
	fix dvorak keymap (#106854)

2003-10-22  Than Ngo	<than@redhat.com>

	* Changelog, initscripts.spec: 7.40-1
	* sysconfig/network-scripts/ifup-ippp, sysconfig/network-scripts/ifup-ppp, ppp/ip-down, ppp/ip-up:
	add better fix to support nickname (#105785)

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

	* rc.d/rc:
	run rhgb-client at the end of a runlevel (#107725)

2003-10-22  Than Ngo	<than@redhat.com>

	* Changelog, initscripts.spec: 7.39-1
	* sysconfig/network-scripts/ifup-ippp, sysconfig/network-scripts/ifup-ppp, ppp/ip-down, ppp/ip-up:
	add support nickname (#105785)
 
2003-10-17  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.38-1

2003-10-17  Jonathan Blandford  <jrb@redhat.com>

	* rc.d/rc.sysinit: turn on rhgb only if 'rhgb' is set in cmdline.

2003-10-10  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.37-1

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	bridging updates (#104421, <dwmw2@redhat.com>)

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

	* initscripts.spec: bump rev

	* rc.d/init.d/functions:
	export LANG, fixes rhgb in CJK

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

	* ChangeLog, initscripts.spec:
	7.36-1

	* rc.d/rc.sysinit:
	mount /dev/pts before starting rhgb

2003-10-07  Roman Maurer  <roman.maurer@amis.net>

	* po/sl.po: updated

2003-10-07  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update

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

	* ChangeLog, initscripts.spec:
	7.35-1

2003-09-28  Roman Maurer  <roman.maurer@amis.net>

	* po/sl.po: more translations

2003-09-28  Denis Lackovic  <delacko@linux.hr>

	* po/hr.po: minor translation fix

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

	* sysconfig/network-scripts/ifup-ipsec, sysconfig.txt:
	fix typo

2003-09-26  Denis Lackovic  <delacko@linux.hr>

	* po/hr.po: new translations update

2003-09-22  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	load acpi modules on startup

2003-09-21  Nguyen Thai Ngoc Duy  <pclouds@users.sourceforge.net>

	* po/vi.po: update vi.po

2003-09-17  Denis Lackovic  <delacko@linux.hr>

	* po/hr.po: fix

2003-09-16  Bill Nottingham  <notting@redhat.com>

	* src/consoletype.c, src/doexec.c, src/initlog.c, src/minilogd.c, src/netreport.c, src/ppp-watch.c, src/process.c, src/usernetctl.c, src/usleep.c:
	copyright cleanup

2003-09-16  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: updates

2003-09-15  Denis Lackovic  <delacko@linux.hr>

	* po/hr.po:
	initial croatian translation import

2003-09-15  Than Ngo	<than@redhat.com>

	* Changelog, initscripts.spec:
	7.34-1

	* rc.d/init.d/halt
	use upsdrvctl to start the shutdown process 

2003-09-15  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.33-1

	* src/ppp-watch.c, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp:
	ppp fixes (#104128, #97845, #85447)

2003-09-12  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown-ipsec, sysconfig/network-scripts/ifup-ipsec:
	for tunneling, add a route for the tunneled net through the other host

2003-09-11  Nalin Dahyabhai  <nalin@redhat.com>

	* sysconfig.txt:
	- add two of the options for /etc/init.d/saslauthd

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

	* sysconfig/network-scripts/ifdown-ipsec, sysconfig/network-scripts/ifup-ipsec:
	more ipsec fixes (#104227, <harald@redhat.com>)

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

	* initscripts.spec: 7.32-1

	* sysconfig/network-scripts/ifup-ipsec:
	ipsec fixes - detect automatic keying better, fix variable names for
	tunneling

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	always call 'ip link set *dev* ${DEVICE}', to avoid confusion with
	other ip parameters (#104187)

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

	* rc.d/rc.sysinit:
	the vio check in consoletype requires /proc, so we must mount
	/proc before sourcing /etc/init.d/functions (#103990)

	* initscripts.spec, src/genhostid.1, src/genhostid.c, src/Makefile:
	add uli's hostid setting program

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

	* ChangeLog, initscripts.spec:
	7.31-1

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	bridging support (<dwmw2@redhat.com>)

2003-09-07  Hasbullah Bin Pit  <sebol@ikhlas.com>

	* po/ms.po:
	Updated Malay translation for initscripts
	only 10 string left

2003-09-05  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: require ethtool

	* rc.d/init.d/network, sysconfig/network-scripts/ifup:
	fix bonding+dhcp (#91399); bring bonding device links up, then bring up slaves, then bring up bonding interface fully

	* rc.d/init.d/network:
	revert - bringing up bonding interfaces last doesn't work

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

	* sysconfig/network-scripts/ifup-ipsec:
	typo (#103781)

	* src/ppp-watch.c:
	match the man page (#97850)

	* sysconfig/network-scripts/ifup-aliases:
	unset ONPARENT after use (#101384)

	* rc.d/init.d/network:
	add bonding & xDSL to the list of devices brought up afterwards (#97030,#91399)
	and bring them down first (#103042)

	* rc.d/init.d/network:
	handle sorting > 10 network devices (#98209)

	* rc.d/rc.sysinit:
	remove superfluous variable (#83527)

	* rc.d/init.d/killall:
	check for a parameter (#84799)

	* src/ipcalc.c:
	fix some memory handling (#85478, <miked@ed.ac.uk>)

	* rc.d/init.d/network:
	fix error message on directories with spaces (#86066)

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

	* sysconfig/network-scripts/network-functions:
	disable hotplug when loading modules (#98611)

	* rc.d/init.d/halt, rc.d/init.d/killall:
	fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)

	* rc.d/init.d/halt:
	check for /proc/swaps before awking it (#99373, <daniel.blueman@gmx.net>)

	* rc.d/rc.sysinit:
	run rhgb after /usr is mounted (#100525, <nphilipp@redhat.com>)

	* rc.d/rc:
	remove /var/run/confirm when done with /etc/rc (#100898)

	* ipv6-6to4.howto, sysconfig/network-scripts/network-functions-ipv6, changes.ipv6:
	IPv6 updates (Pekka Savola, <pekkas@netcore.fi>)

2003-09-02  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po: all updated

2003-08-29  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2003-08-23  Pedro Morais <jncp@rnl.ist.utl.pt>

	* po/pt.po: New updates -- jncp

2003-08-22  Phil Knirsch  <pknirsch@redhat.com>

	* sysconfig/network-scripts/ifup-routes:
	- User lowercase for variable for oldstyle routes, too. ;-)

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

	* sysconfig.txt: document HWADDR

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

	* sysconfig/network-scripts/ifup:
	fix use of local

2003-08-20  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update

2003-08-20  Bernd Groh  <bgroh@redhat.com>

	* po/de.po: daily update

2003-08-20  Yelitza Louze  <ylouze@redhat.com>

	* po/es.po: Updated spanish translation

2003-08-20  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated translation

2003-08-18  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po: Update Czech translation

2003-08-18  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec:
	bump rev for new ipv6 fixes

2003-08-18  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated translation

2003-08-18  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: Software updates

2003-08-18  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	more IPv6 tweaks (<pekkas@netcore.fi>); sort | uniq -> sort -u

	* sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	more IPv6 tweaks (<pekkas@netcore.fi>)
	sort | uniq -> sort -u

2003-08-17  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2003-08-16  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po:
	fixes in nl.po for changes in CVS

2003-08-16  Christian Rose  <menthos@menthos.com>

	* po/sv.po: Updated Swedish translation.

2003-08-15  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.30-1

	* po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/ms.po, po/nl.po, po/nn.po, po/no.po, po/pl.po, po/ar.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po:
	update-po & refresh-po

	* changes.ipv6, sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	IPv6 updates & tweaks <pekkas@netcore.fi>

2003-08-08  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.29-1

	* setsysfont:
	don't echo to /dev/console (#102004)

	* src/mkkerneldoth: support kernel-hugemem

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	fix ethernet device renaming deadlock (yay recursion!) (#101566)

2003-08-05  Andreas Mueller <andreas@andreas-mueller.com>

	* po/de.po:
	some fixes to improve readability

2003-08-05  Bill Nottingham  <notting@redhat.com>

	* src/consoletype.c:
	don't return 'vt' on vioconsole (#90465)

2003-08-01  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	fix short-circuit (#101445)

2003-07-21  Nilgün Belma Bugüner  <nilgun@technologist.com>

	* po/tr.po: update

2003-07-19  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-routes:
	- ifup-routes: pass the interface name to handle_file() so that we don't try
	  to use the routes file's name as an interface name

2003-07-18  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: Software &nbsp removed

2003-07-17  Peter van Egdom <p.van.egdom@chello.nl>

	* po/nl.po:
	spelling-, translation- and typo-fixes in initscript nl.po

2003-07-13  Roman Maurer  <roman.maurer@amis.net>

	* po/sl.po: converted to UTF-8

2003-07-11  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec:
	don't require /etc/redhat-release. silly tree build processes.

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

	* ChangeLog, initscripts.spec:
	7.28-1

	* sysconfig/network-scripts/network-functions:
	keys-, not .keys

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

	* ChangeLog, initscripts.spec:
	7.27-1

	* lang.csh, lang.sh, setsysfont:
	check that we're the current foreground console before running
	unicode_start

	* src/consoletype.1, src/consoletype.c:
	add a test to consoletype to test that we're the current foreground
	console

2003-07-08  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po:
	updated the translation and header

2003-07-07  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2003-07-03  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.26-1
	
	* sysconfig/network-scripts/ifup-ipsec:
	- make setkey be quiet

	* sysconfig.txt:
	add quick description of bonding device config

	* sysconfig.txt:
	ipsec bits. sucked straight from ifup-ipsec

	* sysconfig/network-scripts/ifup-ipsec:
	mention that type is required

	* sysconfig/network-scripts/ifup-ipsec:
	- nuke RSA support, since we're not doing it right now
	- switch md5 -> sha1
	- clarify some docs

	* sysconfig/network-scripts/ifup-ipsec:
	fix quoting of peer certfile

	* sysconfig/network-scripts/ifdown-ipsec:
	set $KEYING
	do something with racoon on bringing the interface down

2003-07-02  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-ipsec:
	that ';' is important. damned if i know why, i think the parser is buggy.
	fix quoting of include files.

	* sysconfig/network-scripts/ifup-ipsec:
	first batch of automatic keying fixes. notably, I can't type.

	* sysconfig/network-scripts/ifdown-ipsec:
	add ifdown-ipsec

	* sysconfig/network-scripts/ifup-ipsec:
	some fixes. i love shell quoting

	* sysconfig/network-scripts/network-functions:
	map ipsec devices to ifup-ipsec

	* sysconfig/network-scripts/ifup-ipsec:
	name SPIs something other than 1234

	* sysconfig/network-scripts/ifup-ipsec:
	automatic keying support. not yet tested, either.

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

	* sysconfig/network-scripts/ifup-ipsec:
	allow different in/out encryption protocols, too

	* sysconfig/network-scripts/ifup-ipsec:
	allow using only AH or ESP, don't require both
	allow incoming/outgoing keys to be different

	* sysconfig/network-scripts/ifup-routes:
	handle new format in old file names

	* sysconfig/network-scripts/ifup-ipsec:
	well, fix parsing

	* sysconfig/network-scripts/ifup-ipsec:
	initial stuff. may not work. may not even parse.

2003-06-30  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/network-functions:
	read $CONFIG.keys too...  you can put non-world-readable keys here.

2003-06-27  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions, sysconfig.txt:
	allow default window size for routes to be set with WINDOW=... (#98112)

	* sysconfig/network-scripts/ifup, sysconfig.txt:
	support setting device options with ethtool opts

2003-06-26  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	checking HOSTTYPE works better if it's actually set somewhere (#98078)

	* sysconfig/network-scripts/network-functions:
	what's an escon?

2003-06-24  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: Updated

2003-06-24  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	more tweaks
	- encapsulate grabing the hw addr into its own function
	- normalize case of all hwaddrs
	- if we are passed a device with no config, see if there's a config
	  for that hwaddr

	* sysconfig/network-scripts/ifup:
	get rid of an extraneous error message

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/network-functions:
	support randomly named network devices, part 1
	- use nameif
	- determine device type from file first, and from device name as a
	  fallback
	- ditto for aliases

2003-06-23  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.25-1

	* rc.d/rc.local: revert

2003-06-19  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	fix DNS punching in the case of other rules for the DNS server (#97686, <martin@zepler.org>)

2003-06-19  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.25-1
	
	* rc.d/rc.local:
	revert rhgb hack

	* sysconfig/network-scripts/ifup-post:
	fix DNS punching in the case of other rules for the DNS server (#97686, <martin@zepler.org>)

2003-06-18  Nguyen Thai Ngoc Duy  <pclouds@users.sourceforge.net>

	* po/vi.po: add vi.po

2003-06-18  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: consistency fixes

2003-06-18  Bernd Groh  <bgroh@redhat.com>

	* po/de.po: software translation update

2003-06-16  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: fix bad syntax

2003-06-13  Bill Nottingham  <notting@redhat.com>

	* src/initlog.c, src/ppp-watch.c, src/process.c, src/usernetctl.c:
	fix leaked fd, potential usernetctl badness, and initlog/process bogons (<linux_4ever@yahoo.com>)

2003-06-11  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: fix grep (#97188)

2003-06-05  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	change order for .unconfigured (#92346, <pmatilai@welho.com>)

2003-06-02  Bill Nottingham  <notting@redhat.com>

	* ppp/ip-down.ipv6to4, ppp/ip-up.ipv6to4:
	beep? erhm, no. (#92019)

2003-05-28  Bill Nottingham  <notting@redhat.com>

	* Makefile, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/network-functions:
	- make usernetctl use the nickname instead of the device name
	- don't look in /etc/sysconfig/networking
	- fix calling of nameif before the device was loaded
	- clean up route handling
	(<harald@redhat.com>)

2003-05-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: make ksyms.* 0600

2003-05-23  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.24-1

	* rc.d/rc.local:
	hack so that rhgb exits in runlevel 3 too. we need to fix this properly.

2003-05-22  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.23-1

	* rc.d/rc.sysinit: add a 'nogui'

2003-05-21  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.22-1

	* rc.d/init.d/functions:
	GRAPHICAL=yes, not BOOTUP=graphical

	* rc.d/rc.sysinit: check for rhgb's existence before starting it

2003-05-20  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.21-1

	* rc.d/rc.sysinit, sysconfig/init:
	updated rhgb support (<jrb@redhat.com>)

2003-05-05  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.20-1

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

	* rc.d/rc.sysinit:
	change how options are passed (#88202)

	* rc.d/rc.sysinit:
	handle vmware locks (#89751, <nbock@buffalo.edu>)

	* sysconfig/network-scripts/ifup:
	some minor cleanups

	* sysconfig/network-scripts/ifup:
	kill one extraneous grep (#90001, <samuel@bcgreen.com>)

	* ChangeLog, initscripts.spec:
	7.19-1

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

	* ChangeLog, initscripts.spec: 7.19-1

2003-05-01  Bill Nottingham  <notting@redhat.com>

	* src/ipcalc.1: there is no ipcalc(3)

2003-05-01  Jonathan Blandford  <jrb@redhat.com>

	* rc.d/rc (previous): Use the function to call rhgb.

2003-04-30  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.18-1

	* lang.csh, rc.d/init.d/functions, rc.d/rc.sysinit:
	rhgb updates

2003-04-21  Florian La Roche  <laroche@redhat.com>

	* initscripts-s390.patch, initscripts.spec, rc.d/rc.sysinit:
	- further eliminate consoletype calls with CONSOLETYPE

	* initscripts-s390.patch, initscripts.spec, inittab.s390:
	- mainframe cleanup

2003-04-19  Florian La Roche  <laroche@redhat.com>

	* rc.d/rc.sysinit:
	- no need to delete /var/run/confirm, as it is already deleted right
	  above in the /var/run+/var/lock cleanup

2003-04-18  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec, rc.d/init.d/functions, rc.d/init.d/network, rc.d/rc, rc.d/rc.sysinit, sysconfig/init.s390:
	- new release

2003-04-16  Bill Nottingham  <notting@redhat.com>

	* setsysfont:
	hey, where's that brown paper bag (#88999)

2003-04-03  Bill Nottingham  <notting@redhat.com>

	* lang.csh, lang.sh, setsysfont:
	switch back

	* rc.d/rc.sysinit: um, no, that's correct

2003-04-03  Karsten Hopp  <karsten@redhat.com>

	* rc.d/rc.sysinit, ChangeLog, initscripts.spec, lang.csh, lang.sh, setsysfont:
	- sync with beehive package
	- prepare for rebuild in 3.0E:
	  Mainframe has no /dev/ttyX devices and no mingetty, don't
	  initialize them. This gave error messages during startup

2003-03-28  Bill Nottingham  <notting@redhat.com>

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

2003-03-26  Karsten Hopp  <karsten@redhat.com>

	* rc.d/rc.sysinit:
	There are no /dev/ttyX devices and no mingetty on mainframe.
	This code tried to create new files in /dev/ while / was mounted ro.

2003-03-26  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po:
	translated red hat into chinese term

2003-03-25  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: Checked

2003-03-17  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, rc.d/init.d/network:
	- init.d/network: don't advertise "probe: true" in the header if we don't
	  recognize "probe" as an argument

2003-03-17  Mohamed Eldesoky  <mohamed.eldesoky@linux-egypt.org>

	* po/ar.po:
	Arabic translation for initscripts.

2003-03-13  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	7.14-1

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	revert. chain name change was reverted.

2003-02-28  Bill Nottingham  <notting@redhat.com>

	* service: pass TERM to scripts too

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

	* ChangeLog, initscripts.spec:
	7.13-1

	* setsysfont:
	handle 7.x sysfontacm settings on the fly (#84183)

2003-02-26  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updatedheaderspt_BR2502

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

	* ChangeLog, initscripts.spec:
	7.12-1

	* rc.d/rc.sysinit:
	init vts even if consoletype isn't vt (serial console with vts active)

	* ChangeLog, initscripts.spec: 7.11-1

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	handle changed chain name

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

	* ChangeLog, initscripts.spec: 7.10-1

	* lang.csh, lang.sh:
	handle LANGUAGE specially for zh_CN.GB18030 & gdm (#84773)

2003-02-20  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.09-1

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-routes:
	redhat-config-network writes $NAME.route, not $DEVICE.route. Handle
	that. (#84193)

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

	* rc.d/rc.sysinit:
	initialize tty7 and 8 always. for GDM.

	* sysconfig/network-scripts/ifup:
	We were hardcoding zeroconf routes to eth0. OOOOPS.

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

	* ChangeLog, initscripts.spec: 7.08-1

	* rc.d/rc:
	run fewer scripts through action, causing less output to system logs
	(#49670, #75279, #81531). Not the best fix, but should shut most
	things up.

	* rc.d/rc.sysinit:
	just because hid may be static doesn't mean keybdev/mousedev are
	also, hid could have been hotplugged

2003-02-17  Tino Meinen <a.t.meinen@chello.nl>

	* po/nl.po: Updated Dutch translation

2003-02-14  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updated1402

2003-02-13  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: update

2003-02-12  Gregory Petit  <thunderbirds@pandora.be>

	* po/nl.po:
	Changed charset to UTF-8

	* po/nl.po:
	Version 1.38 of initscripts.pot translated, 21 sentences not translated.

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

	* ChangeLog, initscripts.spec: 7.07-1

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	fix nicknames with profiles (#82246)
	- source 'network' file in ifdown, so we get the current profile
	- change need_config to look in the various profile directories
	- pass device to usernetctl, as that's what's linked where usernetctl looks

2003-02-10  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updated1002

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

	* sysconfig/network-scripts/network-functions:
	fix check_device_down (#83780, <pzb@datastacks.com>)

2003-02-07  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po:
	Make Czech translation more consistent

2003-02-06  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: tweak conflict

2003-02-06  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

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

	* src/initlog.1:
	fix groff macros (#83531, <tsekine@sdri.co.jp>)

2003-02-04  Alexandr Kanevsky  <kad@blackcatlinux.com>

	* po/ru.po: updated translation

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

	* rc.d/init.d/functions:
	fix checkpid for multiple pids (#83401)

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	vlan fixes (<tis@foobar.fi>)

2003-02-03  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po: Update Czech translation

2003-02-03  Francesco Valente  <fvalen@redhat.com>

	* po/it.po: updated initscript

2003-02-03  Yelitza Louze  <ylouze@redhat.com>

	* po/es.po: Spanish translation

2003-02-03  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: updated translation

2003-02-03  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po:
	updated all string freeze changes

2003-02-02  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: 03/02 Updates

2003-02-02  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated translation.

2003-02-02  Bernd Groh  <bgroh@redhat.com>

	* po/de.po: rhpl/po/de.po updated

2003-02-02  Francesco Valente  <fvalen@redhat.com>

	* po/it.po: updated

2003-02-02  Pedro Morais <jncp@rnl.ist.utl.pt>

	* po/pt.po: ""

2003-02-02  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updated0302

2003-02-01  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Updates
	up2date/da.po anaconda/anaconda-po/da.po chkconfig/po/da.po
	firstboot/po/da.po initscripts/po/da.po kudzu/po/da.po
	redhat-config-packages/po/da.po

2003-02-01  James Hashida  <khashida@redhat.com>

	* po/ja.po: update

2003-02-01  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: update

2003-02-01  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

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

	* initscripts.spec, ChangeLog:
	7.06-1

	* po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/ms.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po:
	update-po

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig.txt:
	802.1Q VLAN support (<tis@foobar.fi>, #82593)

	* sysconfig/network-scripts/ifup-aliases, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/it.po, po/ja.po, po/ko.po, po/ms.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po:
	fix typo

	* rc.d/rc.sysinit: fix quota test (#83206)

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

	* po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/ms.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po:
	update-po

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig.txt:
	802.1Q VLAN support (<tis@foobar.fi>, #82593)

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

	* rc.d/rc.sysinit: fix quota test (#83206)

2003-01-30  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: clean out sudo stamps

	* rc.d/rc.sysinit: fix comment (#83144)

	* ChangeLog, initscripts.spec:
	7.05-1

2003-01-28  David Barzilay  <barzilay@redhat.com>

	* po/pt_BR.po: updated2801

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

	* rc.d/rc.sysinit: fix NFS root (#82685)

	* inittab:
	remove extraneous comment (#82656)

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

	* rc.d/init.d/functions:
	add zh_TW, match all variants of those locales

	* rc.d/init.d/functions: add zh_TW (#82235)

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

	* rc.d/rc.sysinit:
	oops, that's not very legal

2003-01-19  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Some updates
	comps-po/da.po rhn-applet/da.po up2date/da.po
	anaconda/anaconda-po/da.po anaconda-help/help/da.po
	firstboot/po/da.po initscripts/po/da.po
	redhat-config-kickstart/po/da.po
	redhat-config-network/po/da.po redhat-config-samba/po/da.po
	redhat-config-users/po/da.po redhat-config-xfree/po/da.po
	specspo/dist/da.po

2003-01-17  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po: Update Czech translation

2003-01-17  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2003-01-16  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2003-01-16  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.04-1

	* rc.d/rc.sysinit: fix some translations

2003-01-15  Nalin Dahyabhai <nalin@redhat.com>

	* rc.d/rc.sysinit:
	discard anything after the name of the tty when looking
	for mingetty invocations in /etc/inittab, avoids barfing
	on systems where 'mingetty /dev/ttyFOO --noclear' is in
	use (like mine)

2003-01-15  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update, check spelling

2003-01-15  Audrey Simons  <asimons@redhat.com>

	* po/fr.po: Updated latest changes

2003-01-15  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated.

2003-01-15  Olympia Ammendola

	* po/it.po: minor modifications

2003-01-15  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po: updated

2003-01-15  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	tweak wording

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

	* ChangeLog, initscripts.spec: 7.03-1

	* src/getkey.c, src/ipcalc.c:
	copyright tweakage

	* rc.d/rc.sysinit:
	don't load hid stuff if it's non-modular
	LC_ALL=C grep... go faster

	* po/xgettext_sh.py:
	fix it to accept foo=$"blah"

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	unmark some strings

	* src/ipcalc.c:
	fix calculation of /32 addresses (#76646)

	* sysconfig/network-scripts/ifup:
	clean up iptables module (#74518)

	* sysconfig/network-scripts/network-functions:
	check for device after loading module (#75506)

	* rc.d/rc:
	set to C locale, to avoid use of locale archives (#72043)

	* src/getkey.c, src/Makefile:
	getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)

	* rc.d/init.d/halt:
	rework halt script (#76831, <michal@harddata.com>)

	* rc.d/init.d/functions:
	support NICELEVEL in the environment (#77846)

	* sysconfig/network-scripts/ifup-aliases:
	recalculate BROADCAST if one wasn't specified (#78052)

	* sysconfig/network-scripts/ifup-aliases:
	if 'ONPARENT=no' set, don't automatically bring up interfaces when
	their parent interface is set up (#78992)

	* sysconfig/network-scripts/ifup-post:
	don't write multiple search lines (#79107, <redhat-com-box@dndtales.org>)

	* rc.d/rc.sysinit:
	fix raidtab parsing, don't worry about not-in-fstab RAID devices
	(#71087, #78467, <aja@mit.edu>)

	* service: initialize OPTIONS (#78236)

	* src/ppp-watch.8, sysconfig/network-scripts/ifup-ppp:
	fix ifup-ppp vs. ppp-watch at boot time (<goeran@uddeborg.pp.se>)

	* sysconfig/network-scripts/ifup-ppp:
	fix ifup-ppp for use with dial-on-demand (#54680)

	* rc.d/init.d/network: fix status (#81471)

	* sysconfig/network-scripts/ifup:
	add zeroconf route (#81738)

	* src/Makefile, initscripts.spec:
	use glib2 instead of glib (#78690, <kisch@mindless.com>)

	* rc.d/rc.sysinit:
	only do the second LVM check if we actually started RAID (#78483, <milan.kerslager@pslib.cz>)

2003-01-14  Milan Kerslager  <milan.kerslager@spsselib.hiedu.cz>

	* po/cs.po: Convertion to UTF-8

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

	* sysconfig/network-scripts/network-functions:
	fix link check. use both ethtool and mii-tool.

	* rc.d/init.d/functions, initscripts.spec, Makefile, po/Makefile:
	just use /usr/share/locale ; you need glibc locale stuff anyway...

	* rc.d/init.d/functions:
	fix CJK text on the console

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

	* rc.d/rc.sysinit:
	move system font setting sooner <milan.kerslager@spsselib.hiedu.cz>

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

	* ppp/ip-up.ipv6to4, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig.txt, changes.ipv6:
	IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>

	* rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/rawdevices:
	speedups (<drepper@redhat.com>)
	- use LC_ALL=C
	- don't use both grep&awk on the same file, just use awk

2003-01-03  Bill Nottingham  <notting@redhat.com>

	* po/zh_CN.po, po/zh_TW.po, po/it.po:
	fix translation

2002-12-30  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec: - make new release

	* ChangeLog, initscripts-s390.patch:
	- adjust mainframe patches

2002-12-30  Florian La Roche <Florian.LaRoche@redhat.de>

	* mainframe: drop changes to "/.unconfigured"

	* mainframe: drop ancient OCO support in startup script

2002-12-17  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 7.00-1

	* prefdm, sysconfig/network-scripts/network-functions, sysconfig.txt:
	more rhgb tweaks
	have a loop for checking link state instead of a static 'sleep 5'

	* rc.d/init.d/functions, rc.d/rc.sysinit:
	graphical boot changes

2002-12-13  Karsten Hopp  <karsten@redhat.com>

	* ChangeLog, initscripts.spec:
	6.99-1
	
	* initscripts.spec, inittab.s390:
	fix /sbin/update on S/390 as well

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

	* initscripts.spec: require the dev package

2002-12-09  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.98-1

	* rc.d/rc.sysinit: fix netprofile (#72903)

	* inittab: remove call to bdflush stuff

2002-12-02  Bill Nottingham  <notting@redhat.com>

	* ppp/ip-up.ipv6to4, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/network-functions-ipv6, sysconfig.txt:
	IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)

	* rc.d/rc.sysinit: add devlabel support

	* initscripts.spec, rc.d/init.d/netfs:
	use lazy umount, tweak requires as needed

2002-11-25  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: learn how to spell

2002-11-19  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec: - mainframe adjustments

2002-11-12  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.96-1

	* sysconfig/network-scripts/ifup-aliases:
	just use ifup-routes for aliases

	* sysconfig/network-scripts/ifup-routes, sysconfig.txt:
	fix static route brokenness (#74317, #74320, #76619, #75604)

	* sysconfig.txt:
	clean up clock text (#75069)

	* lang.sh: unset langfile (#75662)

	* setsysfont:
	fix SYSFONTACM handling (#76472)

	* lang.csh:
	fix lang.csh for CJK (#76908, <ynakai@redhat.com>)

	* sysconfig/network-scripts/ifup:
	allow setting of scope (#77082)

	* initscripts.spec:
	buildprereq gettext (#77518)

	* initscripts.spec:
	fix unpackaged files (#77519)

	* ppp/ip-down.ipv6to4, ppp/ip-up.ipv6to4, ppp/ipv6-down, ppp/ipv6-up, sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	IPv6 update <pekkas@netcore.fi>, <pb@bieringer.de>

2002-10-27  Hasbullah Bin Pit  <sebol@ikhlas.com>

	* po/ms.po: fix small error

2002-10-16  Hasbullah Bin Pit  <sebol@ikhlas.com>

	* po/ms.po: s/Memerika/Memeriksa

2002-10-12  Bill Nottingham  <notting@redhat.com>

	* sysconfig.txt, sysconfig/network-scripts/ifup:
	nuke allmulti/promisc setting at alexey's request

2002-09-19  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: spellchecking
	apacheconf/da.po authconfig/da.po bindconf/da.po
	chkconfig/da.po comps-po/da.po firstboot/da.po hwbrowser/da.po
	initscripts/da.po kbdconfig/da.po kudzu/da.po libuser/da.po
	locale_config/da.po mouseconfig/da.po printconf/da.po
	redhat-config-network/da.po redhat-config-squid/da.po
	redhat-config-users/da.po redhat-switch-printer/da.po
	rhn-applet/da.po rhn_register/da.po serviceconf/da.po
	sndconfig/da.po switchdesk/da.po timeconfig/da.po
	up2date/da.po usermode/da.po Xconfigurator/da.po
	anaconda/anaconda-po/da.po autorun/po/da.po
	gnome/bug-buddy/da.po gnome/control-center/da.po
	gnome/eel/da.po gnome/GConf/da.po gnome/gdm/da.po
	gnome/gedit/da.po gnome/gnome-applets/da.po
	gnome/gnome-core/da.po gnome/gnome-libs/da.po
	gnome/gnome-utils/da.po gnome/gnome-vfs/da.po gnome/gtk+/da.po
	gnome/magicdev/da.po gnome/nautilus/da.po gnome/oaf/da.po
	gnome/sawfish/da.po redhat-config-date/po/da.po
	redhat-config-keyboard/po/da.po
	redhat-config-kickstart/po/da.po
	redhat-config-language/po/da.po redhat-config-mouse/po/da.po
	redhat-config-nfs/po/da.po redhat-config-packages/po/da.po
	redhat-config-proc/po/da.po
	redhat-config-rootpassword/po/da.po
	redhat-config-samba/po/da.po
	redhat-config-securitylevel/po/da.po
	redhat-config-services/po/da.po
	redhat-config-soundcard/po/da.po redhat-config-xfree/po/da.po
	redhat-logviewer/po/da.po redhat-menus/po/da.po
	redhat-switchmail/po/da.po setuptool/po/da.po
	specspo/dist/da.po specspo/powertools/da.po

2002-09-16  Than Ngo  <than@redhat.com>

	* Makefile, initscripts.spec:
	- owns directory /etc/ppp/peers (bug #74037)

2002-09-09  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update

2002-09-07  Christian Rose  <menthos@menthos.com>

	* sv.po: Fixed Swedish translation.

2002-09-05  Miloslav Trmac <mitr@volny.cz>

	* po/cs.po: Update Czech translation, fix typos

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

	* ChangeLog, initscripts.spec: 6.95-1

	* sysconfig/network-scripts/ifup: fix syntax error

2002-09-04  Nalin Dahyabhai  <nalin@redhat.com>

	* ChangeLog: - whoops, forgot to update the changelog

	* initscripts.spec: - bump version

	* lang.csh:
	- don't pass $SYSFONTACM to unicode_start if it has no value

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

	* ChangeLog, initscripts.spec:
	6.95-1

	* sysconfig/network-scripts/ifup:
	fix syntax error

2002-09-04  Nalin Dahyabhai  <nalin@redhat.com>

	* ChangeLog, initscripts.spec: 6.94-1

	* lang.csh: fix syntax error in calling unicode_start when SYSFONTACM
	is not defined

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

	* ChangeLog, initscripts.spec: 6.93-1

	* sysconfig/network-scripts/network-functions-ipv6:
	mtu tweak (<pekkas@netcore.fi>)

	* lang.csh, lang.sh:
	fix calling of unicode_start (#73158)

2002-09-01  Pedro Morais <jncp@rnl.ist.utl.pt>

	* po/pt.po: ""

2002-08-29  Federico Musto  <federico@redhat.com>

	* po/it.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-08-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.92-1

	* sysconfig.txt:
	fix docs on displaymanager/desktop

2002-08-27  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown:
	don't loop on ifdown

2002-08-27  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-08-26  Hasbullah Bin Pit  <sebol@ikhlas.com>

	* po/ms.po: s/pelekapan/lekapan

2002-08-26  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-08-25  Hasbullah Bin Pit  <sebol@ikhlas.com>

	* po/ms.po:
	Added Malay Translation for initscripts

2002-08-24  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update and convert to UTF8

2002-08-24  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: pto

2002-08-22  James Hashida  <khashida@redhat.com>

	* po/ja.po: update

2002-08-22  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	remove disabling of DMA; it can cause problems

2002-08-22  Leon Ho  <llch@redhat.com>

	* po/zh.po: no longer used

2002-08-22  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po: changed all ...... to ...

2002-08-21  James Hashida  <khashida@redhat.com>

	* po/ja.po: update

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

	* sysconfig/network-scripts/ifup-routes:
	use the other file redhat-config-network writes by default; leave
	route-<foo> for user customization (<pbrown@redhat.com>, others)

	* rc.d/rc.sysinit:
	move swap startup to after LVM (#66588)

2002-08-21  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2002-08-21  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2002-08-21  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: Updated translation.

2002-08-21  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated translation.

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

	* ChangeLog, initscripts.spec: 6.91-1

	* po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.po, po/zh.po, po/zh_TW.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po:
	update from current tree. should do this more often, actually.

	* rc.d/rc.sysinit:
	activate profile if passed via netprofile= on the kernel command line

	* src/ppp-watch.c:
	don't retry indefinitely (<pbrown@redhat.com>)

	* sysconfig/network-scripts/network-functions:
	actually pass the device name to the first mii-tool call (#72016,#68127)

	* service: remove extraneous /

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

	* lang.csh, lang.sh:
	add iso8859-5 support (#71754)

2002-08-15  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	switch to -I (#71201)

2002-08-14  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.90-1

	* sysconfig/network-scripts/network-functions:
	sleep 5 seconds, not 2

	* rc.d/rc.sysinit: DUH

2002-08-14  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.89-1

	* rc.d/init.d/halt:
	fix tmpfs umounts (#68178, <tjko@iki.fi>)

	* sysconfig/network-scripts/ifdown:
	remove extraneous call (#68706)

	* initscripts.spec:
	require /etc/redhat-release (#68903)

	* service: fix status-all (#71375)

	* rc.d/rc.sysinit:
	work around VT2-VT6 bug for now

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

	* sysconfig/network-scripts/ifup-post:
	look at the right file (#68368)

	* prefdm:
	use GDM by default unless specified by DISPLAYMANAGER

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

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	fix iptables invocation (#71201)

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	use -n with iptables -L (#70807)

2002-08-12  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update, convert to utf-8

2002-08-08  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: spell UTF-8 in uppercase

2002-08-07  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: Encodning converted to UTF-8.

2002-08-06  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: comments from kenneth
	da.po

2002-08-02  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: convert to utf-8

2002-08-01  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Updates
	firstboot/da.po initscripts/da.po locale_config/da.po
	redhat-config-network/da.po serviceconf/da.po usermode/da.po
	anaconda/anaconda-po/da.po redhat-config-keyboard/po/da.po
	redhat-config-rootpassword/po/da.po
	redhat-config-xfree/po/da.po redhat-logviewer/po/da.po
	setuptool/po/da.po

2002-07-29  Federico Musto  <federico@redhat.com>

	* po/fr.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-07-25  Than Ngo  <than@redhat.com>

	* sysconfig/network-scripts/ifup-ippp:
	* pass netmask option top ipppd (bug #69355)

2002-07-25  Nilgün Belma Bugüner  <nilgun@technologist.com>

	* po/tr.po: update

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

	* rc.d/rc.sysinit: fix typo

	* ChangeLog, initscripts.spec:
	6.88-1

	* lang.sh, rc.d/rc.sysinit, lang.csh:
	oops, UTF-8 can have @euro

2002-07-23  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update and convert to UTF-8

2002-07-23  Federico Musto  <federico@redhat.com>

	* po/es.po, po/fr.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-07-22  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	load firewire if needed/configured (#67203)

2002-07-19  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-07-19  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: updates

2002-07-18  Richard Allen  <ra@hp.is>

	* po/is.po: *** empty log message ***

2002-07-17  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.87-1

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	use iptables & our lokkit chain

2002-07-17  James Hashida  <khashida@redhat.com>

	* po/ja.po: update

2002-07-16  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec, service:
	* Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.com>
	- /sbin/service: set PATH before calling startup scripts
	  HOME and TERM are also set during bootup, but they should not make
	  a difference for well-written daemons.

2002-07-15  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Updated translation.

2002-07-15  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: Updated translation.

2002-07-15  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po: fixed.

2002-07-16  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

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

	* initscripts.spec, ChangeLog: 6.86-1

	* po/zh_CN.po, po/zh_TW.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po:
	update-po

	* rc.d/rc.sysinit:
	fix boottime cleanup, add cleanup of ICE files

2002-07-14  Florian La Roche  <laroche@redhat.com>

	* rc.d/init.d/functions:
	- only coding style changes

	* rc.d/rc: - coding changes only

2002-07-12  Florian La Roche  <laroche@redhat.com>

	* rc.d/init.d/functions:
	- exclude zh_CN.GB18030 for setting LANG

2002-07-11  Alexandr Kanevsky  <kad@blackcatlinux.com>

	* po/ru.po: loopback fix, mistype fix

2002-07-11  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec: - release 6.85

	* initscripts.spec, rc.d/init.d/functions, rc.d/rc.sysinit:
	- /etc/init.d/functions:
	       daemon(): avoid starting another bash
	       killproc(): avoid starting another bash for the default case
	- do not call "insmod -p" before loading the "st" module

2002-07-10  Florian La Roche  <laroche@redhat.com>

	* rc.d/rc.sysinit:
	- cleanup, no real changes

	* rc.d/rc.sysinit, initscripts.spec:
	- code cleanups in rc.sysinit

	* initscripts.spec, sysconfig/network-scripts/network-functions:
	- do not export GATEWAY in network-functions
	- code cleanups

	* initscripts.spec: - send to beehive

	* initscripts.spec, rc.d/init.d/functions:
	- drastically reduce the number of consoletype invocations

	* initscripts.spec, rc.d/init.d/single, rc.d/rc, rc.d/rc.sysinit:
	- better checks for backup files

	* initscripts.spec, rc.d/init.d/halt, rc.d/init.d/network, src/Makefile, sysconfig/network-scripts/network-functions:
	* Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.com>
	- allow an option for ups poweroff  #68123
	- change grep for ONBOOT=  #63903
	- allow building with a cross-compiler  #64362,#64255
	- faster check in network-functions:check_default_route()

2002-07-09  Florian La Roche  <laroche@redhat.com>

	* rc.d/init.d/halt: - fix #68123

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

	* rc.d/rc.sysinit: clarify comment (#68309)

2002-07-09  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec: - make new release

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

	* initscripts.spec: add kbd conflict

2002-07-06  Florian La Roche  <laroche@redhat.com>

	* rc.d/rc.sysinit: - cleanup

	* rc.d/rc.sysinit: - first small cleanups

2002-07-05  Florian La Roche  <laroche@redhat.com>

	* rc.d/init.d/killall: - only coding style

	* rc.d/init.d/single:
	- just coding style, no real changes

	* initscripts.spec:
	- docu some more work in changelog entry

	* rc.d/rc: - check in new version

	* rc.d/rc:
	- change coding style, should have no! functional changes in it

	* rc.d/init.d/single:
	- only cosmetic changes

	* sysconfig/network-scripts/ifup-ippp:
	- change to /etc/init.d

	* initscripts.spec: - add changelog entry

	* rc.d/rc.sysinit:
	- rc.sysinit: do not load raid modules unless /etc/raidtab exists

	* rc.d/init.d/functions:
	- this should only be sourced in

	* sysconfig/network-scripts/ifup-routes:
	- no need to source the file /etc/init.d/functions
	- cleanups

	* sysconfig/network-scripts/ifup-post:
	- speed up FIREWALL_MODS=no case

	* sysconfig/network-scripts/ifup:
	- no need to export FWACTIVE

	* sysconfig/network-scripts/network-functions:
	- consistent shell programming
	- small speed improvements, e.g. need_hostname()

2002-07-04  Phil Knirsch  <pknirsch@redhat.com>

	* sysconfig/network-scripts/ifup-routes:
	- Bzzz. Fixed the debug output to do the real thing instead. :-)

	* sysconfig/network-scripts/ifup-routes:
	- Fixed ifup-route to use new /etc/sysconfig/network-scripts/route-DEV files.

2002-07-01  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: Change charset to UTF-8

2002-06-28  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.po:
	changed encode from GBK/GB18030 to UTF-8

2002-06-28  Bill Nottingham <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.82-1

	* rc.d/rc.sysinit:
	use unicode_start

2002-06-28  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.GB2312.po:
	changed to zh_CN locale

2002-06-28  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	deal only with current paths; also, look for psfu files
	
	* rc.d/rc.sysinit: no bold

2002-06-28  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.Big5.po: Remove zh_TW.Big5.po

2002-06-27  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	6.81-1

	* rc.d/rc.sysinit:
	move /proc/bus/usb mount elsewhere, in case USB is in the initrd

	* sysconfig/network-scripts/network-functions:
	switch this back; we don't want to report non-existent aliases as up

2002-06-27  Preston Brown  <pbrown@redhat.com>

	* sysconfig/network-scripts/ifup:
	make sure we don't match default as anything but a route (instead of, say, someone's device name

2002-06-27  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown:
	switch back; we still want to run ifdown-ppp, etc.

2002-06-27  Preston Brown  <pbrown@redhat.com>

	* ChangeLog: update changelog.

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	handle duplicate default routes better.

	* sysconfig/network-scripts/ifdown:
	move device down checking higher up, and clarify.

	* sysconfig/network-scripts/ifup-wireless:
	essid setup fix

	* initscripts.spec: bump ver.

	* sysconfig/network-scripts/network-functions:
	fix check_device_down logic

	* sysconfig/network-scripts/ifup:
	avoid ifconfig/route, try to avoid duplicate default routes

2002-06-27  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.81-1

	* rc.d/rc.sysinit:
	move /proc/bus/usb mount elsewhere, in case USB is in the initrd

2002-06-27  Preston Brown  <pbrown@redhat.com>

	* sysconfig/network-scripts/ifup:
	make sure we don't match default as anything but a route (instead of, say, someone's device name

2002-06-27  Preston Brown  <pbrown@redhat.com>

	* ChangeLog: update changelog.

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	handle duplicate default routes better.

	* sysconfig/network-scripts/ifup-wireless:
	essid setup fix

	* initscripts.spec: bump ver.

	* sysconfig/network-scripts/ifup:
	avoid ifconfig/route, try to avoid duplicate default routes

2002-06-26  Preston Brown  <pbrown@redhat.com>

	* initscripts.spec: bump version

	* sysconfig/network-scripts/ifup-wireless:
	escape quotes for NICKNAME and ESSID.  Only try to set channel/freq when in Ad-Hoc mode.

2002-06-26  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	fix dhcpcd invocation (#67517)

2002-06-26  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec:
	- commit to make a new release

	* sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6:
	- change some negation usage

	* ppp/ip-down, ppp/ip-up, rc.d/init.d/functions, sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup-ctc, sysconfig/network-scripts/ifup-escon, sysconfig/network-scripts/ifup-iucv, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-plusb, sysconfig/network-scripts/network-functions:
	- set PATH also in /etc/sysconfig/network-scripts/network-functions

	* ppp/ip-down, ppp/ip-up, ppp/ipv6-down, ppp/ipv6-up, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup-ctc, sysconfig/network-scripts/ifup-escon, sysconfig/network-scripts/ifup-iucv, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-plusb:
	- useless space changes

	* rc.d/rc, sysconfig/network-scripts/ifup-aliases:
	- further smaller cleanups, TEXTDOMAIN* is never exported

	* initscripts.spec: - add changelog

	* rc.d/init.d/single, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ippp, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl, sysvinitfiles:
	- change to /etc/init.d/functions
	- eliminate some un-necessary PATH settings
	- eliminate some TEXTDOMAIN settings

	* rc.d/init.d/rawdevices, rc.d/rc.sysinit:
	- further eliminate PATH settings

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/single:
	- PATH is set in init.d/functions, no need to set it separately

	* rc.d/init.d/functions, rc.d/init.d/netfs, rc.d/init.d/random, rc.d/init.d/rawdevices, rc.d/init.d/single:
	- further cleanups

	* rc.d/init.d/halt:
	- move HALTARGS down some more

	* initscripts.spec, Makefile, prefdm, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/rc.sysinit, service, setsysfont, static-routes-ipv6, sysctl.conf, sysctl.conf.s390, sysctl.conf.sparc, sys-unconfig.8:
	- start cleaning up some sh coding things

2002-06-26  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	don't add network routes when netmask is 255.255.255.255

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	dhclient support <dsainty@redhat.com>

2002-06-19  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	always initialize USB keyboard/mouse

	* rc.d/rc.sysinit: remove sleep statement

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

	* sysconfig/init: no more bold

2002-06-12  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, ChangeLog:
        6.78-1

	* lang.csh, lang.sh, setsysfont:
	fix UTF-8 checks

2002-06-05  Than Ngo  <than@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup-ippp:
	* fixed a bug in setting defaultgateway

2002-05-31  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	6.76-1

	* lang.csh, lang.sh, setsysfont:
	unicode fixes; call unicode_start when necessary

2002-05-30  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.GB2312.po, po/zh_CN.po:
	fixed a few translation errors.

2002-05-29  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.75-1

	* sysconfig/network-scripts/ifup:
	start checking for link again

2002-05-13  Bill Nottingham  <notting@redhat.com>

	* service: cd / , not cd /etc/init.d

2002-05-13  Christian Rose  <menthos@menthos.com>

	* sv.po: Fixed Swedish translation.

2002-05-08  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	actually test that hdparm is there before trying to call it

2002-05-06  Florian La Roche  <laroche@redhat.com>

	* initscripts-s390.patch:
	- fix the s390 patch

2002-05-05  Christian Rose  <menthos@menthos.com>

	* sv.po: Fixed Swedish translation.

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

	* ChangeLog, initscripts.spec: 6.67-1

	* rc.d/rc.sysinit:
	fix stupid cut&paste error
	
	* sysconfig/network-scripts/ifdown, initscripts.spec:
	fix path to dhcpcd config file, conflict with older dhcpcd versions

2002-04-15  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec: Bump

	* po/no.po: Fully translate

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

	* ChangeLog, initscripts.spec:
	6.64-1

2002-04-15  Federico Musto  <federico@redhat.com>

	* po/de.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

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

	* rc.d/rc.sysinit:
	it makes very little sense to allow enabling of DMA on CD-ROMS if we're going to globally disable it later in the script

	* sysconfig/network-scripts/ifup-ppp:
	make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)

	* rc.d/rc.sysinit:
	allow tweaking of more devices (#53511)
	tweak non-disk devices iff they explicitly have a config file for that device (#56575, #63415)

2002-04-14  Pedro Morais <jncp@rnl.ist.utl.pt>

	* po/pt.po: ""

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

	* ChangeLog, initscripts.spec:
	6.63.1-1

	* rc.d/init.d/network: shut up sysctl

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

	* ChangeLog, initscripts.spec:
	6.63-1

	* sysconfig/network-scripts/ifdown-ipv6:
	fix always trying to shut down 6to4 (#63352, <pekkas@netcore.fi>)

	* rc.d/rc.sysinit:
	minor tweaks to libredhat-kernel.so handling

	* src/ipcalc.c:
	some minor ipcalc cleanups (#58410)

	* src/ipcalc.c, src/Makefile:
	quit stripping binaries

	* rc.d/rc.sysinit:
	do LVM initialization twice (#63238)

	* rc.d/rc.sysinit:
	deal with devfs on initrd (#59562)

	* sysconfig/network-scripts/network-functions-ipv6:
	use -e argument to sysctl

	* rc.d/init.d/network:
	run sysctl again at the end of network (for interface-specific parameters)

	* sysconfig/network-scripts/ifup-aliases:
	don't process backup files (#60248, <dharris@drh.net>, <agrino@porsiempre.cl>)

	* lang.sh:
	export the entire gamut of locale variables (#56142)

2002-04-10  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update

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

	* service: oops, broke translations

	* ChangeLog, initscripts.spec:
	6.62-1

	* sysconfig/network-scripts/ifup-aliases:
	use full path to /sbin/ifconfig (#59457)

	* service:
	change to root directory before staring/stopping; also sanitize environment (#53304, #61371)

	* rc.d/rc.sysinit:
	move DMA hammer-of-doom to after loading of ide-scsi

	* rc.d/rc.sysinit:
	delete X/VNC locks on startup (#63035)

	* rc.d/rc.sysinit:
	shut up DMA disabling (#62873, #62956)

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

	* ChangeLog, initscripts.spec: 6.62-1

	* sysconfig/network-scripts/ifup-aliases:
	use full path to /sbin/ifconfig (#59457)

	* service:
	change to root directory before staring/stopping; also sanitize environment (#53304, #61371)

	* rc.d/rc.sysinit:
	move DMA hammer-of-doom to after loading of ide-scsi

	* rc.d/rc.sysinit:
	delete X/VNC locks on startup (#63035)

	* rc.d/rc.sysinit:
	shut up DMA disabling (#62873, #62956)

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

	* initscripts.spec:
	add update requirement (#62875)

2002-04-06  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update

2002-04-06  Richard Allen  <ra@hp.is>

	* po/is.po: Fixes

	* po/is.po: More 2 come

2002-04-04  Nilgün Belma Bugüner  <nilgun@technologist.com>

	* po/tr.po: update

2002-04-04  Hung-Pin Wu  <hpwu@redhat.com>

	* po/zh_TW.po: New added translation.

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

	* ChangeLog, initscripts.spec: 6.61-1

	* rc.d/rc.sysinit:
	don't use stuff in /usr in the ide-dma check

2002-04-02  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: update
	translate/initscripts/da.po

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

	* po/ru.po: fix typo (#62189)

	* Makefile: tweek

2002-03-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.60-1

	* rc.d/rc.sysinit:
	turrn off DMA on all CDs at boot <mingo@redhat.com>

2002-03-27  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.GB2312.po:
	modified headers and added more translation.

2002-03-27  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.59-1

	* rc.d/init.d/halt: add halt hook

	* src/mkkerneldoth: handle bigmem too

2002-03-27  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-03-27  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.GB2312.po:
	modified headers and added more translation.

2002-03-27  James Hashida  <khashida@redhat.com>

	* po/ja.po: updated ja.po translations

2002-03-25  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig.txt:
	SRCADDR stuff returns

2002-03-25  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.GB2312.po:
	updated against the lastest master copies

2002-03-24  James Hashida  <khashida@redhat.com>

	* po/ja.po: rest of translation

2002-03-23  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2002-03-22  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	"/mnt/traduzioni/RH8.0/translate/initscripts"

2002-03-22  James Hashida  <khashida@redhat.com>

	* po/ja.po: translation half done

2002-03-22  hpwu  <hpwu@redhat.com>

	* po/zh_TW.Big5.po: updated translation

2002-03-21  Bill Nottingham  <notting@redhat.com>

	* ppp/ip-down.ipv6to4, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/network-functions-ipv6, sysconfig.txt:
	IPv6 updates. <pekkas@netcore.fi>

2002-03-21  Michelle Kim  <mkim@redhat.com>

	* po/ko.po: More translation added.

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

	* initscripts.spec: add URL

2002-03-19  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: pt update

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

	* sysconfig/network-scripts/ifup, sysconfig.txt:
	SRCADDR returns

2002-03-15  Than Ngo  <than@redhat.com>

	* src/usernetctl.c, initscripts.spec:
	fix usernetctl for working with neat

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

	* initscripts.spec, ChangeLog:
	6.57-1

	* po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/ro.po, po/ru.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/da.po, po/de.po, po/es.po, po/cs.po, po/initscripts.pot, po/xgettext_sh.py:
	update translations

2002-03-15  Sarah Smith  <sarahs@redhat.com>

	* po/zh_CN.GB2312.po: first modification

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

	* sysconfig/network-scripts/ifdown:
	don't look in profiles; there should be links

2002-03-13  Bill Nottingham  <notting@redhat.com>

	* Makefile: make stuff in /etc/ppp executable

	* ChangeLog, initscripts.spec: 6.56-1

	* rc.d/init.d/functions: be quiet if $LSB is set

	* rc.d/init.d/functions:
	add --force to daemon() (needed for LSB)

	* rc.d/init.d/netfs, rc.d/init.d/network:
	provide various LSB init facilities

	* rc.d/init.d/functions:
	add warning message target. For LSB stuff

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

	* sysconfig/network-scripts/ifup, sysconfig.txt:
	revert LVS-related changes

	* rc.d/init.d/network: - fix cipe check
	- load modules to preserve ordering

	* sysconfig/network-scripts/ifup:
	just use nameif instead of mucking with the other config files (<harald@redhat.com>)

2002-03-12  Mike A. Harris  <mharris@redhat.com>

	* rc.sysinit, /etc/rc.d/init.d/halt: 6.55-1
	Removed process accounting enable/disable, as it is now handled
	in the psacct package by a standalone initscript
    
2002-03-01  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.54-1

	* initscripts.spec: add conflict for old psacct

2002-02-27  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: banner tweaks

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

	* lang.sh: unset sourced (#59616)

	* lang.csh: fix setenv invocation (#59946)

2002-02-25  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: add credit messages

2002-02-24  Christian Rose  <menthos@menthos.com>

	* sv.po: Translation bug fixes.

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

	* rc.d/init.d/halt:
	fix bug introduced by fix for #53580 (#60252)

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

	* ChangeLog, initscripts.spec: 6.53-1

2002-02-14  Pedro Morais  <pmmm@rnl.ist.utl.pt>

	* po/pt.po: updates

2002-02-13  Mike A. Harris  <mharris@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit, ChangeLog:
	Changed rc.sysinit to use /var/account/pacct for FHS 2.2 compliance

2002-02-07  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	fix typo (#58954, <rm0@gmx.net>)

	* sysconfig/network-scripts/ifup-post:
	fix invocation of need_hostname (#58946)

	* rc.d/rc.sysinit:
	don't complain on monolithic kernels (#58288)

	* sysconfig/network-scripts/ifup:
	fix dumb bug (#57924)

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

	* initscripts.spec: add net-tools requirement

2002-01-30  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.51-1

	* setsysfont:
	run /bin/setfont, not /usr/bin/setfont (kbd change)

2002-01-25  Bill Nottingham  <notting@redhat.com>

	* lang.csh: setenv LANG, not set LANG (#57957)

	* sysconfig/network-scripts/ifup:
	don't blowaway pumpargs/dhcpcdargs if they pass in a hostname (#57927, <Olivier.Baudron@ens.fr>)

	* rc.d/init.d/netfs:
	fix netdev uses (#57314, <cajoline@chaosengine.de>)

	* src/netreport.c:
	complain about extra arguments (#54681, <goeran@uddeborg.pp.se>)

	* rc.d/init.d/halt: fix typo (#55955)

	* sysconfig/network-scripts/network-functions:
	modprobe interface name, not alias name (#55380)

	* sysconfig/network-scripts/network-functions, rc.d/init.d/functions:
	make sure su calls bash (#55288)

	* sysconfig/network-scripts/ifup:
	don't loop on bad HWADDR settings (#52285)

	* rc.d/rc.sysinit:
	load sound-slot-0, not the specific alias (#55231)

	* rc.d/init.d/functions:
	fix double echo when using --user (#54871)

	* rc.d/init.d/functions:
	random syntax cleanups (#54494)

	* sysconfig/network-scripts/ifup-routes:
	allow tabs as delimiters, as well (#53964)

	* rc.d/init.d/halt:
	don't blow up badly on devfs (#53580)

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

	* ChangeLog, initscripts.spec: 6.50-1
	
	* prefdm: fix typo

2002-01-18  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	depmod does not like this reuse of /lib/modules

2002-01-18  Bill Nottingham  <notting@redhat.com>

	* ChangeLog: 6.41-1

	* rc.d/rc.sysinit, initscripts.spec:
	add support for libredhat-kernel.so.* symlink handling (johnsonm@redhat.com)

2002-01-02  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	revert broken code.

	To set HW address, use MACADDR, not HWADDR. HWADDR is used to tie a
	configuration to a particular card, even if its device name changes.

2001-12-26  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: fix typo

2001-11-19  Harald Hoyer  <harald@redhat.com>

	* rc.d/init.d/network:
	determine devices the correct way

	* sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/network-functions:
	added \ on the end of the multiline if

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-post:
	better nickname handling

	* sysconfig/network-scripts/ifup:
	set the ethernet number with nameif

2001-11-07	Than Ngo	<than@redhat.com>
	* sysconfig/network-scripts/ifup-iucv
	* sysconfig/network-scripts/ifup-escon
	* sysconfig/network-scripts/ifup-ctc
	fix bug in setting netmask on s390/s390x (bug #55421)
	nmbd daemon works now ;-)

2001-11-02  Than Ngo  <than@redhat.com>
	* sysconfig/network-scripts/ifup-ippp
	fixed typo bug ifup-ippp
	
2001-10-29  Than Ngo  <than@redhat.com>
	* sysconfig/network-scripts/ifup-ippp
	fix bug in channel bundling if MSN is missed
	support DEBUG option
	
2001-09-21  Roman Maurer  <roman.maurer@amis.net>

	* po/sl.po: partially translated

2001-09-19  Than Ngo  <than@redhat.com>

	* ChangeLog, initscripts.spec, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp:
	* don't show user name by DSL connection

2001-09-14  Preston Brown  <pbrown@redhat.com>

	* rc.d/init.d/network:
	remove remnants of LinuxConf.  Don't use ifconfig, only /sbin/ip.  Use check_device_down from network-functions instead of re-implementation.

	* prefdm:
	slight prefdm cleanup (i.e. no AnotherLevel support).

2001-09-14  Karsten Hopp  <karsten@redhat.com>

	* initscripts-s390.patch:
	patch didn't apply anymore, fix OCO path

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

	* ChangeLog: fix name

	* ChangeLog, initscripts.spec:
	6.40-1

	* rc.d/rc.sysinit:
	don't run hwclock --adjust on a readonly filesystem

* 2001-09-19	Than Ngo	<than@redhat.com>
	* ChangeLog, initscripts.spec: 6.41-1

	* sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifdown-ppp:
	don't show user name by DSL connection
	
2001-09-09  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.40-1

	* rc.d/rc.sysinit:
	don't run hwclock --adjust on a readonly filesystem

2001-09-08  Nilgün Belma Bugüner  <nilgun@technologist.com>

	* po/tr.po: 366 translated messages

2001-09-06	Than Ngo	<than@redhat.com>
	* ChangeLog, initscripts.spec: 6.39-1

	* initscripts-s390.patch: update initscripts-s390.patch
	
2001-09-05  Jesús Bravo Álvarez  <jba@pobox.com>

	* po/gl.po: Updated Galician translations

2001-09-05  Bill Nottingham <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.38-1

2001-09-05  Trond Eivind Glomsrod  <teg@redhat.com>

	* po/sv.po: Fix one of the obsolete entries

	* po/no.po: Unfuzzy

2001-09-05  Than Ngo  <than@redhat.com>

	* po/sv.po: * add comments back

2001-09-05  Federico Musto  <federico@redhat.com>

	* po/fr.po: *** empty log message ***

2001-09-05  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	quota & hwclock tweaks (<pbrown@redhat.com>)

2001-09-04  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po:
	"/mnt/traduzioni/RH7.2/translate/initscripts"

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

	* ChangeLog, initscripts.spec: 6.37-1

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
	fix severe alias handling breakage (#52882)

2001-09-03	Than Ngo	<than@redhat.com>
	* ChangeLog, initscripts.spec: 6.36-1
	
	* sysconfig/network-scripts/ifup-ippp
	don't start pppbind if encapsulation is rawip (bug #52491)
	
2001-09-03	Than Ngo	<than@redhat.com>
	* ChangeLog, initscripts.spec: 6.35-1

	* sysconfig/network-scripts/ifdown-ippp, sysconfig/network-scripts/ifup-ippp
	add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
	fix handling of ISDN LSZ Compresssion

2001-08-30	Than Ngo	<than@redhat.com>
	* ChangeLog, initscripts.spec: 6.34-1
	po/de.po: fix typo bug, lo instead 1o
	
2001-08-29	David Sainty	<dsainty@redhat.com>

	* ChangeLog, initscripts.spec: 6.33-1

	* sysconfig/network-scripts/ifdown
	fix ifdown on multiple dhcpcd i/f bug

2001-08-29  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, sysconfig.txt:
	document /etc/sysconfig/authconfig

2001-08-29  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	"/mnt/traduzioni/RH7.2/translate/initscripts"

2001-08-29  Satoru Sato  <ssato@redhat.com>

	* po/ja.po: initscripts/ja.po: follow updates.

2001-08-29	Than Ngo	<than@redhat.com>

	* ChangeLog, initscripts.spec: 6.32-1
	
	* sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-ippp
	fix ISDN dial on demand bug

	* sysconfig/network-scripts/network-functions
	fix typo bug
	
2001-08-29  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.31-1

	* po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po:
	update translations

2001-08-29  Michael K. Johnson  <johnsonm@redhat.com>

	* rc.d/rc.sysinit, src/getkey.c:
	count down in C, not shell

2001-08-29  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Danish updates
	apacheconf/da.po initscripts/da.po netcfg/da.po

2001-08-28  Michael K. Johnson  <johnsonm@redhat.com>

	* rc.d/init.d/halt:
	umount -a -f remounts / readonly?

2001-08-28  Milan Kerslager  <milan.kerslager@spsselib.hiedu.cz>

	* po/cs.po: Prelozena doplnena hlaseni

2001-08-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.30-1

	* po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po:
	update translations for Michael's tweaks

2001-08-28  Satoru Sato  <ssato@redhat.com>

	* po/ja.po: netcfg/ja.po: follow updates.

2001-08-28  Michael K. Johnson  <johnsonm@redhat.com>

	* rc.d/rc.sysinit:
	Bill, I appreciate your intention of simplifying this, but you have
	made it say something that is VERY SIMPLY NOT TRUE.  A trivial reading
	of the code will demonstrate what I am saying.  We do NOT skip the
	fsck, we simply do not set the force fsck argument.  "To skip" is
	not the opposite of "To force".

	This is a critical change.

2001-08-28  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2001-08-28  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.29-1

	* po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po:
	translation update. hopefully the last one

	* sysconfig/network-scripts/network-functions-ipv6:
	fix message string (#52581)

	* rc.d/rc.sysinit: more wording changes

	* rc.d/rc.sysinit: change wording slightly

2001-08-27  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig.txt:
	documented /etc/sysconfig/autofsck

2001-08-27  Jesús Bravo Álvarez  <jba@pobox.com>

	* po/gl.po: Updated Galician translation

2001-08-27  Michael K. Johnson  <johnsonm@redhat.com>

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	first pass at implementing /.autofsck; archive modules/symbol info

2001-08-27  Bill Nottingham  <notting@redhat.com>

	* sysconfig/init: set default loglevel to 3, not 1

2001-08-27	Than Ngo <than@redhat.com>

	* sysconfig/network-scripts/ifup-ippp, ChangeLog, initscripts.spec:
	- fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>

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

	* ChangeLog, initscripts.spec: 6.27-1

	* sysconfig.txt:
	add a comment about PROMISC and ALLMULTI being deprecated

	* rc.d/init.d/halt:
	sort output of halt_get_remaining (#52180)

	* po/de.po, po/it.po:
	fix broken translations of command (#52503)

2001-08-23  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Various danish updates
	apacheconf/da.po authconfig/da.po initscripts/da.po
	netcfg/da.po redhat-config-users/da.po serviceconf/da.po
	Xconfigurator/da.po

2001-08-23  Bill Nottingham  <notting@redhat.com>
	
	* ChangeLog, initscripts.spec: 6.26-1

	* sysconfig/network-scripts/ifup:
	source ifup-wireless, so it actually works (#52135)

	* po/de.po: fix typo, again. (#50943)

2001-08-22	Than Ngo	<than@redhat.com>
	* sysconfig/network-scripts/ifup-ippp:
	- fix return code of isdnctrl (bug #52225)

2001-08-20 Karsten Hopp <karsten@redhat.de>

	* initscripts.spec, ifup-escon:
	- add configuration of escon interface for S/390

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

	* ChangeLog, initscripts.spec: 6.21-1

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	- fix call of check_device_down in ifdown
	- make loopback addresses have scope 'host', not scope 'global'. This
	  apparently fixes pump.

2001-08-19  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po, po/uk.po: update

	* po/ru.po: fix header

2001-08-19  Keld Jørn Simonsen  <keld@dkuug.dk>

	* po/da.po: Update of danish initscripts po file
	translate/initscripts/da.po

2001-08-17  Thiago Vinhas de Moraes  <tvinhas@networx.com.br>

	* po/pt_BR.po: *** empty log message ***

2001-08-17  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	"/mnt/traduzioni/RH7.2/translate/initscripts"

2001-08-17  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2001-08-17  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update

2001-08-17  Richard Allen  <ra@hp.is>

	* po/is.po: typos, typos...

2001-08-16  Milan Kerslager  <milan.kerslager@spsselib.hiedu.cz>

	* po/cs.po: Zacisteni initscripts

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

	* lang.csh:
	check for $LANG before using it (#51905)

2001-08-16  Satoru Sato  <ssato@redhat.com>

	* po/ja.po: initiscripts/ja.po: follow updates.

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

	* rc.d/rc.sysinit:
	blow away stale RPM cache files at boot

2001-08-16  David Joo  <djoo@redhat.com>

	* po/ko.po: done!

2001-08-16  Richard Allen  <ra@hp.is>

	* po/is.po: Finish initscripts

2001-08-15  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	6.20-1

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ipx, sysconfig.txt:
	ipx support returns (#51787)

2001-08-15  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2001-08-15  Bill Nottingham  <notting@redhat.com>

	* po/Makefile:
	don't try and pull strings from unreadable ifcfg files

	* ChangeLog, initscripts.spec:
	6.19-1

	* po/is.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/Makefile:
	update translation info

	* rc.d/init.d/network, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	add is_available() function for network devices; use it. gets rid of horribly ugly modprobe messages

2001-08-15  Richard Allen  <ra@hp.is>

	* po/is.po: More work in initscripts...

2001-08-15  Bernhard Rosenkraenzer  <bero@redhat.com>

	* initscripts-s390.patch, initscripts.spec, src/mkkerneldoth.s390, sysconfig/network-scripts/ifup-ctc:
	S390 fixes

2001-08-15  Bill Nottingham  <notting@redhat.com>

	* po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, rc.d/init.d/halt, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/gl.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/da.po, po/cs.po:
	type english me not can

2001-08-15  Richard Allen  <ra@hp.is>

	* po/is.po: First installment of initscripts/is.po

2001-08-15  Christian Rose  <menthos@menthos.com>

	* sv.po: Fix date.

2001-08-15  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2001-08-13  Yukihiro Nakai  <ynakai@redhat.com>

	* initscripts.spec: changelog in .spec fix

	* initscripts.spec, rc.d/init.d/functions:
	Korean and Chinese fix

2001-08-11  Florian La Roche  <laroche@redhat.com>

	* po/ko.po:
	hope these changes are ok, they are at least needed to compile everything...

	* initscripts-s390.patch, initscripts.spec:
	Forgot to do "cvs commit", so I have again incremented the version
	number. 6.16 is still ok to build into the buildsystem, though.

2001-08-11  David Joo  <djoo@redhat.com>

	* po/ko.po: Done

2001-08-10  Yukihiro Nakai  <ynakai@redhat.com>

	* po/ko.po: FIx.

2001-08-10  Bill Nottingham  <notting@redhat.com>
	
	* ChangeLog, initscripts.spec: 6.15-1

	* lang.csh, lang.sh:
	allow GDM_LANG to override system settings (#51432)

2001-08-10  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	initscripts

2001-08-10  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

2001-08-10  David Joo  <djoo@redhat.com>

	* po/ko.po: Fix merge corruption

2001-08-10	Than Ngo	<than@redhat.com>
	* sysconfig/network-scripts/ifup-ippp
	don't set MSN if it' empty (it's now optional)
	don't give login name as a cmdline-option (Bug #23066)
	fix Channel bundling

	* sysconfig//network-scripts/ifdown-post
	remove peer device file if ppp connection is down

2001-08-09  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, ChangeLog: 6.13-1
	
2001-08-09  Milan Kerslager  <milan.kerslager@spsselib.hiedu.cz>

	* po/cs.po: Preklad 9.8.2001

2001-08-09  Bill Nottingham  <notting@redhat.com>

	* lang.csh:
	set dspmbyte=euc in lang.csh for the proper languages (as opposed to csh.login for everyone (#50318))

	* sysconfig/network-scripts/ifdown:
	still run ifdown for dhcp devices, even if the device isn't there

	* sysconfig/network-scripts/ifup:
	behave sanely if ifup is called with dhcpcd already running (#49392, #51038)

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	just kill dhcpcd, don't use dhcpcd -k. also, allow setting of additional pump & dhcpcd arguments (#46942)

	* sysconfig/network-scripts/ifup-ppp:
	allow shell characters in ppp names (#43719)

	* sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup:
	only allow dest port 1025-65535 for DNS replies (#40833, #44038)

	* sysconfig/network-scripts/ifup-ppp:
	save resolv.conf for restoration by ifdown-post (#50759)

	* sysctl.conf, sysctl.conf.s390, sysctl.conf.sparc:
	use conf.default for rp_filter, not conf.all (#50166)

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/network-functions:
	switch some more things to /sbin/ip; allow adding back of default route for DHCP devices (#48994)

2001-08-08  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec: 6.12-1
	
	* rc.d/rc.sysinit:
	tweak raidtab grep slightly (#51231)

2001-08-08  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update ipv6 stuff

2001-08-07  Leon Kanter  <leon@geon.donetsk.ua>

	* po/ru.po: update russian translation

2001-08-07  Satoru Sato  <ssato@redhat.com>

	* po/ja.po: initscripts/ja.po: complete trans.

	* po/ja.po: netcfg/ja.po: complete trans.

2001-08-07  Kjartan Maraas  <kmaraas@gnome.org>

	* po/no.po: Update

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

	* rc.d/init.d/halt, rc.d/init.d/netfs:
	detach loopback devices at shutdown (#43919, #45826)

	* rc.d/rc.sysinit:
	use a bigger buffer size argument to dmesg when dumping the log (#44024)

	* sys-unconfig.8, rc.d/rc.sysinit:
	run kbdconfig when /.unconfigre'd (#43941)

	* po/initscripts.pot, rc.d/init.d/network, rc.d/rc.sysinit, sysconfig/network-scripts/ifup:
	use awk, not grep & other cruft (#49616)
	exit happily if ifup is called on a device that doesn't exist and has
	no alias (fixes all those nasty PCMCIA onboot complaints)

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	support setting $CLOCKFLAGS in /etc/sysconfig/clock (#50974)

	* sysconfig/network-scripts/ifup:
	don't do anything in ifup if we're running under hotplug and $HOTPLUG is set to 'no'

2001-08-05  Bill Nottingham  <notting@redhat.com>

	* po/de.po: fix typo (#50943)

2001-08-03  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	define halt_get_remaining before it's used (#50720)

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

	* sysconfig/network-scripts/ifdown:
	do the same thing for ifdown too

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	don't worry about profiles just now. look for alternate config files that contain the correct MAC address for the adapter

2001-08-01  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	6.11-1

2001-07-31  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	more FS umounting cleanups (<sopwith@redhat.com>)

	* rc.d/init.d/halt:
	remount *everything* ro on halt (#50461)

	* sysconfig/network-scripts/ifup:
	don't check for the link to be down; it's not reliable enough

2001-07-31  Karsten Hopp  <karsten@redhat.com>

	* rc.d/rc.sysinit, initscripts-s390.patch:
	fix typo

2001-07-31  Kjartan Maraas  <kmaraas@gnome.org>

	* po/nn.po: Update nynorsk too :)

	* po/no.po: Update bokmål

2001-07-30  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/network-functions-ipv6:
	clarify message (#50365)

	* sysconfig/network-scripts/network-functions-ipv6:
	fix typo (#50363)

	* sysconfig/network-scripts/ifup:
	take embedded quotes out - it confuses gettext

	* po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/nn.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/Makefile:
	refresh from public beta

2001-07-29  Christian Rose  <menthos@menthos.com>

	* sv.po: Some fixes to the Swedish translation.

2001-07-28  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/network-functions:
	return link up in check_link_down for EINVAL too; in fact, return link up if mii-tool fails for any reason

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

	* ChangeLog, initscripts.spec:
	6.10-1

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	- only bring link down if check_link_down fails
	- add a sleep in check_link_down; some cards take time to negotiate
	- only expand_config for the static IP case in ifdown

	* ChangeLog, initscripts.spec:
	6.09-1

	* setsysfont: don't use kbd commands

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

        * ChangeLog, initscripts.spec: 6.08-1

	* sysconfig/network-scripts/network-functions:
	set link up before checking with mii-tool (#49949)

	* initscripts.spec: buildprereq popt (#49958)

2001-07-25  Federico Musto  <federico@redhat.com>

	* po/de.po, po/es.po, po/fr.po, po/it.po:
	drop1

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

	* ChangeLog, initscripts.spec:
	6.07-1
	
	* initscripts.spec, Makefile:
	fix broken previous changes

	* rc.d/init.d/netfs, rc.d/rc.sysinit, initscripts.spec:
	fix netdev umount stuff

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	do config expansion (NETMASK, PREFIX, etc) in a function, call it from ifdown (fixes #49777, #49783)

	* ppp/ip-up.ipv6to4, sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/init.ipv6-global, sysconfig/network-scripts/network-functions-ipv6, ipv6-6to4.howto, ipv6-tunnel.howto, ppp/ip-down.ipv6to4, sysconfig.txt:
	ipv6 update (<pekkas@netcore.fi>)

2001-07-24  Phil Knirsch  <pknirsch@redhat.com>

	* initscripts.spec:
	- Final profile support with correct reflection of directories and names.

2001-07-20  Preston Brown  <pbrown@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	updates for quota support.

2001-07-19  Karsten Hopp  <karsten@redhat.com>

	* sysconfig/network-scripts/ifup-iucv, sysconfig/network-scripts/ifup-ctc:
	remove broken compatibility hack for gateway which results in having two default gateways

2001-07-17  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown:
	only remove the IP address for the !DHCP case

	* ChangeLog, initscripts.spec:
	6.05-1

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	fix ifup/ifdown

2001-07-17  Kjartan Maraas  <kmaraas@gnome.org>

	* nn.po: Added Norwegian (nynorsk) translation.
	* ChangeLog: Added this so we won't flood the master ChangeLog.

2001-07-17  Bill Nottingham  <notting@redhat.com>

	* src/initlog.1, src/initlog.c:
	don't allow --event to be used with --cmd/--run (#49203)

	* ChangeLog, initscripts.spec:
	6.04-1

	* sysconfig.txt: some docs updates

	* rc.d/init.d/netfs, rc.d/rc.sysinit, initscripts.spec:
	use -O nonetdev; require new mount package

	* initscripts.spec: own some more directories

2001-07-17  Than Ngo  <than@redhat.com>

	* ChangeLog, initscripts.spec, sysconfig/network-scripts/ifup-ippp:
	* fixed country_code

2001-07-17  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, ChangeLog: 6.05-1
	
	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	fix ifup/ifdown
	only remove the IP address for the !DHCP case

2001-07-17  Kjartan Maraas  <kmaraas@gnome.org>

	* po/.cvsignore, po/nn.po:

		* nn.po: Added Norwegian (nynorsk) translation.
		* ChangeLog: Added this so we won't flood the master ChangeLog.

2001-07-17  Bill Nottingham  <notting@redhat.com>

	* src/initlog.1, src/initlog.c:
	don't allow --event to be used with --cmd/--run (#49203)

        * initscripts.spec: 6.04-1

	* sysconfig.txt: some docs updates

	* rc.d/init.d/netfs, rc.d/rc.sysinit, initscripts.spec:
	use -O nonetdev; require new mount package

	* initscripts.spec: own some more directories

2001-07-16	Than Ngo	<than@redhat.com>

	* ChangeLog, initscripts.spec, sysconfig/network-scripts/ifup-ippp:
	* fixed country_code

2001-07-16  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/network-functions:
	fix do_netreport to work for the non-root case

	* sysconfig/network-scripts/ifdown:
	remove ip address on ifdown

2001-07-16  Karsten Hopp  <karsten@redhat.com>

	* sysconfig/network-scripts/ifup-ctc, sysconfig/network-scripts/ifup-iucv:
	added a small howto to the head of the S390 files

2001-07-11  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	6.02-1
	
	* ipv6-6to4.howto, ppp/ip-down.ipv6to4, ppp/ip-up.ipv6to4, sysconfig/network-scripts/init.ipv6-global, initscripts.spec, ipv6-tunnel.howto, rc.d/init.d/network, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/network-functions-ipv6, sysconfig.txt:
	big ipv6 update from Pekka Savola (<pekkas@netcore.fi>)

	* ChangeLog, initscripts.spec:
	6.01-1
	
	* rc.d/rc.sysinit:
	don't tweak the System.map link if it's already correct (#39290)

	* rc.d/rc.local:
	don't muck with /etc/issue on boot

2001-07-10  Bill Nottingham  <notting@redhat.com>

	* Makefile: fix build

	* ChangeLog, initscripts.spec:
	6.00-1

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

	* rc.d/init.d/functions:
	it helps if you name the variable the same thing as what you're checking

	* initscripts.spec: prereq sh-utils (#43605)

	* rc.d/rc:
	add check for reboot/halt in the 'action' case as well (#45966)

	* rc.d/init.d/functions:
	cleanups for undefined variables (#46065)

	* Makefile:
	add s99local link in runlevel 4 (#47769)

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

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

2001-07-06  Trond Eivind Glomsrod  <teg@redhat.com>

	* Makefile:
	Add new directories required by new networking tool.

	* po/uk.po: Fix character set

	* initscripts.spec:
	Add new directories required by new networking tool.

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

	* sysconfig/network-scripts/ifup-ppp:
	fix the non-xDSL case (#47263)

2001-07-05  Karsten Hopp  <karsten@redhat.com>

	* initscripts-s390.patch, initscripts.spec:
	S390-only changes

2001-07-02  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup:
	Reenable pump, but make dhcpcd is the default. This makes updates of systems
	without dhcpcd installed easier.

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

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/network-functions-ipv6:
	run more stuff with C locale, mark some more strings for translation

2001-06-28  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec, sysconfig/network-scripts/ifup:
	Remove pump usage

	* initscripts.spec:
	Use dhcpcd as default instead of pump

2001-06-28  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown:
	switch order in ifdown too

2001-06-28  Trond Eivind Glomsrod  <teg@redhat.com>

	* sysconfig/network-scripts/ifup:
	Use dhcpcd first, pump second

2001-06-28  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: add arping requirement

2001-06-27  Bill Nottingham  <notting@redhat.com>

	* src/ipcalc.c: fix 64-bit brokeness

2001-06-27  Than Ngo  <than@redhat.com>

	* sysconfig/network-scripts/ifup-ippp, ChangeLog, initscripts.spec:
	- fix pap/chap authentication for syncppp
	- support ippp options

2001-06-27	Than Ngo <than@redhat.com>
	* initscripts.spec: 5.94-1
	
	* sysconfig/network-scripts/ifup-ippp
	fix pap/chap authentication for syncppp
	support ippp options

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

        * initscripts.spec: 5.93-1

	* sysconfig/network-scripts/ifup:
	fix setting of MTU and other random variables

	* initscripts.spec:
	add ifup-wireless to the file list

	* sysconfig/network-scripts/ifup:
	remove broadcast unreachable route; breaks DHCP clients

2001-06-22  Harald Hoyer  <harald@redhat.com>

	* sysconfig.txt: added ISDN items

2001-06-22 Than Ngo <than@redhat.com>
	* initscripts.spec: 5.92-1

	* sysconfig/network-scripts/ifup-ppp sysconfig/network-scripts/ifdown-ppp
	add support xDSL
	
2001-06-21  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.91-1

	* sysconfig/network-scripts/network-functions:
	fix iwconfig return code return, and switch check_link_down returns to make ifup work (#45364)

	* rc.d/init.d/functions:
	make --check= at least parse right

	* rc.d/rc.sysinit: make that /initrd

	* rc.d/rc.sysinit:
	use /boot/initrd, and flush the buffers when done

2001-06-21 Than Ngo <than@redhat.com>
	
	* add sysconfig/network-scripts/ifup-ippp sysconfig/network-scripts/ifdown-ippp
	* rc.d/init.d/network
	* Makefile
	- add support isdn
	
2001-06-20  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.90-1

	* sysconfig/network-scripts/ifcfg-lo, sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	- fix testing for link so that modules will actually get loaded
	- don't use $MACADDR for testing device's MAC address when it's a
	  configuration parameter to change it; use $HWADDR instead.
	- fix broken ipcalc --prefix calls
	- re-add ifcfg-lo
	- fix check_default_route
	- fix up some of the stdout/stderr redirections

	* initscripts.spec: 5.89-1
	
	* Makefile:
	explicitly mkdir /etc/sysconfig/console

	* initscripts.spec, Makefile:
	make it build

	* src/getkey.c, src/process.c, src/usernetctl.c:
	clean up some compiler warnings

	* src/Makefile:
	fix Makefile to not delete a script

	* src/ipcalc.c: allow building with older popt

	* rc.d/rc.sysinit: unmount initrd, if needed

2001-06-20  Harald Hoyer  <harald@redhat.com>

	* sysconfig.txt: added harddiskhd[a-h] description

2001-06-01  Preston Brown  <pbrown@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions:
	check link status before trying DHCP/BOOTP.

2001-05-29  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	fix setting of MTU

2001-05-27  I18N Processor  <i18n@redhat.com>

	* po/pt.po: Auto-update by pmmm@rnl.ist.utl.pt

2001-05-23  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't error on raid devices that are marked noauto (#41913, <hdeller@redhat.com>)

	* sysconfig/network-scripts/ifup-aliases:
	fix static routes (#29500)

2001-05-21  Karsten Hopp  <karsten@redhat.com>

	* rc.d/init.d/netfs, rc.d/init.d/network:
	supress error messages if NETWORKING ist undefined

2001-05-18  Trond Eivind Glomsrod  <teg@redhat.com>

	* src/ppp-watch.c: Fix typo

2001-05-17  Bill Nottingham  <notting@redhat.com>

	* src/ppp-watch.c: fix MAXFAIL (#39231)

	* sysconfig/network-scripts/network-functions:
	fix kill || rm behavior in do_netreport

	* src/ppp-watch.c:
	don't call ifup-ppp on sigint (#40585)

2001-05-16  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec: bump version to 5.87

2001-05-15  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, lang.csh:
	- copyright: GPL -> license: GPL
	- fix a syntax error in lang.csh
	- skip commented-out i18n configuration lines in lang.csh

2001-05-11  Preston Brown  <pbrown@redhat.com>

	* initscripts.spec, Makefile, sysconfig/network-scripts/ifcfg-lo:
	update spec

	* sysconfig/network-scripts/ifup:
	port to ip from ifconfig; add ifup-wireless support

	* sysconfig/network-scripts/ifup-wireless:
	configure wireless functionality

	* sysconfig/network-scripts/ifup-routes:
	look in /etc/sysconfig/networking not /etc/sysconfig

	* sysconfig/network-scripts/ifup-ipx:
	gone.  We don't support IPX anymore

	* sysconfig/network-scripts/network-functions:
	port to ip command

	* sysconfig/network-scripts/ifdown-post:
	add_default_route now takes a device as an argument

	* sysconfig/network-scripts/ifdown:
	switch from ifconfig to ip command.

	* src/.cvsignore, src/Doxyfile:
	documentation framework added.

	* src/consoletype.1, src/netreport.1:
	freshened copyright info

2001-05-08  Bill Nottingham  <notting@redhat.com>

	* po/uk.po: fix charset

2001-05-02  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* lang.csh, lang.sh:
	Support kbd in lang.{c,}sh

2001-05-02  Preston Brown  <pbrown@redhat.com>

	* src/ipcalc.c: simple fix for -p

2001-05-02  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* initscripts.spec, Makefile:
	Add changelog entry, compress with bzip2

	* setsysfont: Handle kbd-1.05

2001-05-01  Bill Nottingham  <notting@redhat.com>

	* ChangeLog: clean up changelog

2001-04-30  Preston Brown  <pbrown@redhat.com>

	* src/ipcalc.1, src/ipcalc.c:
	--prefix fixups

	* src/ipcalc.1, src/ipcalc.c:
	understands CIDR prefixes, operates more cleanly.

2001-04-25  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec: make a release

	* initscripts.spec, src/Makefile, src/mkkerneldoth.s390, sysconfig/network-scripts/ifup-iucv:
	further s390 changes

2001-04-25  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* Makefile, ChangeLog:
	Fix up the sed trickery generating the ChangeLog - those
	everyone@redhat.com
	are too funny. ;)

2001-04-23  Than Ngo  <than@redhat.com>

	* initscripts.spec: * changed release number

	* ChangeLog, initscripts.spec, rc.d/init.d/halt:
	add shutdown UPS into halt

2001-04-23  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't load mixer settings; modutils does that in %post-install

2001-04-22  Bill Nottingham  <notting@redhat.com>

	* src/mkkerneldoth:
	fix it for some cases (#36480)

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

	* rc.d/rc.sysinit:
	disable DMA, 32-bit IO if asked to

2001-04-09  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

2001-04-07  I18N Processor  <i18n@redhat.com>

	* po/no.po:
	Auto-update by teg@redhat.com

2001-04-07  Preston Brown  <pbrown@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit, src/Makefile, src/mkkerneldoth:
	broke out kernel.h symlink code from rc.sysinit into /sbin/mkkerneldoth

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

	* sysconfig/network-scripts/network-functions:
	attempt to avoid netreport killing too many random processes (#34933)

	* po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po:
	update-po (ssh)

	* po/initscripts.pot: new ssh translations

2001-04-05  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-04-03  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.82-1

	* rc.d/init.d/functions: set umask to 022

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

	* initscripts.spec:
	5.81-1

	* src/usernetctl.c:
	don't free something not malloc()ed

2001-04-02  Erik Troan  <ewt@redhat.com>

	* initscripts.spec:
	added requirement for mount w/ new swapon

2001-04-02  I18N Processor  <i18n@redhat.com>

	* po/cs.po:
	Auto-update by milan.kerslager@spsselib.hiedu.cz

2001-03-28  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network:
	run *all* greps in C locale

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

	* initscripts.spec: 5.80-1

	* rc.d/init.d/network:
	don't error if kernel.hotplug isn't there (#33256)

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

	* initscripts.spec: 5.79-1

	* initscripts.spec, rc.d/init.d/network, rc.d/rc.sysinit:
	use new -e argument to sysctl to ignore unknown keys (#31852)

	* rc.d/rc.sysinit:
	fix /boot/kernel.h generation (#32081)

	* rc.d/rc.sysinit:
	do explicitly load usb-storage; it's the simplest solution for now

2001-03-22  Erik Troan  <ewt@redhat.com>

	* rc.d/rc.sysinit:
	1) use -e on the first swapon
	2) we don't need to redirect stderr on second swapon anymore

2001-03-21  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	fix LVM initialization (#32498)

2001-03-17  I18N Processor  <i18n@redhat.com>

	* po/gl.po: Auto-update by jba@pobox.com

	* po/sv.po:
	Auto-update by menthos@menthos.com

2001-03-16  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-03-15  I18N Processor  <i18n@redhat.com>

	* po/pt.po:
	Auto-update by pmmm@rnl.ist.utl.pt

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

	* initscripts.spec: 5.78-1

	* rc.d/init.d/functions:
	--background is fundamentally broken. Remove it for now.

	* rc.d/init.d/network:
	do cipe stuff out of order

	* po/Makefile: simplify makefile

2001-03-14  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by claus_h@image.dk

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

	* sysconfig/network-scripts/network-functions-ipv6:
	use 'route -n' when grepping; avoid DNS

2001-03-14  I18N Processor  <i18n@redhat.com>

	* po/ko.po:
	Auto-update by queenrjh@chollian.net

2001-03-13  I18N Processor  <i18n@redhat.com>

	* po/no.po: Auto-update by teg@redhat.com

2001-03-13  Trond Eivind Glomsrod  <teg@redhat.com>

	* po/initscripts.pot, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po:
	loopback, not loobpack

2001-03-13  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.77-1

	* po/zh_CN.GB2312.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh.po, po/cs.po, po/da.po, po/Makefile:
	update initscripts.pot with current tree, run make refresh-po

	* rc.d/init.d/network:
	fix broken translations in linuxconf-specific sections

2001-03-13  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit, sysconfig/network-scripts/ifup-routes:
	- fix typo in rc.sysinit
	- fix ifup-routes not setting DEVICE properly

2001-03-13  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.76-1

	* sysconfig/network-scripts/ifup:
	fix typo (#31627)

	* sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit:
	make sure ipv6 is loaded if needed

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

	* sysconfig/network-scripts/ifdown:
	add ifdown-pre-local (#10936)

	* rc.d/init.d/random:
	use /var/lib/for random seed; /var/run is cleared at bootup (#31521)

2001-03-12  Preston Brown  <pbrown@redhat.com>

	* rc.d/rc.sysinit, initscripts.spec:
	bump version and add changelog.

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

	* sysconfig/network-scripts/ifup:
	get rid of error message if ${GATEWAY} isn't set

2001-03-11  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-03-10  Preston Brown  <pbrown@redhat.com>

	* rc.d/rc.sysinit:
	work properly with new quota utilities; convert old quota format if possible.

2001-03-08  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	tweak raid startup slightly to deal with /etc/raitab but no raid in the kernel (#25291)

	* rc.d/rc.sysinit:
	avoid some error messages from USB startup (#31040)

2001-03-07  Bill Nottingham  <notting@redhat.com>

	* prefdm:
	fix KDE2 reference to use current KDE location (#31014)

	* rc.d/rc.sysinit:
	run pam_console_apply on startup to reset permissions

2001-03-06  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifup:
	clean up testing gateway slightly

2001-03-05  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.70-1

	* static-routes-ipv6, sysconfig/static-routes-ipv6:
	move static-routes-ipv6 up a level

	* initscripts.spec, ipv6-tunnel.howto:
	add short howto on ipv6 setup

	* sysconfig/network-scripts/network-functions-ipv6:
	some more ipv6 updates (#30506)

	* rc.d/init.d/network: fix awk for alias

	* rc.d/init.d/network, sysconfig/network-scripts/ifup-routes:
	- don't attempt to work around broken linuxconf routes, simplify
	  (and make consistent) adding of static routes, and make it work
	  again for aliases (#29500, #29549)

2001-03-05  I18N Processor  <i18n@redhat.com>

	* po/pt.po:
	Auto-update by pmmm@rnl.ist.utl.pt

2001-03-05  Bill Nottingham  <notting@redhat.com>

	* po/Makefile:
	remove python droppings on make clean

	* sysconfig/network-scripts/ifdown:
	source /etc/sysconfig/network (#30595)

2001-03-02  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	insert multiple USB controllers correctly

2001-02-28  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/halt:
	change message to be less misleading (#30087)

	* sysconfig/network-scripts/network-functions-ipv6:
	run ifconfig in locale C

2001-02-28  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec: oops, should cite bug ID

	* initscripts.spec:
	- usernetctl, ppp-watch: cleanups
	- netreport: use O_NOFOLLOW
	- ifup-ppp: let ppp-watch watch over demand-dialed connections

	* src/ppp-watch.c:
	general cleanups and reorg

	* sysconfig/network-scripts/ifup-ppp:
	let ppp-watch watch over demand-dialed connections, remove a redundant nodetach (synonymous with -detach)

	* src/netreport.c: use O_NOFOLLOW

	* src/usernetctl.c: formatting cleanups

2001-02-27  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.68-1

	* rc.d/rc.sysinit:
	mount usbdevfs before loading host controller module, don't explicitly load usb-storage

	* rc.d/init.d/single:
	don't explicitly kill things, init will do that

	* sysconfig/network-scripts/ifup-post:
	log that we're punching something through the firewall

	* initscripts.spec: 5.67-1

	* rc.d/rc.sysinit:
	call sndconfig --mungepnp to set up sound for non-native PnP drivers

	* rc.d/rc.sysinit:
	don't run isapnp on isapnp-enabled 2.4 kernels

	* rc.d/init.d/network:
	disable hotplug during network initscript

	* sysconfig/network-scripts/ifup:
	don't munge wireless keys

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

	* rc.d/rc.sysinit:
	load usb-storage if needed

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

	* sysconfig/network-scripts/network-functions-ipv6:
	more minor cleanups from Peter Bieringer

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

	* initscripts.spec: 5.66-1

	* rc.d/rc.sysinit:
	initialize multiple USB controllers if necessary

2001-02-22  Nalin Dahyabhai <nalin@redhat.com>

	* src/process.c, src/testd.c, initscripts.spec:
	close extra file descriptors before exec()ing commands in initlog

2001-02-20  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	don't load agpgart automatically; X should handle this

	* sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/network-functions-ipv6:
	ipv6 updates from Peter Bieringer (#28418)

2001-02-19  I18N Processor  <i18n@redhat.com>

	* po/gl.po: Auto-update by jba@pobox.com

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

	* initscripts.spec: 5.65-1

	* rc.d/init.d/functions:
	fix some ## substitutions to be correct

	* rc.d/init.d/network:
	if IPv6 is configured, make sure it's available

2001-02-18  I18N Processor  <i18n@redhat.com>

	* po/pt.po:
	Auto-update by pmmm@rnl.ist.utl.pt

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

	* src/initlog.c:
	fix segfaults in popt when called with bogus stuff (#28140)

2001-02-17  I18N Processor  <i18n@redhat.com>

	* po/tr.po:
	Auto-update by nilgun@technologist.com

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

	* rc.d/rc.sysinit:
	disable hotplug if 'nomodules' is specified

	* rc.d/init.d/functions:
	use 'su -' , not just 'su' (#26894)

2001-02-15  Nalin Dahyabhai  <nalin@redhat.com>

	* ChangeLog, initscripts.spec, rc.d/init.d/functions:
	- make pidofproc() and killproc() try to use the PID associated with the full
	  pathname first before killing the daemon by its basename (for daemons that
	  share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
	- fix status() as well

2001-02-15  Nalin Dahyabhai <nalin@redhat.com>

	* initscripts.spec: 5.64.2-1

	* rc.d/init.d/functions:
	fix killproc, pidofproc, and status looking at or killing the wrong
	daemon when they share the same basename but are in different
	directories

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

	* initscripts.spec: 5.64.1-1

	* rc.d/init.d/single:
	fix init.d/single to work around possible kernel bug

2001-02-13  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: 5.64-1

	* rc.d/init.d/halt, rc.d/init.d/netfs:
	unmount loopback stuff before stopping netfs or shutting down

2001-02-13  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by claus_h@image.dk

2001-02-12  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	return 1 in killproc if process isn't running (#26718)

	* initscripts.spec: new version

	* sysconfig/network-scripts/ifup-post:
	ifup-post could be called from places other than ifup, so recheck $FWACTIVE here

2001-02-12  I18N Processor  <i18n@redhat.com>

	* po/tr.po:
	Auto-update by e077245@metu.edu.tr

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

	* po/initscripts.pot, sysconfig/network-scripts/ifdown:
	fix typo in message (#27052)

2001-02-10  Florian La Roche  <laroche@redhat.com>

	* initscripts.spec:
	new version to create an archive

	* initscripts.spec, inittab.s390, Makefile, sysconfig/init.s390, sysconfig/network-scripts/ifup-ctc, sysctl.conf.s390:
	add all changes for s390 that don't change anything for the other
	architectures

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

	* initscripts.spec: 5.63.1-1

	* lang.csh, lang.sh:
	reintroduce font page reset, but fix su errors

2001-02-09  I18N Processor  <i18n@redhat.com>

	* po/cs.po:
	Auto-update by milan.kerslager@spsselib.hiedu.cz

2001-02-08  I18N Processor  <i18n@redhat.com>

	* po/cs.po:
	Auto-update by milan.kerslager@spsselib.hiedu.cz

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

	* rc.d/rc.sysinit:
	load ide-cd before ide-scsi

2001-02-08  I18N Processor  <i18n@redhat.com>

	* po/is.po: Auto-update by ra@xo.hp.is

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

	* initscripts.spec: 5.63

	* sysconfig/network-scripts/ifup-ppp:
	fix detection of chat script name (hopefully)

	* po/initscripts.pot: tweak ipv6 stuff

2001-02-07  Bill Nottingham  <notting@redhat.com>

	* Makefile, sysconfig/network-scripts/network-functions-ipv6, sysconfig.txt:
	more ipv6 sync-ups

2001-02-07  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

2001-02-07  Bill Nottingham  <notting@redhat.com>

	* sysconfig.txt: add ipv6 documentation

2001-02-07  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by claus_h@image.dk

2001-02-07  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/network-functions-ipv6, sysconfig/static-routes-ipv6:
	updated ipv6 stuff from Peter Bieringer

	* rc.d/rc:
	unset LC_ALL before calling halt/reboot as well

	* rc.d/init.d/functions, rc.d/init.d/halt:
	fix the 'unable to shutdown cleanly' problem (#25744)

2001-02-07  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-02-06  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	5.62-1

	* sysconfig/network-scripts/ifup:
	fix typos (DHCPDARGS vs. DHCPCDARGS) (#26378)

	* rc.d/rc.sysinit:
	load ide-scsi if they asked for it

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post, sysconfig.txt:
	modify the firewall to allow any (new) DNS servers through on ifup

2001-02-06  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-02-06  Bill Nottingham  <notting@redhat.com>

	* lang.csh, lang.sh:
	don't muck with the font in lang.(sh|csh) (#26349)

2001-02-06  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-02-06  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	don't display japanese unless we're on a pty

	* rc.d/rc.sysinit:
	mon has a subdirectory in odd places as well. (#26924)

	* rc.d/rc.sysinit:  fix comment

	* rc.d/rc.sysinit:
	do USB initialization even if we don't need to load a host-controller module (#26318)

2001-02-06  Trond Eivind Glomsrod  <teg@redhat.com>

	* po/ru.po:
	Removed lots of newlines which caused conflicts

	* initscripts.spec: i18n-updates

2001-02-06  I18N Processor  <i18n@redhat.com>

	* po/no.po: Auto-update by teg@redhat.com

2001-02-06  Bill Nottingham  <notting@redhat.com>

	* po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po, po/de.po:
	i18n updates

2001-02-06  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

2001-02-05  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-02-05  Karsten Hopp  <karsten@redhat.com>

	* rc.d/rc.sysinit:
	Fixed typo in comment (bugzilla 25998)  ;-)

2001-02-05  I18N Processor  <i18n@redhat.com>

	* po/ru.po:
	Auto-update by leon@geon.donetsk.ua

2001-02-04  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by claus_h@image.dk

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

	* po/initscripts.pot: add a string

	* ChangeLog: 5.61-1

	* sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/network-functions-ipv6, initscripts.spec, sysconfig/network-scripts/ifdown-ipv6:
	actually include ipv6 files in the spec file

	* initscripts.spec:
	we probably shouldn't conflict with ourselves

2001-02-02  I18N Processor  <i18n@redhat.com>

	* po/is.po: Auto-update by ra@xo.hp.is

2001-02-02  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec: Updated i18n...

2001-02-02  I18N Processor  <i18n@redhat.com>

	* po/no.po: Auto-update by teg@redhat.com

2001-02-01  Bill Nottingham  <notting@redhat.com>

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	merge in new stuff

	* po/initscripts.pot: update from new stuff

2001-01-31  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by claus_h@image.dk

2001-01-30  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	5.60-1

	* rc.d/init.d/killall:
	don't barf errors if files aren't there (say, rc.local)

	* rc.d/init.d/functions:
	various cleanups (#10761, from mjt@tls.msk.ru)

	* rc.d/init.d/functions:
	for daemon(), look only at the pid file to see if it's running (#17244, others)

	* src/ipcalc.c:
	change hostnames to all lowercase (#9579)

	* sysconfig/network-scripts/ifup:
	hack default gw setting

	* src/initlog.1: document -q

	* sysconfig/network-scripts/ifup-ppp:
	ifup-ppp enhancements (#17388, <ayn2@cornell.edu>)

	* rc.d/init.d/network, rc.d/init.d/random, rc.d/init.d/rawdevices, rc.d/init.d/netfs:
	tweak usage messages (#24085)

	* rc.d/rc.sysinit:
	fix raid start if it's all modular, and no initrd (#25291)

	* src/ppp-watch.c: fix build

2001-01-29  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	add sleep 1 to avoid race (#17842)

	* sysconfig/network-scripts/ifdown-ppp:
	fix redial loop (#17380)

	* rc.d/init.d/halt: add autofs (#17288)

	* rc.d/rc.local:
	touch /var/lock/subsys/local so we only get run once

	* src/ppp-watch.c, initscripts.spec, sysconfig.txt:
	make boot timeout configurable (BOOTTIMEOUT); patch from <awk@awks.org>

	* sysconfig/network-scripts/network-functions:
	handle aliases better in check_device_down (#18687)

	* rc.d/init.d/halt:
	do something less surprising when called with arguments (#18216)

	* sysconfig/network-scripts/ifup:
	remove old broken code

	* initscripts.spec, sysconfig/network-scripts/ifdown-ppp, src/ppp-watch.c:
	don't ignore RETRYTIMEOUT when we never connect (#14701)

	* src/minilogd.c:
	add an alarm, so we don't wait forever for input (#23482)

	* sysconfig/network-scripts/ifup-plusb:
	add plusb support (#18892)

	* prefdm:
	allow choice of desktop/displaymanager (#23315)

	* sysconfig/network-scripts/ifup:
	allow devices without an IP address (#24127)

	* rc.d/rc.sysinit:
	add devfs to mtab (#20261)

	* sysconfig/network-scripts/ifup-ipx:
	deuglify (#23198)

	* sysconfig/static-routes-ipv6: clean up

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ipv6, sysconfig/network-scripts/ifdown-sit, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ipv6, sysconfig/network-scripts/ifup-sit, sysconfig/network-scripts/network-functions-ipv6, sysconfig/static-routes-ipv6:
	add ipv6 support (#23576)

	* src/minilogd.c: wait another second

	* src/minilogd.c:
	add an upper bound on how much stuff we'll keep in memory

2001-01-29  I18N Processor  <i18n@redhat.com>

	* po/no.po: Auto-update by kmaraas@online.no

	* po/da.po: Auto-update by claus_h@image.dk

2001-01-28  I18N Processor  <i18n@redhat.com>

	* po/pt.po:
	Auto-update by pmmm@rnl.ist.utl.pt

2001-01-27  I18N Processor  <i18n@redhat.com>

	* po/gl.po: Auto-update by jba@pobox.com

2001-01-26  I18N Processor  <i18n@redhat.com>

	* po/is.po: Auto-update by ra@xo.hp.is

2001-01-25  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

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

	* ChangeLog, initscripts.spec:
	5.59-1

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/rc:
	fix inability to shutdown cleanly

	* ChangeLog, initscripts.spec:
	5.58-1

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/Makefile, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/xgettext_sh.py, po/zh_CN.GB2312.po, po/zh.po:
	big refresh-po stuff

	* rc.d/init.d/halt, sysconfig/network-scripts/ifup-aliases:
	fix more typos

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

	* rc.d/rc.sysinit:
	don't try and set up LVM if /etc/lvmtab doesn't exist

2001-01-24  I18N Processor  <i18n@redhat.com>

	* po/no.po: Auto-update by kmaraas@online.no

2001-01-23  I18N Processor  <i18n@redhat.com>

	* po/no.po: Auto-update by kmaraas@online.no

2001-01-23  Bill Nottingham  <notting@redhat.com>

	* ChangeLog: 5.57-1

	* rc.d/init.d/halt:
	read /etc/sysconfig/clock on syncing hwclock

	* rc.d/init.d/functions, rc.d/init.d/network, rc.d/rc.sysinit:
	fix up i18n stuff so it works
	deal with new location of console-tools stuff
	fix network up/down logic

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/rc.sysinit:
	fix utter brokenness. Must be more careful with sed

	* po/xgettext_sh.py, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/random, rc.d/rc, rc.d/rc.sysinit:
	tag action, runcmd, etc. lines as well

	* po/Makefile, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/random, rc.d/init.d/rawdevices, rc.d/init.d/single, rc.d/rc, rc.d/rc.sysinit, service, setsysfont, src/testdinit, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-aliases, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl, initscripts.spec:
	change i18n stuff around; don't call gettext explicitly, just do echo $"some string"

2001-01-23  I18N Processor  <i18n@redhat.com>

	* po/gl.po: Auto-update by jba@pobox.com

2001-01-23  Matt Wilson  <msw@redhat.com>

	* initscripts.spec:
	fixed typo in init.d/network - missing | in pipeline

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

2001-01-23  I18N Processor  <i18n@redhat.com>

	* po/tr.po:
	Auto-update by e077245@metu.edu.tr

2001-01-22  Bill Nottingham  <notting@redhat.com>

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	fix kudzu .po here

	* ChangeLog, initscripts.spec:
	5.55-1

	* rc.d/rc.sysinit:
	do LVM setup through normal initscripts mechanisms

2001-01-21  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

	* po/gl.po: Auto-update by jba@pobox.com

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

	* rc.d/init.d/network:
	ignore backup files in /etc/sysconfig/network-scripts

2001-01-21  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by kenneth@gnu.org

	* po/uk.po:
	Auto-update by leon@isd.donin.com

	* po/pt.po:
	Auto-update by pmmm@rnl.ist.utl.pt

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

	* rc.d/init.d/network:
	only load the module if there is one to load.

	* rc.d/init.d/network:
	only load modules for ethernet devices

2001-01-21  I18N Processor  <i18n@redhat.com>

	* po/da.po: Auto-update by kenneth@gnu.org

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

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	mars.pot

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/Makefile, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	cron pot file

2001-01-18  Bill Nottingham  <notting@redhat.com>

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/Makefile, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	samba pot file

2001-01-18  Trond Eivind Glomsrod  <teg@redhat.com>

	* po/no.po:
	La inn noen norske oversettelser....

2001-01-18  Nalin Dahyabhai  <nalin@redhat.com>

	* po/initscripts.pot:
	add strings for linuxconf and autofs

2001-01-18  Bill Nottingham  <notting@redhat.com>

	* po/initscripts.pot: kudzu pot

2001-01-18  I18N Processor  <i18n@redhat.com>

	* po/pt.po:
	Auto-update by pmmm@rnl.ist.utl.pt

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

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	postgresql pot

	* rc.d/rc.sysinit:
	turn on accounting at bootup

	* po/xgettext_sh.py: fix invocation

	* po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po:
	pvmd, xinetd; refresh-po

	* rc.d/init.d/network, rc.d/rc:
	ask for startup of each network devie in CONFIRM mode. Patch from <rasmusin@wpi.edu>

	* po/cs.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	add ipchains pot

	* po/cs.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	potfile for gpm

2001-01-17  I18N Processor  <i18n@redhat.com>

	* po/da.po, po/gl.po:
	Conflicts.

2001-01-16  Bill Nottingham  <notting@redhat.com>

	* po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po, po/cs.po, po/da.po:
	more pot files

2001-01-16  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

2001-01-15  Bill Nottingham  <notting@redhat.com>
	* initscripts.spec, sysconfig.txt, sysctl.conf:
	ip_always_defrag goes *poof*

	* po/cs.po, po/da.po, po/de.po, po/es.po, po/eu_ES.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/initscripts.pot, po/is.po, po/it.po, po/ja.po, po/ko.po, po/no.po, po/pl.po, po/pt_BR.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.GB2312.po, po/zh.po:
	make refresh-po stuff

	* po/initscripts.pot, rc.d/init.d/network:
	fix typo (#24056)

2001-01-15  I18N Processor  <i18n@redhat.com>

	* po/sv.po:
	Auto-update by menthos@menthos.com

2001-01-15  Bill Nottingham  <notting@redhat.com>

	* po/initscripts.pot:
	commit: am-utils, apache, syslog

2001-01-14  I18N Processor  <i18n@redhat.com>

	* po/gl.po: Auto-update by jba@pobox.com

	* po/zh.po, po/zh_CN.GB2312.po, po/wa.po, po/uk.po, po/tr.po, po/sv.po, po/sr.po, po/sl.po, po/sk.po, po/ru.po, po/ro.po, po/pt.po, po/pl.po, po/no.po, po/ko.po, po/ja.po, po/it.po, po/is.po, po/id.po, po/hu.po, po/gl.po, po/fr.po, po/fi.po, po/eu_ES.po, po/de.po, po/da.po, po/cs.po:
	New file

	* po/es.po, po/Makefile, po/pt_BR.po:
	i18bot refresh.

2001-01-11  Bill Nottingham  <notting@redhat.com>

	* po/initscripts.pot: add squid

	* initscripts.spec: %langify

	* ChangeLog, initscripts.spec:
	5.54

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

	* initscripts.spec, rc.d/rc.sysinit:
	conflict with ypbind < 1.6-12, since we don't set the NIS domain name anymore

2001-01-02  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec, Makefile, po/es.po, po/initscripts.pot, po/Makefile, po/pt_BR.po, po/xgettext_sh, po/xgettext_sh.py, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/random, rc.d/init.d/rawdevices, rc.d/init.d/single, rc.d/rc, rc.d/rc.sysinit, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl:
	Big i18n commit. From Conectiva, originally.

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

	* sysconfig/network-scripts/ifup-post:
	fix scoping isuse (#22547)

	* ppp/ip-up:
	only run ifup-post if the ifcfg file is there (#19741)

	* ppp/ip-down:
	export a $PATH here too (#22784)

	* sysconfig/network-scripts/ifdown:
	retcode wasn't used. initialize it.

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	toss out spurious errors from iwconfig

2000-12-20  Erik Troan  <ewt@redhat.com>

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	added wireless support

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

	* sysconfig/network-scripts/ifup: fix typo

	* rc.d/init.d/halt:
	sync hardware clock to system time on halt (#21187)

	* rc.d/rc.sysinit:
	use modprobe -c to handle possible conditional modules.conf constructs (#21283)

	* sysconfig/network-scripts/ifup:
	don't try and run pump if it's not there

	* sysconfig/network-scripts/ifup, sysconfig.txt:
	honor PEERDNS=no for pump and dhcpcd too (#18619)

	* rc.d/init.d/netfs, rc.d/rc.sysinit:
	don't exclude proc when you're doing mount -a -t nonfs...

	* rc.d/rc.sysinit:
	only load modules for which persistent DMA buffers are necessary

	* rc.d/rc.sysinit:
	don't remount r/w if it is r/w (#12097)

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/network-functions, sysconfig.txt:
	fix ARP handling, allow for setting promiscuous or all-multicast mode

	* src/ppp-watch.c, sysconfig.txt:
	add MAXFAIL patch for maximum number of failures (#10639)

	* rc.d/init.d/network, sysconfig/network-scripts/ifdown-aliases, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-post:
	fix more ifconfig greps (patch from Conectiva)

	* rc.d/init.d/network, sysconfig/network-scripts/network-functions:
	oops, put the LANG=C in the right place

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

	* rc.d/rc.sysinit:
	don't try and load fonts and keymaps on a serial console. Duh.

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

	* lang.csh:
	specify full path to /sbin/consoletype (from milan.kerslager@spsselib.hiedu.cz)

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

	* initscripts.spec, rc.d/rc.sysinit:
	From: Karsten Hopp (karsten@redhat.de)
	 - changed hdparm section in rc.sysinit to allow different
	   parameters for each disk (if needed) by copying
	   /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)

	* initscripts.spec: add ypbind conflict

	* ChangeLog, initscripts.spec:
	5.50-2

	* rc.d/rc.sysinit: don't set NIS domain name

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

	* initscripts.spec: * bumped version number

2000-10-31  Than Ngo  <than@redhat.com>

	* ChangeLog, initscripts.spec, sysconfig/network-scripts/network-functions:
	fix the adding default route if GATEWAY" = "0.0.0.0

2000-10-10  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, src/usernetctl.c:
	make usernetctl just fall-through if getuid() == 0

	* initscripts.spec, Makefile:
	fix top-level makefile install target

	* initscripts.spec: add bug ID

	* initscripts.spec, sysconfig/network-scripts/ifup-routes:
	handle "gw x.x.x.x" as the last pair of flags in ifup-routes

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

	* rc.d/init.d/network, sysconfig/network-scripts/network-functions:
	fix the grep for 'UP' so it doesn't report strange results on german PPP devices

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

	* initscripts.spec:
	up util-linux requirement to 2.10 (#18004)

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

	* rc.d/init.d/halt:
	don't turn off raid on shutdown ; the kernel will do it

2000-09-27  Tim Waugh  <twaugh@redhat.com>

	* prefdm: eat messages from display managers

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

	* sysvinitfiles: update documentation

	* rc.d/init.d/netfs: fix minor logical error

2000-08-22  Than Ngo  <than@redhat.com>

	* ChangeLog, initscripts.spec, prefdm:
	* Add KDE2 support

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

	* initscripts.spec, prefdm:
	if  isn't there, just run whatever display manager happens to be installed

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

	* rc.d/init.d/functions: add usleep after kill -9

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

	* initscripts.spec: bump rev to 5.46

	* sysconfig/network-scripts/ifdown-ppp:
	don't end up calling ifdown-post twice on ppp connections

	* rc.d/rc.sysinit:
	don't load usb drivers if they're compiled in

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

	* rc.d/rc.sysinit:
	clean up /boot/kernel.h generation some

2000-08-15  Nalin Dahyabhai  <nalin@redhat.com>

	* sysconfig/network-scripts/ifdown:
	fix syntax error in ifdown

	* initscripts.spec, src/netreport.c:
	be more careful about netreport files

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

	* rc.d/init.d/functions:
	don't use head, it's in /usr

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

	* sysconfig/network-scripts/ifdown:
	support killing dhcpcd as well as starting it

	* rc.d/rc.sysinit:
	do case-insensitve greps of /proc/cmdline

2000-08-12  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, sysconfig.txt:
	move documentation for the DEMAND and IDLETIMEOUT values to the right section of sysconfig.txt

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

	* src/initlog.c:
	don't do silly access checks on the root partition; instead, just try connecting to the syslog socket if it's there...

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

	* ChangeLog, initscripts.spec:
	bump to 5.44

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

	* rc.d/rc.sysinit: load agpgart if necessary

2000-08-07  Jakub Jelinek  <jakub@redhat.com>

	* initscripts.spec: 5.43

	* rc.d/rc.sysinit:
	Put kernel architecture into /boot/kernel.h

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

	* rc.d/rc.sysinit:
	don't set hostname if it's already set (NFS root)

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

	* initscripts.spec, sysconfig/network-scripts/ifup-ppp:
	change updetach back to nodetach

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

	* rc.d/rc.sysinit, sysconfig/network-scripts/network-functions, sysconfig.txt:
	remove support for /etc/HOSTNAME

	* initscripts.spec: bump rev

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

	* initscripts.spec, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp:
	fix demand-dialing for PPP

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

	* src/ppp-watch.c, sysconfig.txt:
	add RETRYCONNECT option for ppp-watch

	* rc.d/rc: fix minor logic error (#11399)

	* initscripts.spec, rc.d/rc.sysinit:
	remove console-tools requirement

	* sysconfig/network-scripts/ifup-routes:
	fix syntax error in ifup-routes

	* rc.d/init.d/netfs:
	start portmap if it's not running for nfs mounts

	* rc.d/rc.sysinit:
	cosmetic fixes for keytable loading

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

	* initscripts.spec, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp:
	fix demand-dialing for PPP

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

	* src/ppp-watch.c, sysconfig.txt:
	add RETRYCONNECT option for ppp-watch

	* rc.d/rc: fix minor logic error (#11399)

	* initscripts.spec, rc.d/rc.sysinit:
	remove console-tools requirement

	* sysconfig/network-scripts/ifup-routes:
	fix syntax error in ifup-routes

	* rc.d/init.d/netfs:
	start portmap if it's not running for nfs mounts

	* rc.d/rc.sysinit:
	cosmetic fixes for keytable loading

	* rc.d/rc.sysinit:
	don't probe for USB controllers here; deal with what kudzu gives us

	* rc.d/init.d/network:
	fix error message on bringing down non-existent interfaces. Also, more colons.

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

	* rc.d/rc, rc.d/rc.sysinit:
	yet more colons. Also, fix the nousb grep

2000-08-03  Nalin Dahyabhai  <nalin@redhat.com>

	* src/shvar.c, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ppp:
	be more specific about quoting variables

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

	* sysconfig/network-scripts/ifup:
	um, you can't have a hyphen in a shell variable

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

	* rc.d/init.d/halt, rc.d/init.d/netfs, rc.d/init.d/random:
	colons. Lots of colons. More colons than most gastrointestinal clinics.

	* rc.d/rc.sysinit: use usb-uhci, not uhci

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

	* rc.d/rc.sysinit:
	don't fsck an NFS root filesystem

	* rc.d/rc.sysinit: fix fastboot

	* rc.d/init.d/netfs:
	don't unmount / in netfs

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

	* initscripts.spec:
	the stuff in rc.d/init.d should *not* be missingok

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

	* ChangeLog: *** empty log message ***

	* initscripts.spec: bump to 5.39

	* rc.d/init.d/halt: fix unclean shutdown

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

	* initscripts.spec, rc.d/rc.sysinit:
	s/nill/null/g

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

	* lang.csh: fix test

	* initscripts.spec: bump to 5.37

	* ChangeLog: *** empty log message ***

	* rc.d/init.d/halt:
	unmount usb filesystem on shutdown

	* sysconfig/network-scripts/ifup:
	run an ifup-pre-local script if it exists

	* Makefile, initscripts.spec:
	tweaks

	* rawdevices, sysconfig/rawdevices:
	that really needs to move

	* initscripts.spec, rawdevices, rc.d/init.d/rawdevices, sysconfig.txt:
	add raw device support from karsten

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

	* rc.d/rc.sysinit:
	fix usb ugliness on non-PCI machines

	* ChangeLog, initscripts.spec, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/random, rc.d/init.d/single, rc.d/rc, rc.d/rc.sysinit, service, src/Makefile, src/testdinit, sysvinitfiles:
	revert

2000-07-24  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/single, rc.d/rc, rc.d/rc.sysinit, service, src/Makefile, src/testdinit, sysvinitfiles, ChangeLog, initscripts.spec:
	/etc/init.d -> /etc/rc.d/init.d

2000-07-20  Trond Eivind Glomsrod  <teg@redhat.com>

	* rc.d/init.d/random: Use /etc/rc.d/init.d

2000-07-18  Trond Eivind Glomsrod  <teg@redhat.com>

	* rc.d/rc.sysinit, initscripts.spec:
	- add "nousb" command line parameter
	- fix some warnings when mounting /proc/bus/usb

2000-07-15  Matt Wilson  <msw@redhat.com>

	* initscripts.spec: more cleanups

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

	* initscripts.spec: add rc.local symlink

2000-07-15  Matt Wilson  <msw@redhat.com>

	* initscripts.spec, inittab:
	move things back

	* Makefile, initscripts.spec:
	hack hack, move things back

	* initscripts.spec:
	no more pretransaction stuff

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

	* ChangeLog, initscripts.spec:
	bump revision to 5.32

	* rc.d/rc.sysinit: fix == in shell

	* initscripts.spec:
	tweak %pretrans some more

	* rc.d/init.d/functions:
	chuck ulimit errors to /dev/null

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

	* ppp/ip-up:
	move ip-up.local to after ifup-post, so that it has proper name resolution. Also, kill unused hearbeat stuff.

2000-07-11  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	bump release to 5.31, implement rc.d disappearance with RPM Magic

	* sysconfig.txt:
	fix some of the harddisks documentation

2000-07-10  Trond Eivind Glomsrod  <teg@redhat.com>

	* rc.d/rc.sysinit:
	Don't try to initialize disabled (IRQwise) USB controller.

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

	* sysconfig.txt:
	add some info about /etc/sysconfig/harddisks

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

	* initscripts.spec:
	don't include rc.d/* in filelist

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

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

	* ChangeLog, initscripts.spec:
	release 5.29

	* initscripts.spec:
	check to see if rc.d exists

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

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

	* rc.d/rc.sysinit:
	move usb initialization up (for keyboards)

2000-07-03  Bill Nottingham  <notting@redhat.com>

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

	* inittab: revert

	* ChangeLog: *** empty log message ***

2000-07-03  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* initscripts.spec:
	Increase version number, add changelog

	* inittab: Get rid of /sbin/update

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

	* initscripts.spec, sysconfig/network-scripts/ifup-ppp:
	fix demand-dialing, now that I can test it

2000-07-02  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec: dont use tail

	* rc.d/rc.sysinit: Dont use tail

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

	* rc.d/rc.sysinit:
	allow 'fastboot' on kernel commandline to skip fsck

	* src/getkey.c:
	add support for a timeout argument

2000-06-29  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec: Add USB support

	* rc.d/rc.sysinit:
	Added USB initializing, including drivers for mouse and keyboards (if needeed)

2000-06-27  Trond Eivind Glomsrod  <teg@redhat.com>

	* initscripts.spec: 5.22

	* rc.d/rc.sysinit:
	Added support for EIDE disk optimization via /etc/sysconfig/hardddisks

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

	* ChangeLog, initscripts.spec, rc.d/rc.sysinit:
	*** empty log message ***

	* initscripts.spec: tweak %pre

2000-06-21  Preston Brown  <pbrown@redhat.com>

	* initscripts.spec:
	adjtime file is noreplace.

2000-06-16  Nalin Dahyabhai  <nalin@redhat.com>

	* initscripts.spec, sysconfig.txt, sysconfig/network-scripts/ifup-ppp:
	sysconfig/network-scripts/ifup-ppp: add hooks for demand-dialing PPP
	rc.d/init.d/functions: use basename of process when looking for its PID file

	* rc.d/init.d/functions:
	use the process's basename when looking for pid files

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

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

	* Makefile, initscripts.spec, inittab, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/netfs, rc.d/init.d/network, rc.d/init.d/random, rc.d/init.d/single, rc.d/rc, rc.d/rc.sysinit, service, src/Makefile, src/testdinit, sys-unconfig.8, sysvinitfiles:
	/etc/rc.d/init.d -> /etc/init.d. Wheeeeee.

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

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

	* rc.d/rc.sysinit:
	switch to /dev/shm from /var/shm

2000-06-12  Nalin Dahyabhai  <nalin@redhat.com>

	* rc.d/rc.sysinit:
	change a -A to a -a in a test

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

	* Makefile: fix bash-1 ism

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

	* ChangeLog: *** empty log message ***

	* rc.d/init.d/functions:
	set core dump soft limit, not hard limit

2000-06-08  Preston Brown  <pbrown@redhat.com>

	* initscripts.spec: updated.

	* rc.d/rc.sysinit:
	use depmod -A, not depmod -a.

	* sysconfig/network-scripts/ifup: typo.

	* initscripts.spec: updated.

	* sysconfig/network-scripts/ifup:
	use dhcpcd if pump fails.

2000-06-04  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* initscripts.spec, prefdm:
	autologin support

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

	* initscripts.spec: typo

	* Makefile, initscripts.spec, src/Makefile:
	mandir stuff

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

	* ChangeLog, initscripts.spec, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases:
	don't add host routes for local interfaces

	* rc.d/rc.sysinit:
	conf.modules -> modules.conf

	* ChangeLog: *** empty log message ***

	* sysconfig/network-scripts/ifup-aliases:
	don't add duplicate default routes for aliases

	* sysconfig/network-scripts/ifdown:
	typo; wait only 5 seconds, not 50

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

	* rc.d/init.d/halt:
	remove read-only root remount; it's unnecessary

	* rc.d/init.d/functions:
	use pidofproc ; it does its own basename (#11762)

	* sysconfig.txt: make description clearer

	* rc.d/init.d/network:
	fix check for strange linuxconf static-routes

2000-05-22  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: tweak procps requirement

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

	* initscripts.spec:
	remove ia64 modutils non-requirement

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

	* initscripts.spec:
	bump version for new release

	* rc.d/rc.sysinit: fix bug #11267

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

	* ChangeLog: *** empty log message ***

	* initscripts.spec:
	don't require modutils on ia64

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

	* rc.d/rc.sysinit:
	fix old compatibility cruft

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

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

	* Makefile, initscripts.spec, src/Makefile:
	fixes to get the prototypes right

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

	* ChangeLog: *** empty log message ***

	* src/initlog.conf:
	ignore 'Setting filetype' messages from e2fsck in initlog

2000-04-21  Nalin Dahyabhai  <nalin@redhat.com>

	* src/shvar.c:
	update from the rp3 CVS repository

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

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

	* rc.d/init.d/network:
	remove extraneous message

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

	* rc.d/init.d/halt, rc.d/rc.sysinit:
	use /poweroff and /halt to determine whether powering off

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

	* lang.csh:
	use /bin/echo for consistent behavior

	* lang.csh:
	fix case statement ; apparently tcsh likes fd 15??

2000-04-18  Nalin Dahyabhai  <nalin@redhat.com>

	* src/shvar.c, src/shvar.h:
	constipated (via rp3)

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

	* ChangeLog: *** empty log message ***

	* rc.d/init.d/network: that's better

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

	* rc.d/init.d/network: that check was bogus

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

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

	* sysconfig/network-scripts/ifup-post:
	check for RESOLV_MODS before testing

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

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

	* rc.d/init.d/network:
	don't bring up commented out 'ONBOOT' interfaces ; don't shut down inactive interfaces

2000-04-04  Than Ngo  <than@redhat.com>

	* sysconfig/network-scripts/ifdown-post:
	remove /etc/resolv.conf.save after the ippp connection down

	* sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post, ChangeLog, initscripts.spec:
	fix overwrite problem of resolv.conf on ippp/ppp/slip connections

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

	* ChangeLog: *** empty log message ***

	* src/ppp-watch.c:
	don't delete other ppp-watch processes's pidfiles

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

	* rc.d/init.d/functions:
	Blarg. I can't type.

	* rc.d/rc.sysinit:
	explicitly specify --localtime to hwclock

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

	* lang.csh, lang.sh:
	source /home/devel/notting/.i18n as well as /etc/sysconfig/i18n (idea from <ivanyi@internet.sk>)

	* service:
	add full restart (stop/start) <ivanyi@internet.sk>

	* sysconfig/network-scripts/ifup:
	don't add unnecessary host routes

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

	* rc.d/init.d/network:
	blarg. linuxconf support broken again. Can we kill this yet?

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

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

	* ChangeLog, initscripts.spec:
	remove compatiblity chkconfig links

	* rc.d/init.d/network:
	automatically unmount network fs when stopping network

2000-03-21  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* rc.d/rc.sysinit, initscripts.spec:
	Handle /var/shm

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

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

	* src/netreport.c:
	show usage on bogus arguments

	* rc.d/init.d/functions:
	remove calls to ps. This should speed things up on slower machines

	* sysconfig.txt, sysconfig/network-scripts/ifup:
	allow for setting of MTU for a device

	* sysconfig/network-scripts/ifup-post:
	set umask before writing /etc/resolv.conf

	* sysconfig/network-scripts/ifup:
	honor NEEDHOSTNAME flag for pump as well

	* src/ppp-watch.c:
	open /dev/null for child process instead of closing fds 0,1,2

2000-03-17  Bernhard "Bero" Rosenkränzer  <brosenkr@redhat.com>

	* initscripts.spec: 5.01

	* rc.d/rc.sysinit:
	Launch devfsd if required and installed

2000-03-10  Nalin Dahyabhai  <nalin@redhat.com>

	* ppp/ip-down, ppp/ip-up:
	use $@ intead of $* to fix bug #9697

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

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

	* rc.d/init.d/halt, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/network-functions:
	check that a device is up before bringing it down

2000-03-08  Cristian Gafton  <gafton@redhat.com>

	* Makefile: look at Version:

	* initscripts.spec, sysconfig.txt:
	documentation update from jakub

2000-03-07  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec, sysctl.conf, sysctl.conf.sparc:
	*** empty log message ***

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

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

	* 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-28  Bill Nottingham  <notting@redhat.com>

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

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

	* sysconfig/network-scripts/ifup-hdlc:
	never mind

	* sysconfig/network-scripts/ifup-hdlc:
	add hdlc script from hugh@toad.com

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  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/network: eh, nevermind

	* rc.d/init.d/network: take out ippp removal

	* ChangeLog: *** empty log message ***

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-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, ChangeLog, initscripts.spec:
	*** empty log message ***

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

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

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, initscripts.spec:
	*** empty log message ***

	* 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  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, rc.d/rc.sysinit:
	don't run mixer if module doesn't load

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>

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

	* 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

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

	* 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

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

	* 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-01-31  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: *** empty log message ***

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

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

	* ChangeLog, initscripts.spec, rc.d/rc.sysinit, src/ipcalc.1, src/shvar.c, src/shvar.h, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/network-functions:
	* 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>

	* ChangeLog, rc.d/init.d/network:
	*** empty log message ***

	* sysconfig/network-scripts/ifup: revert

	* rc.d/init.d/network, sysconfig/network-scripts/ifup:
	bring down *all* interfaces on network stop

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

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

	* 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>

	* ChangeLog: *** empty log message ***

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

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

	* ChangeLog: *** empty log message ***

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

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

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

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

	* rc.d/init.d/functions:
	put ps|grep|awk back in until we think of something better (pidof -x ain't it)

	* 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>

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

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

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

	* ChangeLog: *** empty log message ***

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

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

	* 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>

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

	* src/Makefile: link popt statically

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

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

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

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

	* ChangeLog: *** empty log message ***

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  Erik Troan  <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-29  Bill Nottingham  <notting@redhat.com>

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

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

	* ChangeLog: *** empty log message ***

	* 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:
	*** empty log message ***

	* initscripts.spec: move buildroot

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

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  Bill Nottingham  <notting@redhat.com>

	* ChangeLog: *** empty log message ***

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>

	* ChangeLog: *** empty log message ***

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

	* ChangeLog, rc.d/rc.sysinit:
	*** empty log message ***

	* initscripts.spec:
	fix modutils dependencies

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

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

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

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

	* ChangeLog: *** empty log message ***

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

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

	* 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

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

	* 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>

	* ChangeLog, initscripts.spec, sysconfig/network-scripts/ifup-aliases:
	*** empty log message ***

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

	* initscripts.spec: revert

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

	* 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.8:
	*** empty log message ***

	* 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>

	* ChangeLog: *** empty log message ***

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

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

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

	* 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.csh

	* 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>

	* ChangeLog: *** empty log message ***

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

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

	* ChangeLog, initscripts.spec, rc.d/rc.sysinit:
	*** empty log message ***

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

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

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

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

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

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

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

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, ChangeLog:
	*** empty log message ***

	* initscripts.spec:
	explicitly specify some permissions

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

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

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>

	* ChangeLog: *** empty log message ***

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

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

	* 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>

	* ChangeLog: *** empty log message ***

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

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

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

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

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

	* ChangeLog: *** empty log message ***

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

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

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

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

	* ChangeLog: *** empty log message ***

	* src/process.c: REVERT. It breaks things.

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

	* src/process.c, ChangeLog, initscripts.spec:
	*** empty log message ***

	* src/process.c:
	some fixes from Tymm Twillman (in theory, we leak less now)

	* 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-16  Bill Nottingham  <notting@redhat.com>

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

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>

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

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

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

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

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

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

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

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

	* initscripts.spec, rc.d/rc.sysinit, ChangeLog:
	*** empty log message ***

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

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

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/Makefile, src/loglevel.c:
	duh. can we say, duplicated functionality?

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

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

	* rc.d/init.d/killall: save for later

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

	* rc.d/init.d/killall:
	warn if there's a service we can't kill.

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>

	* ChangeLog: *** empty log message ***

	* lang.csh: typo

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

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

	* 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>

	* initscripts.spec, ChangeLog, rc.d/init.d/network, sysconfig.txt:
	*** empty log message ***

	* 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>

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

	* 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

	* rc.d/rc, initscripts.spec, ChangeLog, rc.d/init.d/functions:
	*** empty log message ***

	* 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

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

	* 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>

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

	* 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>

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

	* 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

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

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

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

1999-09-13  Michael K. Johnson  <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>

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

	* 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  Michael K. Johnson  <johnsonm@redhat.com>

	* src/ppp-watch.c: report failure

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

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

	* 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>

	* ChangeLog: *** empty log message ***

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

	* rc.d/rc.sysinit, sys-unconfig, ChangeLog, Makefile, initscripts.spec:
	*** empty log message ***

	* 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.txt, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-ppp:
	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>

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

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

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

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

	* 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>

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

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

	* rc.d/rc.sysinit: typo

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

	* src/Makefile, src/getkey.c, 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>

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

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

	* ChangeLog: *** empty log message ***

	* initscripts.spec: make utmp group 22

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

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

	* 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

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

	* rc.d/rc.sysinit: ditto

	* 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>

	* ChangeLog: *** empty log message ***

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

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

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

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

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

	* 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  Bill Nottingham  <notting@redhat.com>

	* ChangeLog, initscripts.spec:
	bump rev

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.

	* initscripts.spec, rc.d/init.d/functions:
	*** empty log message ***

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

	* ChangeLog, initscripts.spec, rc.d/rc.sysinit:
	*** empty log message ***

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

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

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

	* 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>

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

	* 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>

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

	* 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>

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

	* 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>

	* ChangeLog: *** empty log message ***

	* sysconfig.txt:
	document keytable stuff a little more

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

	* Makefile: *** empty log message ***

	* prefdm: fix typo

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

	* 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, Makefile, ChangeLog:
	*** empty log message ***

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

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

	* rc.d/rc.sysinit: remove /etc/HOSTNAME

	* rc.d/rc.sysinit:
	don't modify /etc/HOSTNAME

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>

	* ChangeLog, Makefile, initscripts.spec, rc.d/init.d/functions:
	*** empty log message ***

	* 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

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

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

	* sysconfig/network-scripts/ifup-aliases:
	*** empty log message ***

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

	* src/initlog.c: *** empty log message ***

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-09  Cristian Gafton  <gafton@redhat.com>

	* ChangeLog, rc.d/init.d/netfs:
	adjust run level times

	* ChangeLog, Makefile:
	remove *~ on make clean

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

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

	* initscripts.spec:
	fix timeconfig non-dependency

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

	* 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-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, ChangeLog:
	*** empty log message ***

	* 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>

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

	* 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>

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

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

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

	* rc.d/rc.sysinit:
	take out added 'local keymap'

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>

	* rc.d/rc.sysinit, src/process.c, ChangeLog:
	*** empty log message ***

	* ChangeLog, sysconfig/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>

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

	* 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

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

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

	* ChangeLog: *** empty log message ***

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

	* initscripts.spec, ChangeLog:
	bump rev

	* 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

	* ChangeLog, initscripts.spec, rc.d/rc.sysinit:
	*** empty log message ***

	* 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>

	* ChangeLog: *** empty log message ***

	* 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

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

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

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

	* 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>

	* ChangeLog: *** empty log message ***

	* rc.d/rc.sysinit: fix typos

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

	* 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>

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

	* 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, ChangeLog, initscripts.spec:
	*** empty log message ***

	* lang.sh: inputrc is always on

	* ChangeLog: *** empty log message ***

	* 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>

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

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

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

	* rc.d/rc.sysinit: typo

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

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

	* inittab: xdm returns to runlevel 5

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

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

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

	* ChangeLog: *** empty log message ***

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

	* rc.d/init.d/single:
	for - done, not for - fi

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

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

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

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

	* 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>

	* ChangeLog: *** empty log message ***

	* 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>

	* ChangeLog, initscripts.spec, src/initlog.c:
	*** empty log message ***

	* 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>

	* initscripts.spec, rc.d/init.d/functions, ChangeLog:
	*** empty log message ***

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

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

	* ChangeLog, initscripts.spec:
	changes to %post for wtmp/utmp

	* 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>

	* ChangeLog: *** empty log message ***

	* inittab: take out --noclear

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

	* 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

	* setsysfont: consolechars is in /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>

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

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

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

	* inittab: add --noclear for tty1

	* rc.d/rc.sysinit:
	don't zero /var/run/utmpx, remove it...

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

	* 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&smbs 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

	* ChangeLog: *** empty log message ***

	* 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-27  Bill Nottingham  <notting@redhat.com>

	* ChangeLog: *** empty log message ***

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

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

	* 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>

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

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

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

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

	* 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)

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

	* 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

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

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

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

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

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

	* rc.d/init.d/functions:
	fix killproc logic (only one success/failure per call)

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

	* initscripts.spec: bump rev to 3.96

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

	* src/minilogd.c: *** empty log message ***

	* 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

	* initscripts.spec: spec update

	* ChangeLog, initscripts.spec:
	bump rev

	* 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 K. 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

	* ChangeLog, initscripts.spec:
	fixes. :)

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

	* 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

	* initscripts.spec: bump ver

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>

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

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

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

	* sysconfig/network-scripts/ifup:
	updated for pump

	* ChangeLog, initscripts.spec:
	pump stuff

	* sysconfig/network-scripts/ifdhcpc-done:
	outdated by pump

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

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

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

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

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

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

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

	* ChangeLog: *** empty log message ***

	* rc.d/init.d/functions: fix killproc

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

	* rc.d/rc.sysinit: i can't type

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

	* Makefile, ChangeLog:
	*** empty log message ***

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

	* sysconfig.txt, initscripts.spec, ChangeLog, rc.d/init.d/functions, sysconfig/init:
	*** empty log message ***

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

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

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

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

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

	* initscripts.spec: s/d changes

	* 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>

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

	* ChangeLog: update changelog.

	* initscripts.spec: bump rev

	* 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-13  Bill Nottingham  <notting@redhat.com>

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

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

	* ChangeLog: update changelog...

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

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

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

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

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

	* 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:
	move text more to the right

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

	* rc.d/init.d/functions:
	move [ OK ] boxes to the left

	* 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  Bill Nottingham  <notting@redhat.com>

	* src/Makefile: *** empty log message ***

	* ChangeLog, rc.d/init.d/halt:
	rcs2log > ChangeLog

	* 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; wait a little longer for kill -TERM

	* initscripts.spec, rc.d/rc.sysinit, setsysfont, sysconfig/network-scripts/ifup-ppp:
	random fixes from bugzilla: setsysfont only if font defined; do hwclock
	--adjust; fix /forcefsck

	* Makefile, initscripts.spec, rc.d/init.d/functions, rc.d/init.d/halt, 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. do "halt -p", "umount -f" in shutdown. use %defattr in
	specfile... um, I think that's it.

1999-01-25  Jeff Johnson  <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-09  Erik Troan  <ewt@redhat.com>

	* src/.cvsignore: *** empty log message ***

1998-12-06  Jeff Johnson  <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  Preston Brown  <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  Michael K. Johnson  <johnsonm@redhat.com>

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

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

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

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

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

1998-10-15  Erik Troan  <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  Cristian Gafton  <gafton@redhat.com>

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

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

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

1998-10-06  Cristian 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  Cristian Gafton  <gafton@redhat.com>

	* initscripts.spec: require: e2fsprogs

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

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

1998-09-25  Cristian 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  Michael K. Johnson  <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  Michael K. Johnson  <johnsonm@redhat.com>

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

1998-09-16  Jeff Johnson  <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  Jeff Johnson  <jbj@redhat.com>

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

1998-08-17  Erik Troan  <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  Jeff Johnson  <jbj@redhat.com>

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

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

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

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

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

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

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

1998-07-07  Michael K. Johnson  <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  Jeff Johnson  <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  Jeff Johnson  <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  Erik Troan  <ewt@redhat.com>

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

1998-07-01  Jeff Johnson  <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  Jeff Johnson  <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  Erik Troan  <ewt@redhat.com>

	* initscripts.spec: version 3.66

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

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

	* initscripts.spec: version 3.65

1998-06-01  Erik Troan  <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  Erik Troan  <ewt@redhat.com>

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

1998-05-08  Donnie Barnes  <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  Donnie Barnes  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: added missing files

	* initscripts.spec: new release

1998-05-03  Michael K. Johnson  <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  Michael K. Johnson  <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  Erik Troan  <ewt@redhat.com>

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

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

	* 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  Donnie Barnes  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* rc.d/rc: info for linuxconf

1998-04-21  Michael K. Johnson  <johnsonm@redhat.com>

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

1998-04-20  Michael K. Johnson  <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  Erik Troan  <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  Michael K. Johnson  <johnsonm@redhat.com>

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

1998-04-05  Erik Troan  <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  Erik Troan  <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  Erik Troan  <ewt@redhat.com>

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

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

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

	* 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  Michael K. Johnson  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig.txt: more detail on ifcfg files

	* sysconfig.txt: first rev to Jacques

1998-03-10  Erik Troan  <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  Erik Troan  <ewt@redhat.com>

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

	* 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  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig.txt:
	Initial revision of sysconfig hierarchy description

1998-02-14  Michael K. Johnson  <johnsonm@redhat.com>

	* sysvinitfiles: Took out autoreload tag.

1998-02-13  Michael K. Johnson  <johnsonm@redhat.com>

	* sysvinitfiles: per-config file autoreload

1998-02-12  Michael K. Johnson  <johnsonm@redhat.com>

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

1998-02-10  Michael K. Johnson  <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  Michael K. Johnson  <johnsonm@redhat.com>

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

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

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

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

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

1998-01-12  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: /sbin/

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

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

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

	* 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  Erik Troan  <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  Erik Troan  <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  Erik Troan  <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  Michael K. Johnson  <johnsonm@redhat.com>

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

	* initscripts.spec: release 3.26

1997-11-20  Michael K. Johnson  <johnsonm@redhat.com>

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

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

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

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

1997-11-07  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: new version

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

1997-11-06  Michael K. Johnson  <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  Erik Troan  <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  Erik Troan  <ewt@redhat.com>

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

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

	* initscripts.spec: make archive

1997-10-28  Donnie Barnes  <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  Erik Troan  <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  Donnie Barnes  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: New version.

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

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

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

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

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

1997-10-15  Michael K. Johnson  <johnsonm@redhat.com>

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

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

1997-10-14  Michael K. Johnson  <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  Erik Troan  <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  Erik Troan  <ewt@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	fixed rc.sysinit for hwclock

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

	* rc.d/rc.sysinit:
	Only check scsi if it exists.

1997-10-09  Erik Troan  <ewt@redhat.com>

	* initscripts.spec, rc.d/init.d/functions:
	added ulimit -c 0 to daemon function

1997-10-08  Michael K. Johnson  <johnsonm@redhat.com>

	* initscripts.spec: new version

	* initscripts.spec: prereq

1997-10-08  Donnie Barnes  <djb@redhat.com>

	* initscripts.spec: added chkconfig support

1997-10-06  Erik Troan  <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  Michael K. Johnson  <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  Michael K. Johnson  <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  Michael K. Johnson  <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  Michael K. Johnson  <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  Donnie Barnes  <djb@redhat.com>

	* initscripts-3.13.spec:
	added Requires mktemp and changelog

	* sysconfig/network-scripts/ifup:
	added mktemp support

1997-09-23  Michael K. Johnson  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* src/usernetctl.c:
	Fixed allocation bug Erik found, plus a few stylistic points.

1997-09-18  Michael K. Johnson  <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  Donnie Barnes  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	Don't print an error if no aliases exist.

1997-09-16  Michael K. Johnson  <johnsonm@redhat.com>

	* rc.d/init.d/network: General cleanup.
	Don't start devices that shouldn't be started.

1997-09-16  Donnie Barnes  <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  Michael K. Johnson  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp:
	Bring down pppd even if only ifup-ppp is running, waiting to persist.

1997-09-16  Donnie Barnes  <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  Michael K. Johnson  <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  Donnie Barnes  <djb@redhat.com>

	* initscripts-3.12.spec:
	Added spec file to CVS archive.

1997-09-16  Erik Troan  <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.