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

Revision 12432, 74.5 KB checked in by tomop, 4 years ago (diff)

updated 2 packages

initscripts-8.91.16-4

kmod-27-1

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