source: projects/specs/tags/6_0_REL/i/initscripts/initscripts-vl.spec @ 4355

Revision 4355, 72.6 KB checked in by daisuke, 13 years ago (diff)

8.91.11

Line 
1# Initscripts package is now maintained on trac.vinelinux.org svn repository.
2# http://trac.vinelinux.org/browser/projects/initscripts/trunk
3
4Summary:      The inittab file and the /etc/rc.d scripts.
5Summary(ja):  inittab と /etc/rc.d 以下の起動スクリプト一式
6Name:         initscripts
7Version:      8.91.11
8Release:      1%{?_dist_release}
9License:      GPL
10Group:        System Environment/Base
11Url:          http://trac.vinelinux.org/browser/projects/initscripts
12
13# generated from svn
14Source:       %{name}-vine-%{version}.tar.bz2
15
16BuildRoot:    %{_tmppath}/%{name}-%{version}-%{release}-root
17
18BuildRequires:  glib2-devel, popt-devel
19
20Requires:     mingetty, gawk, sed, mktemp, e2fsprogs >= 1.15
21Requires:     procps >= 3.2.7, syslog
22Requires:     setup >= 2.5.7, psmisc, which, grep
23Requires:     module-init-tools >= 3.6
24Requires:     util-linux-ng
25Requires:     upstart >= 0.6.7
26Requires:     SysVinit-tools
27Requires:     iproute, iputils >= 20020927
28Requires:     kbd
29Requires:     dhclient, ethtool
30Requires:     udev >= 153-1
31Requires:     sed, coreutils
32
33Conflicts:    kernel <= 2.4, timeconfig < 3.0, pppd < 2.3.9, wvdial < 1.40-3
34Conflicts:    ypbind < 1.6-12
35Obsoletes:    rhsound, sapinit
36
37Requires(pre): shadow-utils
38Requires(post): gawk, coreutils, sed, chkconfig
39Requires(preun): chkconfig
40
41Vendor:       Project Vine
42Distribution: Vine Linux
43Packager:     daisuke
44
45%description
46The initscripts package contains the basic system scripts used to boot
47your Vine Linux system, change run levels, and shut the system down
48cleanly.  Initscripts also contains the scripts that activate and
49deactivate most network interfaces.
50
51%description -l ja
52このパッケージには, システムのブート・シャットダウン時などに使われるス
53クリプト群が含まれています. ネットワーク・インタフェースの起動などに用
54いられるスクリプト群もあります.
55
56
57%prep
58%setup -q
59
60%build
61%__make %{?_smp_mflags} libdir=%{_libdir}
62
63
64%install
65rm -rf ${RPM_BUILD_ROOT}
66%__make ROOT=${RPM_BUILD_ROOT} SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
67
68# build file list of locale stuff in with lang tags
69pushd %{buildroot}/%{_datadir}/locale
70for foo in * ; do
71        echo  "%lang($foo) %{_datadir}/locale/$foo/*/*" >> \
72        ${RPM_BUILD_DIR}/%{name}-%{version}/trans.list
73done
74popd
75
76# upstart
77mv -f $RPM_BUILD_ROOT/etc/inittab.upstart $RPM_BUILD_ROOT/etc/inittab
78
79rm -f $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-{ctc,escon,iucv}
80rm -f $RPM_BUILD_ROOT/lib/udev/rules.d/55-ccw.rules \
81      $RPM_BUILD_ROOT/lib/udev/ccw_init
82   
83%pre
84/usr/sbin/groupadd -g 22 -r -f utmp
85
86
87%post
88touch /var/log/wtmp
89touch /var/run/utmp
90chown root.utmp /var/log/wtmp /var/run/utmp
91chmod 664 /var/log/wtmp /var/run/utmp
92
93/sbin/chkconfig --add random
94/sbin/chkconfig --add netfs
95/sbin/chkconfig --add network
96
97# handle serial installs semi gracefully
98if [ $1 = 0 ]; then
99  if [ "$TERM" = "vt100" ]; then
100      tmpfile=`mktemp /etc/sysconfig/tmp.XXXXXX`
101      sed -e '/BOOTUP=color/BOOTUP=serial/' /etc/sysconfig/init > $tmpfile
102      mv -f $tmpfile /etc/sysconfig/init
103  fi
104fi
105
106# dup of timeconfig %post - here to avoid a dependency
107if [ -L /etc/localtime ]; then
108    _FNAME=`ls -ld /etc/localtime | awk '{ print $11}' | sed 's/lib/share/'`
109    rm /etc/localtime
110    cp -f $_FNAME /etc/localtime
111    if [ -f /etc/sysconfig/clock ] ; then
112        if ! grep -q "^ZONE=" /etc/sysconfig/clock ; then
113          echo "ZONE=\"$_FNAME"\" | sed -e "s|[^\"]*/usr/share/zoneinfo/||" >> /etc/sysconfig/clock
114        fi
115    fi
116fi
117
118# comment out LC_ALL and LANGUAGE entry in /etc/sysconfig/i18n
119tmpfile=`mktemp /etc/sysconfig/tmp.XXXXXX`
120sed -e 's/^LC_ALL=/#LC_ALL=/' \
121    -e 's/^LANGUAGE=/#LANGUAGE=/' \
122    /etc/sysconfig/i18n > $tmpfile
123mv -f $tmpfile /etc/sysconfig/i18n
124chmod 755 /etc/sysconfig/i18n
125
126
127# use VJE-delta if installed
128if [ -f /etc/vje30/vje.cfg ]; then
129  newime=`mktemp /etc/sysconfig/ime.XXXXXX`
130  sed -e "s|EMACS_IME.*|EMACS_IME=vje|g" \
131      -e "s|XIM_PROG.*|XIM_PROG=vje|g" \
132      /etc/sysconfig/ime > $newime
133  cp -f $newime /etc/sysconfig/ime
134  rm -f $newime
135fi
136
137# use wnn7 if installed
138if [ -f /usr/lib/wnn7/ja_JP/jserverrc ]; then
139  newime=`mktemp /etc/sysconfig/ime.XXXXXX`
140  sed -e "s|EMACS_IME.*|EMACS_IME=wnn7|g" \
141      -e "s|XIM_PROG.*|XIM_PROG=wnn7|g" \
142      /etc/sysconfig/ime > $newime
143  cp -f $newime /etc/sysconfig/ime
144  rm -f $newime
145fi
146
147
148%preun
149if [ $1 = 0 ]; then
150  /sbin/chkconfig --del random
151  /sbin/chkconfig --del netfs
152  /sbin/chkconfig --del network
153fi
154
155%triggerun -- initscripts <= 7.2.6
156/sbin/chkconfig --del rawdevices >& /dev/null ||:
157exit 0
158
159%triggerpostun -- initscripts <= 5.31
160
161function addAlias(){
162        test=`grep "^$1" $2`
163        [ "x$test" = "x" ] && echo "$1" >> $2
164}
165
166fstab=/etc/fstab
167if [ -f $fstab ] ; then
168        newfstab=`mktemp /etc/fstab.XXXXXX`
169        if [ -n "$newfstab" ]; then
170                /bin/awk '{ if ($3 != "usbdevfs") { print ; }}' $fstab > $newfstab
171                cat $newfstab > $fstab
172                rm -f $newfstab
173        fi
174fi
175
176mconf=/etc/modules.conf
177[ ! -f $mconf -a -f /etc/conf.modules ] && mconf=/etc/conf.modules
178        touch $mconf 2>/dev/null || mconf=""
179sysconf=/etc/sysconfig/usb
180if [ -f "$sysconf" -a -n "$mconf" ] ; then
181        source $sysconf
182        case `echo $usb | tr '[:upper:]' '[:lower:]'` in
183        ohci) alias="usb-ohci" ;;
184        uhci) alias="usb-uhci" ;;
185        no|off|false) alias="off" ;;
186        esac
187        [ -n "$alias" ] && addAlias "alias usb-controller $alias" $mconf
188fi
189rm -f $sysconf
190
191/sbin/chkconfig --add random
192/sbin/chkconfig --add netfs
193/sbin/chkconfig --add network
194
195
196%triggerpostun -- initscripts <= 4.72
197
198. /etc/sysconfig/init
199. /etc/sysconfig/network
200
201# These are the non-default settings. By putting them at the end
202# of the /etc/sysctl.conf file, it will override the default
203# settings earlier in the file.
204
205if [ -n "$FORWARD_IPV4" -a "$FORWARD_IPV4" != "no" -a "$FORWARD_IPV4" != "false" ]; then
206        echo "# added by initscripts install on `date`" >> /etc/sysctl.conf
207        echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.conf
208fi
209#if [ "$DEFRAG_IPV4" = "yes" -o "$DEFRAG_IPV4" = "true" ]; then
210#       echo "# added by initscripts install on `date`" >> /etc/sysctl.conf
211#       echo "net.ipv4.ip_always_defrag = 1" >> /etc/sysctl.conf
212#fi
213
214newnet=`mktemp /etc/sysconfig/network.XXXXXX`
215if [ -n "$newnet" ]; then
216  sed "s|FORWARD_IPV4.*|# FORWARD_IPV4 removed; see /etc/sysctl.conf|g" \
217   /etc/sysconfig/network > $newnet
218  sed "s|DEFRAG_IPV4.*|# DEFRAG_IPV4 removed; see /etc/sysctl.conf|g" \
219   $newnet > /etc/sysconfig/network
220  rm -f $newnet
221fi
222
223if [ -n "$MAGIC_SYSRQ" -a "$MAGIC_SYSRQ" != "no" ]; then
224        echo "# added by initscripts install on `date`" >> /etc/sysctl.conf
225        echo "kernel.sysrq = 1" >> /etc/sysctl.conf
226fi
227if uname -m | grep -q sparc ; then
228   if [ -n "$STOP_A" -a "$STOP_A" != "no" ]; then
229        echo "# added by initscripts install on `date`" >> /etc/sysctl.conf
230        echo "kernel.stop-a = 1" >> /etc/sysctl.conf
231   fi
232fi
233
234newinit=`mktemp /etc/sysconfig/init.XXXXXX`
235if [ -n "$newinit" ]; then
236  sed "s|MAGIC_SYSRQ.*|# MAGIC_SYSRQ removed; see /etc/sysctl.conf|g" \
237   /etc/sysconfig/init > $newinit
238  sed "s|STOP_A.*|# STOP_A removed; see /etc/sysctl.conf|g" \
239   $newinit > /etc/sysconfig/init
240  rm -f $newinit
241fi
242
243% trriggerpostun -- initscripts < 6.51-1vl23
244# comment out obsolete entry in inittab
245if [ -f /etc/inittab ] ;then
246  newinittab=`mktemp /etc/inittab.XXXXXX`
247  sed -e "s|ud::once:/sbin/update|#ud::once:/sbin/update|g" /etc/inittab > $newinittab
248  cp -f $newinittab /etc/inittab
249  rm -f $newinittab
250fi
251   
252%triggerin -- wnn8-server
253
254newime=`mktemp /etc/sysconfig/ime.XXXXXX`
255sed -e "s|EMACS_IME.*|EMACS_IME=wnn8|g" \
256    -e "s|XIM_PROG.*|XIM_PROG=wnn8|g" \
257    -e "s|GTK_IM_MODULE.*|GTK_IM_MODULE=xim|g" \
258    -e "s|QT_IM_MODULE.*|QTK_IM_MODULE=xim|g" \
259    /etc/sysconfig/ime > $newime
260cp -f $newime /etc/sysconfig/ime
261rm -f $newime
262
263%triggerun -- wnn8-server
264
265newime=`mktemp /etc/sysconfig/ime.XXXXXX`
266sed -e "s|EMACS_IME=wnn8le|EMACS_IME=scim|g" \
267    -e "s|XIM_PROG=wnn8le|XIM_PROG=scim|g" \
268    -e "s|GTK_IM_MODULE.*|GTK_IM_MODULE=scim|g" \
269    /etc/sysconfig/ime > $newime
270cp -f $newime /etc/sysconfig/ime
271rm -f $newime
272
273%triggerin -- wnn7-server
274
275newime=`mktemp /etc/sysconfig/ime.XXXXXX`
276sed -e "s|EMACS_IME.*|EMACS_IME=wnn7|g" \
277    -e "s|XIM_PROG.*|XIM_PROG=wnn7|g" \
278    -e "s|GTK_IM_MODULE.*|GTK_IM_MODULE=xim|g" \
279    /etc/sysconfig/ime > $newime
280cp -f $newime /etc/sysconfig/ime
281rm -f $newime
282
283%triggerun -- wnn7-server
284
285newime=`mktemp /etc/sysconfig/ime.XXXXXX`
286sed -e "s|EMACS_IME=wnn7|EMACS_IME=scim|g" \
287    -e "s|XIM_PROG=wnn7|XIM_PROG=scim|g" \
288    -e "s|GTK_IM_MODULE.*|GTK_IM_MODULE=scim|g" \
289    /etc/sysconfig/ime > $newime
290cp -f $newime /etc/sysconfig/ime
291rm -f $newime
292
293%triggerin -- vje-delta
294
295newime=`mktemp /etc/sysconfig/ime.XXXXXX`
296sed -e "s|EMACS_IME.*|EMACS_IME=vje|g" \
297    -e "s|XIM_PROG.*|XIM_PROG=vje|g" \
298    -e "s|GTK_IM_MODULE.*|GTK_IM_MODULE=xim|g" \
299    /etc/sysconfig/ime > $newime
300cp -f $newime /etc/sysconfig/ime
301rm -f $newime
302
303%triggerun -- vje-delta
304
305newime=`mktemp /etc/sysconfig/ime.XXXXXX`
306sed -e "s|EMACS_IME=vje|EMACS_IME=scim|g" \
307    -e "s|XIM_PROG=vje|XIM_PROG=scim|g" \
308    -e "s|GTK_IM_MODULE.*|GTK_IM_MODULE=scim|g" \
309    /etc/sysconfig/ime > $newime
310cp -f $newime /etc/sysconfig/ime
311rm -f $newime
312
313
314%clean
315rm -rf ${RPM_BUILD_ROOT}
316
317
318%files -f trans.list
319%defattr(-,root,root)
320%dir /etc/sysconfig/network-scripts
321%config(noreplace) %verify(not md5 mtime size) /etc/adjtime
322%config(noreplace) /etc/sysconfig/init
323/etc/sysconfig/network-scripts/ifdown
324/sbin/ifdown
325/etc/sysconfig/network-scripts/ifdown-post
326/etc/sysconfig/network-scripts/ifup
327/sbin/ifup
328%dir /etc/sysconfig/console
329%dir /etc/sysconfig/modules
330%config /etc/sysconfig/i18n
331%config /etc/sysconfig/ime
332%config /etc/sysconfig/desktop
333%config /etc/sysconfig/netconsole
334%dir /etc/sysconfig/networking
335%dir /etc/sysconfig/networking/devices
336%dir /etc/sysconfig/networking/profiles
337%dir /etc/sysconfig/networking/profiles/default
338/etc/sysconfig/network-scripts/network-functions
339/etc/sysconfig/network-scripts/network-functions-ipv6
340/etc/sysconfig/network-scripts/init.ipv6-global
341/etc/sysconfig/network-scripts/ifcfg-lo
342/etc/sysconfig/network-scripts/ifup-ipx
343/etc/sysconfig/network-scripts/ifup-post
344/etc/sysconfig/network-scripts/ifdown-ppp
345/etc/sysconfig/network-scripts/ifdown-sl
346/etc/sysconfig/network-scripts/ifup-ppp
347/etc/sysconfig/network-scripts/ifup-sl
348/etc/sysconfig/network-scripts/ifup-routes
349/etc/sysconfig/network-scripts/ifdown-routes
350/etc/sysconfig/network-scripts/ifup-plip
351/etc/sysconfig/network-scripts/ifup-plusb
352/etc/sysconfig/network-scripts/ifup-bnep
353/etc/sysconfig/network-scripts/ifdown-bnep
354/etc/sysconfig/network-scripts/ifup-eth
355/etc/sysconfig/network-scripts/ifdown-eth
356/etc/sysconfig/network-scripts/ifup-ipv6
357/etc/sysconfig/network-scripts/ifdown-ipv6
358/etc/sysconfig/network-scripts/ifup-ipsec
359/etc/sysconfig/network-scripts/ifdown-ipsec
360/etc/sysconfig/network-scripts/ifup-sit
361/etc/sysconfig/network-scripts/ifdown-sit
362/etc/sysconfig/network-scripts/ifup-tunnel
363/etc/sysconfig/network-scripts/ifdown-tunnel
364/etc/sysconfig/network-scripts/ifup-aliases
365/etc/sysconfig/network-scripts/ifdown-aliases
366/etc/sysconfig/network-scripts/ifup-ippp
367/etc/sysconfig/network-scripts/ifdown-ippp
368/etc/sysconfig/network-scripts/ifup-wireless
369/etc/sysconfig/network-scripts/ifup-isdn
370/etc/sysconfig/network-scripts/ifdown-isdn
371/etc/sysconfig/network-scripts/ifup-ib
372/etc/sysconfig/network-scripts/net.hotplug
373%config(noreplace) /etc/networks
374%config /etc/X11/prefdm
375%config(noreplace) /etc/inittab
376%config(noreplace) /etc/inittab.sysv
377
378/lib/udev/rules.d/*
379/lib/udev/rename_device
380/lib/udev/console_init
381/lib/udev/console_check
382
383%dir /etc/init
384%config(noreplace) /etc/init/*
385
386%dir /etc/rc.d
387%dir /etc/rc.d/rc[0-9].d
388%config(missingok) /etc/rc.d/rc[0-9].d/*
389/etc/rc[0-9].d
390/etc/rc
391%dir /etc/rc.d/init.d
392/etc/rc.local
393/etc/rc.sysinit
394/etc/rc.d/init.d/*
395/etc/rc.d/rc
396%config(noreplace) /etc/rc.d/rc.local
397/etc/rc.d/rc.sysinit
398%config(noreplace) /etc/sysctl.conf
399/etc/profile.d/*
400/usr/sbin/sys-unconfig
401/sbin/mkkerneldoth
402/sbin/setsysfont
403/bin/doexec
404/bin/ipcalc
405/bin/usleep
406%attr(4755,root,root) /usr/sbin/usernetctl
407/sbin/consoletype
408/sbin/fstab-decode
409/sbin/genhostid
410/sbin/getkey
411/sbin/securetty
412%attr(2755,root,root) /sbin/netreport
413/sbin/initlog
414#/sbin/minilogd
415/sbin/service
416/sbin/ppp-watch
417%{_mandir}/man*/*
418%dir %attr(775,root,root) /var/run/netreport
419%dir /etc/ppp
420/etc/ppp/ip-up
421/etc/ppp/ip-down
422/etc/ppp/ip-up.ipv6to4
423/etc/ppp/ip-down.ipv6to4
424/etc/ppp/ipv6-up
425/etc/ppp/ipv6-down
426%config(noreplace) /etc/initlog.conf
427%attr(0755,root,root) /etc/NetworkManager/dispatcher.d/00-aliases
428%attr(0755,root,root) /etc/NetworkManager/dispatcher.d/00-netreport
429%attr(0755,root,root) /etc/NetworkManager/dispatcher.d/05-netfs
430%doc sysconfig.txt sysvinitfiles static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING README-init
431%ghost %attr(0664,root,utmp) /var/log/btmp
432%ghost %attr(0664,root,utmp) /var/log/wtmp
433%ghost %attr(0664,root,utmp) /var/run/utmp
434
435
436%changelog
437* Wed Jul 20 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.11-1
438- use pppoe-{start,stop} instead of adsl-{start,stop} (BTS:1170)
439
440* Mon Jun 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.10-1
441- fix character class syntax in lang.csh
442
443* Mon Jun 06 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.9-1
444- fix typo
445
446* Fri May 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.8-1
447- add NetworkManager/dispacher.d/00-aliases
448  - brings up ip alias interfaces.
449
450* Fri Apr 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.7-1
451- update rc.sysinit
452  - add lxc support code
453
454* Mon Apr 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.6-1
455- update rc.sysinit
456  - fix lvm/dm/md initialization code
457  - remove unneeded code
458  - do not use pam_console_apply
459
460* Wed Apr 20 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.5-1
461- update rc.sysinit
462  - use multipath instead of multipath.static
463
464* Tue Apr 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.4-1
465- fix rc.d/rc.sysinit  (<BTS:1123>)
466  - silent warning messages.
467  - check if sysfs has already been mounted.
468  - don't use initlog
469
470* Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.3-1
471- update init.d/functions to support "status -l"
472
473* Fri Mar 11 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.2-1
474- update upstart scripts
475- R: upstart >= 0.6.7
476
477* Wed Mar 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.1-1
478- clean up plymouth staff
479- remove '--retain-splash' from prefdm
480
481* Tue Jan 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.91.0-1
482- fix bash3ism
483  - bash4 source/. command does not search current dir any longer.
484- change deafult ime from scim to ibus
485
486* Tue Jun 01 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.90.6-1
487- add Requires: SysVinit-tools
488- imported to trac svn repository
489  - update Makefile to use svn
490
491* Mon May 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.90.5-1
492- rc.d/rc
493  - do not shutdown plymouth in rc, we handle this by upstart.
494- prefdm
495  - add "--retain-splash" for gdm, kdm or lxdm.
496- Require upstart instead of SysVinit
497- BR popt-devel instead of popt
498- use Requires(pre,post,preun) instead of Prereq
499- use BuildRequires instead of BuildPrereq
500
501* Wed May 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.90.4-1
502- add /etc/init for upstart configs
503- remove old/legacy /etc/event.d
504
505* Tue May 11 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.90.3-1
506- fix rc to show plymouth on shutdown/reboot
507
508* Mon May 10 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.90.2-1
509- use /sbin/lvm instead of /sbin/lvm.static
510
511* Sun May 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.90.1-1
512- merge some changes from upstream
513- more support plymouth
514
515* Thu Feb 18 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.20-1
516- add lxdm patch (<BTS:225>)
517- add plymouth hooks to rc/rc.sysinit/prefdm
518
519* Sun Sep 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.19-1
520- remove absolute path from prefdm
521
522* Thu Sep  3 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 8.80.18-1
523- fix absolute path to xdm (<BTS:774>)
524
525* Sat Aug 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.17-1
526- fix ime.csh to set XMODIFIERS.
527
528* Tue Aug 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.16-1
529- export XMODIFIERS
530
531* Sat Aug 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.15-1
532- remove unneeded code from rc.sysinit
533- remove boot time depmod.
534
535* Mon May 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.14-1
536- fix progressbar calculation in shutdown process
537
538* Sat May 09 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.13-1
539- use skipped instead of passed in init.d/netfs
540- skip fsck on rc.sysinit if readonlyroot is specified in kernel
541  command line.
542- skip unmounting on halt/reboot if readonlyroot or noumount is
543  specified in kernel command line.
544
545* Tue May 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.12-1
546- export QT_IM_MODULE in ime.sh (<BTS:682>)
547
548* Sat May 02 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.11-1
549- add skipped() and echo_skipped() to /etc/init.d/functions
550- update message catalogs
551
552* Fri May 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.10-1
553- mount procfs before readahead_early
554- don't rename network interface name, since we handle it in udev now.
555
556* Sun Mar 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.9-1
557- update rc.sysinit
558  - cleaning up /var
559
560* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.8-1
561- update rc.sysinit
562  - kill nash before start udev
563  - do not use nash for raid/dm setup.
564
565* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.7-1
566- update rc.sysinit
567  - do not try to mount procfs/sysfs/usbfs if it is already mounted.
568  - remove usb hostadapter probing (handled by udev)
569- require syslog instead of sysklogd
570
571* Fri Mar 20 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 8.80.6-1
572- remove bashism (source) from /etc/profile.d/ime.sh
573
574* Thu Mar 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.5-1
575- do not use /sbin/kernelversion in rc.sysinit
576
577* Tue Mar 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.4-1
578- add default /etc/sysconfig/desktop
579
580* Sat Dec 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.3-1
581- add support for readahead and automatic readahead-collector in rc.sysinit
582
583* Mon Dec 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.2-1
584- remove unneeded sleep from rc.sysinit
585- do not run mkkerneldoth which is not needed for 2.6 kernel
586- init scripts and network scripts are no longer marked as %config
587- move udev rules to /lib
588- add Requires: udev >= 125-1
589
590* Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.1-1
591- add rename_device() to network-functions
592- add Requires: dhclient, ethtool
593
594* Sun Aug 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.80.0-1
595- update initscripts based on new upstream version 8.80
596
597* Wed Jul 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3.0-1
598- change default LANG to ja_JP.UTF-8
599- TODO: update scripts based on new upstream version.
600
601* Mon Dec 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.11-0vl1
602- use dmraid.static in rc.sysinit
603
604* Fri Nov 16 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.10-0vl1
605- fix ppp/ip-up, sysconfig/network-scripts/ifup-post (<BTS:0560>)
606
607* Wed Nov 14 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.9-0vl1
608- fix typo in ifup-routes (s/egreq/egrep) (<BTS:0558>)
609
610* Thu Apr 05 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 7.2.8-0vl4
611- explicitly PreReq: coreutils instead of fileutils
612
613* Fri Mar 23 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 7.2.8-0vl3
614- fix typo on ja.po (<BTS:503>)
615
616* Sun Feb 11 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 7.2.8-0vl2
617- s/adsl-/pppoe-/g
618
619* Thu Jan 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.8-0vl1
620- use "wnn8le" instead of "wnn8" if Wnn8 package is installed.
621
622* Wed Nov 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.7-0vl1
623- remove obsolete rawdevices script (<BTS:318>)
624
625* Thu Oct 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.6-0vl1
626- do not update mtab on mounting usbfs (<BTS:228>)
627
628* Fri Sep 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.5-0vl1
629- update ja.po
630- fix ifup script
631
632* Thu Sep 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.4-0vl1
633- fix ifdown to check if pump is running on the target device.
634
635* Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.3-0vl1
636- more update network-scripts
637
638* Mon Sep 18 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.2-0vl1
639- change "readonly" cmdline option to "no_remount_rootfs" (<BTS:192>)
640
641* Mon Sep 18 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.1-0vl1
642- import new network-functions from RHEL
643- update ifup/ifdown script to use new network-functions
644  (<BTS:195>)
645- add zeroconf support
646
647* Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.0-0vl1
648- import /lib/udev/rename_device, /etc/udev/rules.d/60-net.rules
649  from FC's initscripts to rename interface names.
650
651* Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1.2-0vl1
652- remount root fs in specified mode instead of force readwrite.
653  (<BTS:192>)
654- skip remounting root fs when "readonly" is specified in cmdline.
655- fix soundcard initializing in rc.sysinit
656  - use snd-card-0 instead of snd-slot-0
657  - XXX: still need this code?
658
659* Tue Sep 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1.1-0vl1
660- update RAID stuff in rc.sysinit
661  - use mdadm/device-mapper/dmraid instead of raidtools
662
663* Sat Sep 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1.0-0vl1
664- change dhcpcd timeout.
665
666* Sun Aug 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.9-0vl1
667- change default ime to scim
668- add wnn8 trigger
669
670* Thu Aug 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.8-0vl1
671- fix typo in ifup/ifdown..
672
673* Thu Aug 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.7-0vl1
674- fix ifup/ifdown scripts to support HWADDR
675
676* Sun Jul 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.6-0vl1
677- build ppp-watch with glib-2.0 instead of glib-1
678- add BuildRequires: glib2-devel
679
680* Sun Jul 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.5-0vl1
681- use $(libdir) instead of /usr/lib in Makefile
682- drop Patch0
683
684* Thu Jul 06 2006 Shu KONNO <owa@bg.wakwak.com> 7.0.4-0vl2
685- add Makefile.x86_64.patch for x86_64
686
687* Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.4-0vl1
688- fix typo
689
690* Sat May 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.3-0vl1
691- add support static dev (dev >= 3.22-0vl1)
692  - moount /.dev.static to /dev if running kernel is not
693    support udev or "noudev" is specified in cmdline option.
694
695* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.2-0vl1
696- check process accounting log dirs
697- add trigger to load user-defined modules(/etc/sysconfig/modules/*)
698- try to load all ACPI modules if noacpimodule is not set.
699  XXX: this may cause lower stability, we should confirm this change.
700
701* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.1-0vl1
702- add dhclient support for ifup/ifdown scripts
703- add timeout value(10) for dhcpcd if $DHCP_TIMEOUT is not set.
704- update po
705
706* Sun Mar 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.0-0vl1
707- bump version
708- initscripts is now maintained on vinelinux.org cvs.
709  - drop all patches which are now merged in cvs repository.
710
711* Tue Mar 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl36
712- add start_udev in rc.sysinit (noudev option to disable udev)
713- add Requires: udev >= 086
714
715* Sat Dec 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl35
716- import Patch40 from 6.51-1vl33.3(Vine 3.2)
717  - add Patch40 to cleanup /tmp files and setup ICE socket directory.
718
719* Wed Aug 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl34
720- add patch38 to load SCSI modules in early stage.
721
722* Wed Jun 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl33
723- update Patch34
724  - check /proc/modules instead of /proc/ksyms
725  - log /proc/kallsyms for kernel-2.6 (use /proc/ksyms for 2.4)
726
727* Sun Jun 12 2005 NISHIMURA Daisuke <nishi@mozilla.gr.jp> 6.51-1vl32
728- add patch35 to fix pidfileofproc().
729- add patch36 to prevent ifuping an already up interface.
730- add patch37 to fix sleeping time in ifdown.
731- exclude backup files in /etc/rc.d/init.d from a package.
732
733* Fri Jun 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl31
734- add Patch34 to support kernel-2.6
735  - mount /sys filesystem
736  - use usbfs to mount usb device filesystem instead of usbdevfs
737
738* Wed May 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl30
739- update patch27 to correct bootsplash progress bar in shutdown.
740- drop patch32 which was merged in patch27
741
742* Tue May 10 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl29
743- updated Patch15 for kernel26
744
745* Mon May 09 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl28
746- add patch32 to show booting message on bootsplash silent mode.
747- add patch33 to hook diskless kit rc files (Vine Linux Educational Edition)
748
749* Mon Nov  8 2004 IWAI, Masaharu <iwai@alib.jp> 6.51-1vl27
750- bug fix: DHCPCDARGS is canceled under specific conditions ( Patch31 )
751
752* Fri Jun 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl26
753- modifiy default canna setting to use unix domain socket.
754
755* Mon Jun 14 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl25
756- mark /etc/inittab as config(noreplace)
757- modify inittab to remove obsoleted entry in %%post script.
758
759* Sun Jun 13 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl24
760- add Patch30 to fix ifdown. (dhcpcd pidfile location was moved)
761
762* Sat Jun 12 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl23
763- add Patch29 to remove "/sbin/update" line from inittab,
764  it is not needed for recent kernel.
765
766* Fri Apr  2 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl22
767- update Patch28 to fix unicon loading.
768
769* Thu Apr  1 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl21
770- remove 'source i18n' from rc.sysinit to fix broken message
771  in bootup scripts.
772
773* Mon Sep 29 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl20
774- check /etc/sysconfig/bootsplash is exist or not.
775
776* Fri Sep 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl19
777- add source /etc/sysconfig/bootsplash in /etc/init.d/functions.
778
779* Thu Sep 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl18
780- add Patch37 to support bootsplash screen.
781
782* Thu Apr  3 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl17.1
783- use VJE-delta for XIM engine if installed.
784
785* Tue Nov 19 2002 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 6.51-1vl17
786- change Patch35: $alias is not local: used by caller.
787
788* Tue Nov 19 2002 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 6.51-1vl16
789- change Patch35 to wait only when module alias is not set.
790- add Patch36 to change condition of environment tweak in ime.{sh,csh}.
791
792* Wed Oct 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl15
793- add Patch35 for hotplug device delay initialization. (adhoc patch)
794
795* Sat Aug 03 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl14
796- added PreReq: sed (pre/post scripts use sed)
797
798* Sat Jun  1 2002 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 6.51-1vl13
799- fix conditional expression using needhostname in ifup-post
800- fix typo of keybdev.o in rc.sysinit
801
802* Thu Mar 28 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl12
803- fixed typo in ime.sh
804
805* Thu Mar 28 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl11
806- add triggerin/triggerun for wnn7-server.
807  Use Wnn7 for default IME when wnn7-server is installed.
808
809* Thu Mar 28 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl10
810- add alias (emacs) in ime.{sh,csh}.
811  emacs should not connect xim server, when we use xwnmo.
812
813* Sun Mar 17 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.51-1vl9
814- remove Patch21, we are using ext3 filesystem for default.
815
816* Wed Mar 13 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl8
817- modified Patch22 to load {hid,mousedev,keydev}.o module
818  ONLY if they are actually there as kernel modules:
819  if they're built in the kernel, don't try to load the modules
820
821* Mon Mar 11 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl7
822- added Patch22 to enable mount usbdevfs even if usbcore is built
823  into a kernel (Vine/ppc default kernel does)
824
825* Sun Mar 10 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl6
826- added Patch21 to set AUTOFSCK_DEF_CHECK to yes
827
828* Thu Mar 07 2002 Toru Sagami <sagami@vinelinux.org> 6.51-1vl5
829- make /etc/sysconfig/i18n readable and executable
830
831* Thu Mar 07 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl4
832- modified %%post section to comment out LC_ALL and LANGUAGE
833  (/etc/sysconfig/i18n is set to %%config, but in case of some trouble...)
834
835* Tue Feb 12 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 6.51-1vl3
836- added Patch20 (loading mixer for setting sound volum)
837
838* Sun Feb 10 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl2
839- added Patch19 (loading soundmodule pushed back to old style)
840
841* Tue Feb 05 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 6.51-1vl1
842- finally synced up with Rawhide's 6.51-1vl0
843- added ppc-specific treatment in the Patch11
844- not wdm but gdm is now default (search priority changed)
845- FIXME: two old Vine patches (Patch14, Patch16)
846- TODO:  basically should we need to follow Red Hat's initscripts?
847         it may be the BIG todos for us AFTER vine-2.5 branch be cut out
848
849- Vine's many (old)c hangelogs as follows:
850
851  - Mon Sep 10 2001 Toru Sagami <sagami@vinelinux.org>
852  - 5.52-1vl10: dont exit triggerpostun script when mktemp fails
853  - added a patch so that we dont run fsck reiserfs on root filesystem
854
855  - Mon Sep 03 2001 Toru Sagami <sagami@vinelinux.org>
856  - 5.52-1vl9: fixed triggerpostun script, again and again
857  - added a patch to handle kernel24 in generating /boot/kernel.h
858
859  - Wed Jun 27 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
860  - 5.52-1vl8
861  - modified unicon patch to be compatible with kernel24
862
863  - Sat Jun 02 2001 <sagami@vinelinux.org>
864  - 5.52-1vl7: fixed triggerpostun script, again
865  - added PreReq: chkconfig >= 1.2.17-1vl1 for /etc/init.d
866
867  - Thu May 17 2001 <sagami@vinelinux.org>
868  - 5.52-1vl6: fixed triggerpostun script($usb rather than $USB)...
869
870  - Thu May 17 2001 Daisuke SUZUKI <daisuke@linux.or.jp>
871  - 5.52-1vl5
872  - remove LANGUAGE from i18n
873
874  - Mon Feb 19 2001 Lisa Sagami <czs14350@mb.infoweb.ne.jp>
875  - 5.52-1vl4
876  - fixed unicon module action message.
877  - added patch for stopping unnecessary agpgart module installation.
878
879  - Mon Feb 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
880  - 5.52-1vl3
881  - added unicon module treatment (Patch5)
882
883  - Sat Dec 23 2000 Lisa Sagami <czs14350@mb.infoweb.ne.jp>
884  - 5.52-1vl2
885  - make triggerpostun <= 5.04 be executed in our 5.52 upgrading from 5.31,
886    which is actually 5.00.
887  - added initscripts-5.52-usb.patch
888
889  - Sun Dec 17 2000 Lisa Sagami <czs14350@mb.infoweb.ne.jp>
890  - 5.52-1vl1
891  - added triggerpostun <= 5.31 for usbdevfs and usb modules
892  - requires >= 2.10f-7vl2 for all architecture
893  - silent requirements to work: bash2 in bash, hdparm, modutils, kernel
894  - work around to handle bash1 in bash by adding a small patch
895    (My colors are blush and bashful).
896
897  - Sun Dec 10 2000 Jun Nishii <jun@vinelinux.org>
898  - 5.31-0vl1
899  - adapt to directory structure of initscripts-5.52-1
900  - rename version name as 5.01 instead of 5.00 to aviod version control
901    violence with chkconfig-1.2.17-1vl1
902
903  - Mon Oct 16 2000 Shoji MATSUMOTO, <shom@vinelinux.org> 5.00-1vl7
904  - usb hack updated
905  - add "qaction" into functions
906
907  - Thu Oct 12 2000 Daisuke SUZUKI, <daisuke@linux.or.jp> 5.00-1vl6
908  - usb hack
909
910  - Thu Oct 05 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
911  - 5.00-1vl5
912  - removed Requires: clock for ppc
913    (util-linux >= 2.10f-7vl2 have clock/hwclock for ppc)
914
915  - Thu Oct 05 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
916  - 5.00-1vl4
917  - modified patch2 for non-hwclock environment
918    (/sbin/clock doesn't have '--localtime' option)
919
920  - Sun Oct  1 2000 Jun Nishii <jun@vinelinux.org>
921  - 5.00-1vl3
922  - modify ime.{sh,csh} to load $HOME/.vine/system/ime
923
924  - Wed Jul  5 2000 Lisa Sagami <czs14350@nifty.ne.jp>
925  - added smallfix patch from recent initscripts release (5.17)
926
927  - Tue Jun 06 2000 Lisa Sagami <czs14350@nifty.ne.jp>
928  - obedience to new policy: changed LANG from ja_JP.ujis to ja_JP.eucJP
929
930  - Wed May 24 2000 Lisa Sagami <czs14350@nifty.ne.jp>
931  - based upon 4.72-1vl3 and synced with RH 5.00-1 (also changelog)
932  - added SYN flood protection on sysctl.conf
933
934* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
935- run /bin/setfont, not /usr/bin/setfont (kbd)
936- lots-o-random bugfixes/tweaks (see ChangeLog)
937
938* Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
939- Added support for libredhat-kernel.so.* symlink handling
940
941* Wed Nov  7 2001 Than Ngo <than@redhat.com>
942- fix bug in setting netmask on s390/s390x (bug #55421)
943  nmbd daemon works now ;-)
944
945* Fri Nov  2 2001 Than Ngo <than@redhat.com>
946- fixed typo bug ifup-ippp
947
948* Mon Oct 29 2001 Than Ngo <than@redhat.com>
949- fix bug in channel bundling if MSN is missed
950- support DEBUG option
951       
952* Wed Sep 19 2001 Than Ngo <than@redhat.com>
953- don't show user name by DSL connection
954
955* Sat Sep  8 2001 Bill Nottingham <notting@redhat.com>
956- don't run hwclock --adjust on a read-only filesystem
957
958* Thu Sep  6 2001 Than Ngo <than@redhat.com>
959* update initscripts-s390.patch for s390/s390x
960
961* Wed Sep  5 2001 Bill Nottingham <notting@redhat.com>
962- translation updates
963- quota and hwclock tweaks (<pbrown@redhat.com>)
964
965* Mon Sep  3 2001 Bill Nottingham <notting@redhat.com>
966- fix severe alias problems (#52882)
967
968* Mon Sep  3 2001 Than Ngo <than@redhat.com>
969- don't start pppbind if encapsulation is rawip (bug #52491)
970
971* Sun Sep  2 2001 Than Ngo <than@redhat.com>
972- add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
973- fix handling of ISDN LSZ Compresssion
974
975* Thu Aug 30 2001 Than Ngo <than@redhat.com>
976- po/de.po: fix typo bug, lo instead 1o
977
978* Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
979- fix ifdown for multiple dhcpcd interfaces
980
981* Wed Aug 29 2001 Than Ngo <than@redhat.com>
982- fix ISDN dial on demand bug
983- fix typo bug in network-functions
984
985* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
986- document /etc/sysconfig/authconfig
987
988* Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
989- message un-tweaks (<johnsonm@redhat.com>)
990- make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
991
992* Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
993- autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
994
995* Mon Aug 27 2001 Than Ngo <than@redhat.com>
996- fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
997
998* Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
999- sort output of halt_get_remaining (#52180)
1000
1001- fix bad translation (#52503)
1002
1003* Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
1004- fix ifup-wireless (#52135)
1005
1006* Wed Aug 22 2001 Than Ngo <than@redhat.com>
1007- fix return code of isdnctrl (bug #52225)
1008
1009* Tue Aug 21 2001 Than Ngo <than@redhat.com>
1010- fix Bringing up isdn device again. It works now correct.
1011
1012* Tue Aug 21 2001 Than Ngo <than@redhat.com>
1013- fix shutdown/Bringing up isdn device
1014
1015* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1016- fix syntax error in lang.csh
1017- set codeset by echoing to /dev/tty instead of /proc/self/fd/15
1018
1019* Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
1020- fix a broken call to check_device_down
1021- make all loopback addresses have host scope, not global scope.
1022  Fixes #49374, possibly others
1023
1024* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
1025- add is_available() network function, use it; cleans up ugly modprobe
1026  error messages
1027- update translation info
1028- fix #51787
1029
1030* Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1031- adjust s390 patch
1032- fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
1033
1034* Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
1035- don't display Chinese Korean if we aren't on a pty
1036
1037* Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1038- adjust s390 patches to current sources
1039
1040* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
1041- use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
1042
1043* Fri Aug 10 2001 Than Ngo <than@redhat.com>
1044- don't set MSN if it' empty (it's now optional)
1045- don't give login name as a cmdline-option (Bug #23066)
1046- remove peer device file if ppp connection is down
1047- fix channel bundling
1048
1049* Thu Aug  9 2001 Bill Nottingham <notting@redhat.com>
1050- require SysVinit (#51335)
1051
1052* Wed Aug  8 2001 Bill Nottingham <notting@redhat.com>
1053- tweak raittab grep slightly (#51231)
1054- allow resetting of default route for DHCP addresses (#48994)
1055- save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
1056- when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
1057- allow shell characters in ppp names (#43719)
1058- allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
1059- behave sanely if ifup called when dhcpcd is running (#49392, #51038)
1060
1061* Mon Aug  6 2001 Bill Nottingham <notting@redhat.com>
1062- honor HOTPLUG=no if running under hotplug (#47483)
1063- use awk, not grep, for modprobe -c checks (#49616)
1064- don't print ugly messages for the case where the device doesn't exist,
1065  and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
1066- run kbdconfig in /.unconfigured mode (#43941)
1067- use a bigger buffer size argument to dmesg (#44024)
1068- detach loopback devices on shutdown (#43919, #45826)
1069
1070* Thu Aug  2 2001 Bill Nottingham <notting@redhat.com>
1071- fix halt_get_remaining() (#50720)
1072
1073* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
1074- mount all FS types r/o at halt (#50461)
1075- don't use mii-tool at all (#various)
1076
1077* Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
1078- don't use kbd commands in setsysfont now that we've switched back to
1079  console-tools (#50075)
1080- sleep in check_link_down; some devices require it
1081- only bring link down if check_link_down fails
1082
1083* Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
1084- set link up before checking with mii-tool (#49949)
1085
1086* Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
1087- update netdev stuff to use _netdev
1088- IPv6 updates (<pekkas@netcore.fi>)
1089- fix downing of devices with static IPs (#49777, #49783)
1090- put ifcfg-lo back in the package
1091
1092* Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
1093- updates for quota
1094
1095* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
1096- own some more directories
1097- use -O nonetdev, require mount package that understands this
1098- fix do_netreport when called as non-root
1099- remove ip addresses from interfaces on ifdown
1100- oops, fix ifup/ifdown
1101
1102* Mon Jul 16 2001 Than Ngo <than@redhat.com>
1103- fix country_code for ISDN
1104
1105* Tue Jul  9 2001 Bill Nottingham <notting@redhat.com>
1106- fix '--check'
1107- prereq sh-utils (#43065)
1108- fix some invocations of reboot/halt (#45966)
1109- fix typo in ifup-wireless
1110- don't muck with /etc/issue each boot
1111- big IPv6 update (<pekkas@netcore.fi>)
1112
1113* Fri Jul  6 2001 Trond Eivind Glomsr︰ <teg@redhat.com>
1114- Add new directories required by new network tool
1115
1116* Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
1117- disable hwclock on S390 (no such executable)
1118- Fix up kernel versioning on binary-only modules (S390)
1119- don't use newt scripts on S390 console
1120
1121* Sat Jul 01 2001 Trond Eivind Glomsr︰ <teg@redhat.com>
1122- reenable pump, but make sure dhcpcd is the default. This
1123  way, upgrades of systems without dhcpcd has a better chance at
1124  working.
1125
1126* Thu Jun 28 2001 Trond Eivind Glomsr︰ <teg@redhat.com>
1127- Disable pump completely
1128
1129* Wed Jun 27 2001 Than Ngo <than@redhat.com>
1130- fix pap/chap authentication for syncppp
1131- support ippp options
1132       
1133* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
1134- add ifup-wireless
1135
1136* Fri Jun 22 2001 Than Ngo <than@redhat.com>
1137- add support xDSL
1138
1139* Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
1140- more networking script fixes (#45364)
1141- add stuff for unmounting /initrd
1142
1143* Thu Jun 21 2001 Than Ngo <than@redhat.com>
1144- add support ISDN
1145
1146* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1147- fix extremely broken new network scripts
1148
1149* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1150- bump version to 5.89
1151- make it build
1152
1153* Thu May 17 2001 Bill Nottingham <notting@redhat.com>
1154- don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)- fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
1155
1156* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1157- copyright: GPL -> license: GPL
1158- fix a syntax error in lang.csh
1159- skip commented-out i18n configuration lines in lang.csh
1160
1161* Fri May 11 2001 Preston Brown <pbrown@redhat.com>
1162- new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
1163
1164* Wed May  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
1165- support kbd in setsysfont
1166- bzip2 source
1167
1168* Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1169- add further s390 changes:
1170        - ifup-iucv
1171        - mkkerneldoth.s390
1172
1173* Tue Apr 24 2001 Than Ngo <than@redhat.com>
1174- add shutdown UPS into halt (bug #34312)
1175
1176* Sat Apr  7 2001 Preston Brown <pbrown@redhat.com>
1177- broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
1178
1179* Fri Apr  6 2001 Bill Nottingham <notting@redhat.com>
1180- be a little more careful in do_netreport (#34933)
1181
1182* Tue Apr  3 2001 Bill Nottingham <notting@redhat.com>
1183- set umask explicitly to 022 in /etc/init.d/functions
1184
1185* Mon Apr  2 2001 Bill Nottingham <notting@redhat.com>
1186- fix segfault in usernetctl (#34353)
1187
1188* Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
1189- don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
1190
1191* Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
1192- take advantage of new swapon behaviors
1193
1194* Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
1195- add cipe interfaces last (#31597)
1196
1197* Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
1198- fix typo in ifup (#31627)
1199- update translation source
1200
1201* Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1202- fix typo in rc.sysinit
1203- fix ifup-routes not setting DEVICE properly
1204
1205* Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
1206- Work properly with new quota utilities
1207
1208* Mon Mar  5 2001 Bill Nottingham <notting@redhat.com>
1209- IPv6 fixes (#30506)
1210- make static-routes handling more sane and consistent (#29500, #29549)
1211- handle multiple USB controllers *correctly*
1212
1213* Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1214- usernetctl, ppp-watch: cleanups
1215- netreport: use O_NOFOLLOW
1216- ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
1217
1218* Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
1219- don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
1220- disable hotplug during network initscript
1221- don't munge wireless keys in ifup; that will be done with the
1222  PCMCIA wireless stuff
1223- run sndconfig --mungepnp for non-native-isapnp soundcards
1224- don't explicitly kill things in init.d/single, init will do it
1225- don't explicitly load usb-storage; mount the usbdevfs before initializing
1226  host controller modules
1227
1228* Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
1229- initialize multiple USB controllers if necessary
1230
1231* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1232- close extra file descriptors before exec()ing commands in initlog
1233
1234* Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
1235- fix some substitions in init.d/functions (fixes various killproc issues)
1236- make sure ipv6 module alias is available if configured
1237- fix initlog segfaults in popt when called with bogus stuff (#28140)
1238
1239* Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1240- make pidofproc() and killproc() try to use the PID associated with the full
1241  pathname first before killing the daemon by its basename (for daemons that
1242  share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
1243- fix status() as well
1244
1245* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
1246- fix init.d/single to work around possible kernel problem
1247
1248* Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
1249- fix unmounting of loopback stuff (#26439, #14672)
1250
1251* Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
1252- fix ifup-post so that it will work right when not called from ifup
1253
1254
1255at Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1256- add all save changes for s390 s390x that won't break anything
1257  patches are from Oliver Paukstadt @ millenux.com
1258
1259* Fri Feb  9 2001 Bill Nottingham <notting@redhat.com>
1260- muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
1261
1262* Wed Feb  7 2001 Bill Nottingham <notting@redhat.com>
1263- ipv6 sync ups (#26502, #25775)
1264- fix hangs at shutdown (#25744)
1265- fix ifup-ppp (#26323)
1266
1267* Tue Feb  6 2001 Bill Nottingham <notting@redhat.com>
1268- modify firewall on ifup to allow any new DNS servers through (#25951)
1269- don't muck with the font in lang.csh/lang.sh (#26349)
1270- don't display Japanese if we aren't on a pty (#25041)
1271- load ide-scsi if passed on /proc/cmdline
1272
1273* Mon Feb  5 2001 Trond Eivind Glomsr︰ <teg@redhat.com>
1274- i18n updates
1275
1276* Fri Feb  2 2001 Bill Nottingham <notting@redhat.com>
1277- actually *ship* the ipv6 (and plusb) files
1278
1279* Thu Feb  1 2001 Trond Eivind Glomsr︰ <teg@redhat.com>
1280- i18n updates
1281
1282* Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
1283- various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
1284- in daemon(), only look at pidfile to determine if process is running
1285  (#17244, others)
1286- ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
1287- ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
1288- lots of other minor fixes (see ChangeLog)
1289
1290* Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
1291- add plusb support (#18892, patch from <eric.ayers@compgen.com>)
1292- don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
1293  <ak@cave.hop.stu.neva.ru>)
1294
1295* Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
1296- quiet LVM setup (#24841)
1297- fix inability to shutdown cleanly (#24889)
1298
1299* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
1300- new i18n mechanism
1301
1302* Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
1303- fixed typo in init.d/network - missing | in pipeline
1304
1305* Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
1306- do LVM setup through normal initscripts mechanisms
1307- ignore backup files in /etc/sysconfig/network-scripts
1308- lots of .po file updates
1309
1310* Tue Jan  2 2001 Bill Nottingham <notting@redhat.com>
1311- initial i18n support - originally from Conectiva
1312
1313* Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
1314- only load sound if persistent DMA buffers are necessary
1315- fix lots of bugs: #18619, #21187, #21283, #12097
1316- integrate MAXFAIL option for ppp-watch
1317- don't load keymaps/fonts on a serial console
1318
1319* Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
1320- changed hdparm section in rc.sysinit to allow different
1321  parameters for each disk (if needed) by copying
1322  /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
1323- fix RFE #20967
1324
1325* Tue Oct 31 2000 Than Ngo <than@redhat.com>
1326- fix the adding default route if GATEWAY=0.0.0.0
1327
1328* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
1329- handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
1330- fix top-level makefile install target
1331- make usernetctl just fall-through if getuid() == 0
1332
1333* Sun Sep  3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1334- /etc/init.d is already provided by chkconfig
1335
1336* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
1337- set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
1338
1339* Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
1340- update documentation (#15475)
1341
1342* Tue Aug 22 2000 Than Ngo <than@redhat.de>
1343- add KDE2 support to prefdm
1344
1345* Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
1346- add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
1347- add some fallback logic to prefdm (#16464)
1348
1349* Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
1350- don't load usb drivers if they're compiled statically
1351- don't call ifdown-post twice for ppp (#15285)
1352
1353* Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
1354- fix /boot/kernel.h generation (#16236, #16250)
1355
1356* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
1357- be more careful about creating files in netreport (#16164)
1358
1359* Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1360- move documentation for the DEMAND and IDLETIMEOUT values to the right
1361  section of sysconfig.txt
1362
1363* Wed Aug  9 2000 Bill Nottingham <notting@redhat.com>
1364- load agpgart if necessary (hack)
1365- fix /boot/kernel.h stuff (jakub)
1366
1367* Mon Aug  7 2000 Bill Nottingham <notting@redhat.com>
1368- remove console-tools requirement
1369- in netfs, start portmap if needed
1370- cosmetic cleanups, minor tweaks
1371- don't probe USB controllers
1372
1373* Mon Aug  7 2000 Nalin Dahyabhai <nalin@redhat.com>
1374- fix demand-dialing support for PPP devices
1375- change updetach back to nodetach
1376
1377* Sun Aug  6 2000 Bill Nottingham <notting@redhat.com>
1378- add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
1379
1380* Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
1381- fix unclean shutdown
1382
1383* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
1384- s/nill/null/g
1385
1386* Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
1387- unmount usb filesystem on halt
1388- run /sbin/ifup-pre-local if it exists
1389
1390* Tue Jul 18 2000 Trond Eivind Glomsr︰ <teg@redhat.com>
1391- add "nousb" command line parameter
1392- fix some warnings when mounting /proc/bus/usb
1393
1394* Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
1395- kill all the PreTransaction stuff
1396- directory ownership cleanups, add more LSB symlinks
1397- move all the stuff back in to /etc/rc.d/
1398
1399* Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
1400- fix == tests in rc.sysinit
1401- more %pretrans tweaks
1402
1403* Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
1404- test if /etc/rc.d is a symlink already in pre-transaction syscalls.
1405
1406* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
1407- implement the %pre with RPM Magic(tm)
1408
1409* Sat Jul  8 2000 Bill Nottingham <notting@redhat.com>
1410- fix it to not follow /etc/rc.d
1411
1412* Fri Jul  7 2000 Bill Nottingham <notting@redhat.com>
1413- fix %pre, again
1414
1415* Thu Jul  6 2000 Bill Nottingham <notting@redhat.com>
1416- tweak %pre back to a mv (rpm is fun!)
1417- do USB initialization before fsck, so keyboard works if it fails
1418
1419* Mon Jul  3 2000 Bill Nottingham <notting@redhat.com>
1420- rebuild; allow 'fastboot' kernel command line option to skip fsck
1421
1422* Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
1423- fix demand-dialing with PPP
1424
1425* Sun Jul 02 2000 Trond Eivind Glomsr︰ <teg@redhat.com>
1426- don't use tail
1427
1428* Thu Jun 28 2000 Trond Eivind Glomsr︰ <teg@redhat.com>
1429- add support for USB controllers and HID devices
1430  (mice, keyboards)
1431
1432* Tue Jun 27 2000 Trond Eivind Glomsr︰ <teg@redhat.com>
1433- add support for EIDE optimization
1434
1435* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
1436- tweak %%pre
1437
1438* Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
1439- noreplace for adjtime file
1440
1441* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1442- ifup-ppp: add hooks for demand-dialing PPP
1443- functions: use basename of process when looking for its PID file
1444
1445* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
1446- move from /etc/rc.d/init.d -> /etc/init.d
1447
1448* Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
1449- set soft limit, not hard, in daemon function
1450- /var/shm -> /dev/shm
1451
1452* Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
1453- use dhcpcd if pump fails.
1454- use depmod -A (faster)
1455
1456* Sun Jun  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1457- add autologin support to prefdm
1458
1459* Thu Jun  1 2000 Bill Nottingham <notting@redhat.com>
1460- random networking fixes (alias routes, others)
1461- conf.modules -> modules.conf
1462
1463* Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1464- fix incorrect grep invocation in rc.sysinit (bug #11267)
1465
1466* Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
1467- fix lang.csh, again (oops)
1468- use /poweroff, /halt to determine whether to poweroff
1469
1470* Thu Apr 14 2000 Bill Nottingham <notting@redhat.com>
1471- fix testing of RESOLV_MODS (which shouldn't be used anyways)
1472
1473* Tue Apr 04 2000 Ngo Than <than@redhat.de>
1474- fix overwrite problem of resolv.conf on ippp/ppp/slip connections
1475
1476* Mon Apr  3 2000 Bill Nottingham <notting@redhat.com>
1477- fix typo in functions file
1478- explicitly set --localtime when calling hwclock if necessary
1479
1480* Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
1481- fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
1482
1483* Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
1484- remove compatiblity chkconfig links
1485- run 'netfs stop' on 'network stop' if necessary
1486
1487* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1488- Mount /var/shm if required (2.3.99, 2.4)
1489
1490* Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
1491- don't create resolv.conf 0600
1492- don't run ps as much (speed issues)
1493- allow setting of MTU
1494- other minor fixes
1495
1496* Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1497- Start devfsd if installed and needed (Kernel 2.4...)
1498
1499* Wed Mar  8 2000 Bill Nottingham <notting@redhat.com>
1500- check that network devices are up before bringing them down
1501
1502* Wed Mar  8 2000 Jakub Jelinek <jakub@redhat.com>
1503- update sysconfig.txt
1504
1505* Tue Mar  7 2000 Bill Nottingham <notting@redhat.com>
1506- rerun sysctl on network start (for restarts)
1507
1508* Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
1509- don't read commented raid devices
1510
1511* Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
1512- fix typo in resolv.conf munging
1513
1514* Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
1515- sanitize repair prompt
1516- initial support for isdn-config stuff
1517
1518* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1519- add which as a package dependency (bug #9416)
1520
1521* Tue Feb  8 2000 Bill Nottingham <notting@redhat.com>
1522- fixes for sound module loading
1523
1524* Mon Feb  7 2000 Nalin Dahyabhai <nalin@redhat.com>
1525- check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
1526- fix check for /var/*/news, work around for bug #9140
1527
1528* Fri Feb  4 2000 Nalin Dahyabhai <nalin@redhat.com>
1529- fix bug #9102
1530
1531* Fri Feb  4 2000 Bill Nottingham <notting@redhat.com>
1532- if LC_ALL/LINGUAS == LANG, don't set them
1533
1534* Wed Feb  2 2000 Bill Nottingham <notting@redhat.com>
1535- fix problems with linuxconf static routes
1536
1537* Tue Feb  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1538- shvar cleaning
1539- fix wrong default route ip in network-functions
1540
1541* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
1542- attempt to restore default route if PPP takes it over
1543- man page fix for ipcalc
1544- shvar cleaning
1545- automate maintaining /boot/System.map symlinks
1546
1547* Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
1548- fix hanging ppp-watch
1549- fix issues with cleaning of /var/{run,lock}
1550
1551* Sat Jan 29 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1552- 4.70-1vl3
1553- added %ifarch ppc line
1554- added a rc.sysinit patch for architectures which don't have
1555  /sbin/hwclock (such as ppc)
1556
1557* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
1558- fix pidof calls in pidofproc
1559
1560* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
1561- fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
1562
1563* Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
1564- link popt statically
1565
1566* Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
1567- don't try to umount /loopfs
1568
1569* Wed Dec 29 1999 Jun Nishii <jun@vinelinux.org>
1570- change scripts for csh not to use /tmp
1571
1572* Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
1573- switch to using sysctl
1574
1575* Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
1576- umount /proc *after* trying to turn off raid
1577
1578* Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
1579- improvements in clone device handling
1580- better signal handling in ppp-watch
1581- yet another attempt to fix those rare PAP/CHAP problems
1582
1583* Fri Dec 2 1999 Norihito Ohmori <ohmori@flatout.rog>
1584- add path /usr/kde/bin in /etc/X11/prefdm.
1585- merge initscripts-vine, etc... (J. Nishii's work)
1586- check the existance of /etc/sysconfig/clock (J. Nishii's work)
1587
1588* Sat Nov 28 1999 Bill Nottingham <notting@redhat.com>
1589- impressive. Three new features, three new bugs.
1590
1591* Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
1592- fix more possible failed CHAP authentication (with chat scripts)
1593- fix ppp default route problem
1594- added ppp-watch man page, fixed usernetctl man page
1595- make ifup-ppp work again when called from netcfg and linuxconf
1596- try to keep ppp-watch from filling up logs by respawning pppd too fast
1597- handle all linuxconf-style alias files with linuxconf
1598
1599* Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
1600- load mixer settings for monolithic sound
1601- man page for ppp-watch
1602- add ARP variable for ifup
1603- some i18n fixes
1604
1605* Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
1606- control stop-a separately from sysrq
1607
1608* Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
1609- fix some failed CHAP authentication
1610- fix extremely unlikely, but slightly possible kill-random-process
1611  bug in ppp-watch
1612- allow DNS{1,2} in any ifcfg-* file, not just PPP, and
1613  add nameserver entries, don't just replace them
1614- don't use /tmp/confirm, use /var/run/confirm instead
1615
1616* Tue Nov  2 1999 Bill Nottingham <notting@redhat.com>
1617- fix lang.csh /tmp race oops
1618
1619* Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
1620- we now ship hwclock on alpha.
1621
1622* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
1623- fix check for serial console, don't use -C argument to fsck
1624  on serial console.
1625
1626* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
1627- do something useful with linuxconf 'any' static routes.
1628
1629* Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
1630- added patch from Owen to source i18n configuration before starting prefdm
1631
1632* Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
1633- support for linuxconf alias files
1634- add support for Jensen clocks.
1635
1636* Tue Oct  5 1999 Bill Nottingham <notting@redhat.com>
1637- assorted brown paper bag fixes
1638- check for programs/files before executing/sourcing them
1639- control stop-a like magic sysrq
1640
1641* Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
1642- req. e2fsprogs >= 1.15
1643
1644* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
1645- munge C locale definitions to en_US
1646- use fsck's completion bar
1647
1648* Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
1649- ppp-watch now always kills pppd pgrp to make sure dialers are dead,
1650  and tries to hang up the modem
1651
1652* Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
1653- add a DEFRAG_IPV4 option
1654
1655* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
1656- changed to more modern defaults for PPP connections
1657
1658* Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
1659- kill processes for umount in halt, too.
1660- fixes to remove /usr dependencies
1661
1662* Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
1663- load/save mixer settings in rc.sysinit, halt
1664
1665* Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
1666- add --remotename option to wvdial code
1667- make sure we do not have an earlier version of wvdial that doesn't
1668  know how handle --remotename
1669- make ppp-watch background itself after 30 seconds even if
1670  connection does not come up, at boot time only, so that a
1671  non-functional PPP connection cannot hang boot.
1672
1673* Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
1674- a couple of /bin/sh -> /bin/bash fixes
1675- fix swapoff silliness
1676
1677* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
1678- chkconfig --del in %preun, not %postun
1679- use killall5 in halt
1680- swapoff non-/etc/fstab swap
1681
1682* Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
1683- ifdown now synchronous (modulo timeouts)
1684- several unrelated cleanups, primarily in ifdown
1685
1686* Tue Sep  7 1999 Bill Nottingham <notting@redhat.com>
1687- add an 'unconfigure' sort of thing
1688
1689* Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
1690- added ppp-watch to make "ifup ppp*" synchronous
1691
1692* Fri Sep  3 1999 Bill Nottingham <notting@redhat.com>
1693- require lsof
1694
1695* Wed Sep  1 1999 Bill Nottingham <notting@redhat.com>
1696- add interactive prompt
1697
1698* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
1699- disable magic sysrq by default
1700
1701* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
1702- new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
1703- fix ifup-sl/dip confusion
1704- more raid startup cleanup
1705- make utmp group 22
1706
1707* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
1708- pass hostname to pump
1709- add lang.csh
1710
1711* Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
1712- more wvdial updates
1713- fix a *stupid* bug in process reading
1714
1715* Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
1716- add new /boot/kernel.h boot kernel version file
1717- new RAID startup
1718
1719* Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
1720- use new linkname argument to pppd to make if{up,down}-ppp
1721  reliable -- requires ppp-2.3.9 or higher
1722
1723* Mon Aug  2 1999 Bill Nottingham <notting@redhat.com>
1724- fix typo.
1725- add 'make check'
1726
1727* Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
1728- simple wvdial support for ppp connections
1729
1730* Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
1731- stability fixes for initlog
1732- initlog now has a config file
1733- add alias speedup from dharris@drh.net
1734- move netfs links
1735- usleep updates
1736
1737* Thu Jul  8 1999 Bill Nottingham <notting@redhat.com>
1738- remove timeconfig dependency
1739- i18n fixes from nkbj@image.dk
1740- move inputrc to setup package
1741
1742* Tue Jul  6 1999 Bill Nottingham <notting@redhat.com>
1743- fix killall links, some syntax errors
1744
1745* Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
1746- don't make module-info, System.map links
1747- handle utmpx/wtmpx
1748- fix lots of bugs in 4.21 release :)
1749
1750* Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
1751- set clock as soon as possible
1752- use INITLOG_ARGS everywhere
1753- other random fixes in networking
1754
1755* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
1756- oops, don't create /var/run/utmp and then remove it.
1757- stomp RAID bugs flat. Sort of.
1758
1759* Mon May 24 1999 Bill Nottingham <notting@redhat.com>
1760- clean out /var better
1761- let everyone read /var/run/ppp*.dev
1762- fix network startup so it doesn't depend on /usr
1763
1764* Tue May 11 1999 Bill Nottingham <notting@redhat.com>
1765- various fixes to rc.sysinit
1766- fix raid startup
1767- allow for multi-processor /etc/issues
1768
1769* Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
1770- fixed typo - "Determing" to "Determining"
1771
1772* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
1773- updated inputrc so that home/end/del work on console, not just X
1774
1775* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
1776- fix more logic in initlog
1777- fix for kernel versions in ifup-aliases
1778- log to /var/log/boot.log
1779
1780* Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
1781- fix daemon() function so you can specify pid to look for
1782
1783* Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
1784- changed utmp,wtmp to be group writeable and owned by group utmp
1785
1786* Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
1787- fix loading of consolefonts/keymaps
1788- three changelogs. three developers. one day. Woohoo!
1789
1790* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
1791- fixed ifup-ipx mix-up over . and _
1792
1793* Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
1794- run /sbin/ifup-local after bringing up an interface (if that file exists)
1795
1796* Mon Apr  5 1999 Bill Nottingham <notting@redhat.com>
1797- load keymaps & console font early
1798- fixes for channel bonding, strange messages with non-boot network interfaces
1799
1800* Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
1801- added sysvinitfiles as a documenattaion file
1802
1803* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
1804- nfsfs -> netfs
1805
1806* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
1807- don't source /etc/sysconfig/init if $BOOTUP is already set
1808
1809* Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
1810- don't run linuxconf if /usr isn't mounted
1811- set macaddr before bootp
1812- zero in the /var/run/utmpx file (gafton)
1813- don't set hostname on ppp/slip (kills X)
1814                       
1815* Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
1816- exit ifup if pump fails
1817- fix stupid errors in reading commands from subprocess
1818
1819* Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
1820- fix ROFS logging
1821- make fsck produce more happy output
1822- fix killproc logic
1823
1824* Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
1825- doc updates
1826- support for SYSFONTACM, other console-tools stuff
1827- add net route for interface if it isn't there.
1828- fix for a bash/bash2 issue
1829
1830* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
1831- pam_console lockfile cleanup added to rc.sysinit
1832
1833* Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
1834- fixes in functions for 'action'
1835- fixes for pump
1836
1837* Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
1838- Mmm. Must always remove debugging code. before release. *thwap*
1839- pump support
1840- mount -a after mount -a -t nfs
1841
1842* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
1843- put preferred support back in
1844
1845* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
1846- fix single-user mode (source functions, close if)
1847
1848* Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
1849- turn off xdm in runlevel 5 (now a separate service)
1850
1851* Thu Feb  4 1999 Bill Nottingham <notting@redhat.com>
1852- bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
1853- add initlog support. Now everything is logged (and bootup looks different)
1854
1855* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
1856- halt now passed the '-i' flag so that network interfaces disabled
1857
1858* Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
1859- handle new linuxconf output for ipaliases
1860
1861* Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
1862- fixed raid start stuff
1863- added raidstop to halt
1864
1865* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
1866- handle LC_ALL
1867
1868* Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
1869- adjusted setsysfont to always run setfont, even if only w/default font
1870
1871* Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
1872- rc.sysvinit should be working with all kernel versions now
1873- requires e2fsprogs (for fsck)
1874- set INPUTRC and LESSCHARSET on linux-lat
1875
1876* Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
1877- /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
1878- /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
1879- /sbin/setsysfont: permit unicode fonts.
1880
1881* Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
1882- don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
1883
1884* Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
1885- paranoia improvements to .rhkmvtag
1886- if psacct with /sbin/accton, than turn off accounting
1887
1888* Tue Jul  7 1998 Jeff Johnson <jbj@redhat.com>
1889- start/stop run levels changed.
1890- ipx_configure/ipx_internal_net moved to /sbin.
1891
1892* Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
1893- usernetctl didn't understand "" around USERCTL attribute
1894
1895* Wed Jul  1 1998 Jeff Johnson <jbj@redhat.com>
1896- Use /proc/version to find preferred modules.
1897- Numerous buglets fixed.
1898
1899* Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
1900- rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
1901  /lib/modules/preferred symlink
1902
1903* Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
1904- ipcalc should *never* have been setgid anything
1905- depmod isn't run properly for non-serial numbered kernels
1906
1907* Wed May 06 1998 Donnie Barnes <djb@redhat.com>
1908- added system font and language setting
1909
1910* Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
1911- Added missing files to packagelist.
1912
1913* Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
1914- Added lots of linuxconf support.  Should still work on systems that
1915  do not have linuxconf installed, but linuxconf gives enhanced support.
1916- In concert with linuxconf, added IPX support.  Updated docs to reflect it.
1917
1918* Fri May 01 1998 Erik Troan <ewt@redhat.com>
1919- rc.sysinit uses preferred directory
1920
1921* Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
1922- updated rc.sysinit to deal with kernel versions with release numbers
1923
1924* Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
1925- use ipcalc to calculate the netmask if one isn't specified
1926
1927* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
1928- added and made use of ipcalc
1929
1930* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
1931- removed unnecessary dhcp log from /tmp
1932
1933* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
1934- if bootpc fails, take down the device
1935
1936* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
1937- added check for mktemp failure
1938
1939* Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
1940- fixed support for user manageable cloned devices
1941
1942* Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
1943- /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
1944
1945* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
1946- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
1947- the logic for when  /var/lock/subsys/kerneld is touched was backwards
1948
1949* Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
1950- tried to get /proc stuff right one more time (uses -t nonfs,proc now)
1951- added support for /fsckoptions
1952- changed 'yse' to 'yes' in KERNELD= line
1953
1954* Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
1955- set domainname to "" if none is specified in /etc/sysconfig/network
1956- fix /proc mounting to get it in /etc/mtab
1957
1958* Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
1959- fixed inheritance for clone devices
1960
1961* Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
1962- added sound support to rc.sysinit
1963
1964* Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
1965- Added missing "then" clause
1966
1967* Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
1968- Fixed DEBUG option in ifup-ppp
1969- Fixed PPP persistance
1970- Only change IP forwarding if necessary
1971
1972* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
1973- removed the skeleton init script
1974- added the ability to 'nice' daemons
1975
1976* Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
1977- touch /var/lock/subsys/kerneld if it's running, and after mounting /var
1978- applied dhcp fix
1979
1980* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
1981- added status|restart to init scripts
1982
1983* Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
1984- touch random seed file before chmod'ing it.
1985
1986* Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
1987- run domainname if NISDOMAIN is set
1988
1989* Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
1990- Make the random seed file mode 600.
1991
1992* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
1993- bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
1994
1995* Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
1996- moved to new chkconfig conventions
1997
1998* Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
1999- fixed rc.sysinit for hwclock compatibility
2000
2001* Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
2002- run 'ulimit -c 0' before running scripts in daemon function
2003
2004* Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
2005- added chkconfig support
2006- made all rc*.d symlinks have missingok flag
2007
2008* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
2009- fixed network-scripts to allow full pathnames as config files
2010- removed some old 3.0.3 pcmcia device handling
2011
2012* Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
2013- /var/run/netreport needs to be group-writable now that /sbin/netreport
2014  is setguid instead of setuid.
2015
2016* Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
2017- Added network-functions to spec file.
2018- Added report functionality to usernetctl.
2019- Fixed bugs I introduced into usernetctl while adding clone device support.
2020- Clean up entire RPM_BUILD_ROOT directory in %clean.
2021
2022* Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
2023- Clone device support in network scripts, rc scripts, and usernetctl.
2024- Disassociate from controlling tty in PPP and SLIP startup scripts,
2025  since they act as daemons.
2026- Spec file now provides start/stop symlinks, since they don't fit in
2027  the CVS archive.
2028
2029* Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
2030- added mktemp support to ifup
2031
2032* Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
2033- fixed some init.d/functions bugs for stopping httpd
2034
2035* Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
2036- reworked status() to adjust for processes that change their argv[0] in
2037  the process table.  The process must still have it's "name" in the argv[0]
2038  string (ala sendmail: blah blah).
2039
2040* Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
2041- fixed bug in FORWARD_IPV4 support
2042
2043* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
2044- added support for FORWARD_IPV4 variable
2045
2046* Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
2047- added status function to functions along with better killproc
2048  handling.
2049- added /sbin/usleep binary (written by me) and man page
2050- changed BuildRoot to /var/tmp instead of /tmp
2051
2052* Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
2053- /sbin/netreport sgid rather than suid.
2054- /var/run/netreport writable by group root.
2055
2056- /etc/ppp/ip-{up|down} no longer exec their local versions, so
2057  now ifup-post and ifdown-post will be called even if ip-up.local
2058  and ip-down.local exist.
2059
2060* Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
2061- Added missing -f to [ invocation in ksyms check.
2062
2063* Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2064- Support for net event notification:
2065  Call /sbin/netreport to request that SIGIO be sent to you whenever
2066  a network interface changes status (won't work for brining up SLIP
2067  devices).
2068  Call /sbin/netreport -r to remove the notification request.
2069- Added ifdown-post, and made all the ifdown scrips call it, and
2070  added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
2071  if it exists, then calls ifdown-post.
2072- Moved ifup and ifdown to /sbin
2073
2074* Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2075- usernetctl put back in ifdown
2076- support for slaved interfaces
2077
2078* Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
2079- Created ifup-post from old ifup
2080- PPP, PLIP, and generic ifup use ifup-post
2081
2082* Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
2083- Added DHCP support
2084- Set hostname via reverse name lookup after configuring a networking
2085  device if the current hostname is (none) or localhost
2086
2087* Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
2088- Got rid of xargs dependency in halt script
2089- Don't mount /proc twice (unmount it in between)
2090- sulogin and filesystem unmounting only happened for a corrupt root
2091  filesystem -- it now happens when other filesystems are corrupt as well
2092
2093* Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
2094- PPP fixes and additions
2095
2096* Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
2097- Mount proc before trying to start kerneld so we can test for /proc/ksyms
2098  properly.
2099
2100* Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
2101- Added MTU for PPP.
2102- Put PPPOPTIONS at the end of the options string instead of at the
2103  beginning so that they override other options.  Gives users more rope...
2104- Don't do module-based stuff on non-module systems.  Ignore errors if
2105  st module isn't there and we try to load it.
2106
2107* Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
2108- Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
2109  provided by doexec goes away when pppd gets swapped out.
2110- ifup-ppp now sets remotename to the logical name of the device.
2111  This will BREAK current PAP setups on netcfg-managed interfaces,
2112  but we needed to do this to add a reasonable interface-specific
2113  PAP editor to netcfg.
2114
2115* Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
2116- Added usernetctl wrapper for user mode ifup and ifdown's and man page
2117- Rewrote ppp and slip kill and retry code
2118- Added doexec and man page
Note: See TracBrowser for help on using the repository browser.