source: projects/initscripts/trunk/initscripts-vl.spec @ 8515

Revision 8515, 73.3 KB checked in by daisuke, 10 years ago (diff)

8.91.16

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