source: projects/initscripts/tags/initscripts-8.91.0/initscripts-vl.spec @ 2576

Revision 2576, 71.0 KB checked in by daisuke, 13 years ago (diff)

tagging as initscripts-8.91.0

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