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

Revision 6543, 72.8 KB checked in by daisuke, 12 years ago (diff)

newer udev support

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