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

Revision 1027, 70.6 KB checked in by daisuke, 14 years ago (diff)

initscripts:

  • rc.d/rc
    • do not shutdown plymouth in rc, we handle this by upstart.
  • prefdm
    • add "--retain-splash" for gdm, kdm or lxdm.
  • Require upstart instead of SysVinit
  • BR popt-devel instead of popt
  • use Requires(pre,post,preun) instead of Prereq
  • use BuildRequires? instead of BuildPrereq?


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