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

Revision 988, 70.1 KB checked in by daisuke, 14 years ago (diff)

initscripts: fix to show plymoouth on shutdown/reboot

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