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

Revision 12535, 74.9 KB checked in by tomop, 3 years ago (diff)

updated 3 packages

audit-3.0.1-1

initscripts-8.91.16-6

libsigsegv-2.13-1

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