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

Revision 521, 69.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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