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

Revision 12364, 74.2 KB checked in by tomop, 4 years ago (diff)

updated 13 packages

acpid-2.0.32-1

at-3.1.23-1

autofs-5.1.6-1

dracut-050-3

fcgi-2.4.2-1

fcgiwrap-1.1.0.git20200404-2

firefox-68.6.1-1

initscripts-8.91.16-3

iptables-1.8.4-2

lxc-4.0.0-1

libnftnl-1.1.6-1

smp_utils-0.99-1

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