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

Revision 998, 70.2 KB checked in by daisuke, 14 years ago (diff)

initscripts: support newer upstart

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