source: projects/specs/trunk/i/initscripts/initscripts-vl.spec @ 3552

Revision 3552, 71.6 KB checked in by daisuke, 13 years ago (diff)

initscript: fix rc.sysinit to avoid unneeded warnings

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