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

Revision 12515, 74.7 KB checked in by tomop, 3 years ago (diff)

updated 5 packages

glib2-2.66.4-1

initscripts-8.91.16-5

memcached-1.6.9-1

p11-kit-0.23.22-1

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