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

Revision 918, 69.8 KB checked in by daisuke, 14 years ago (diff)

initscripts:

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