aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael K. Johnson <johnsonm@redhat.com>1999-09-13 17:51:29 +0000
committerMichael K. Johnson <johnsonm@redhat.com>1999-09-13 17:51:29 +0000
commitf97dc1188ed5a0b28c10072fadef93d9229f5417 (patch)
treeb16546c2c6be607031f55ff6d8b8599f61b92784
parentbfb1f33b3ec9cfe8d3c6ad8e3a7cec37158c1b8d (diff)
downloadinitscripts-f97dc1188ed5a0b28c10072fadef93d9229f5417.tar
initscripts-f97dc1188ed5a0b28c10072fadef93d9229f5417.tar.gz
initscripts-f97dc1188ed5a0b28c10072fadef93d9229f5417.tar.bz2
initscripts-f97dc1188ed5a0b28c10072fadef93d9229f5417.tar.xz
initscripts-f97dc1188ed5a0b28c10072fadef93d9229f5417.zip
new --remotename option to wvdial
-rw-r--r--initscripts.spec14
-rwxr-xr-xsysconfig/network-scripts/ifup-ppp2
2 files changed, 14 insertions, 2 deletions
diff --git a/initscripts.spec b/initscripts.spec
index ca5855b8..77e99464 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -10,7 +10,7 @@ BuildRoot: /var/tmp/initbld
Requires: mingetty, bash, /bin/awk, /bin/sed, mktemp, e2fsprogs, console-tools
Requires: procps, modutils >= 2.1.85-3, sysklogd >= 1.3.31
Requires: setup >= 2.0.3, lsof
-Conflicts: kernel <= 2.2, timeconfig < 3.0, pppd < 2.3.9
+Conflicts: kernel <= 2.2, timeconfig < 3.0, pppd < 2.3.9, wvdial < 1.40-3
Prereq: /sbin/chkconfig, /usr/sbin/groupadd, gawk
%description
@@ -198,6 +198,18 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
+- add --remotename option to wvdial code
+- make sure we do not have an earlier version of wvdial that doesn't
+ know how handle --remotename
+- make ppp-watch background itself after 30 seconds even if
+ connection does not come up, at boot time only, so that a
+ non-functional PPP connection cannot hang boot.
+
+* Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
+- a couple of /bin/sh -> /bin/bash fixes
+- fix swapoff silliness
+
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
- chkconfig --del in %preun, not %postun
- use killall5 in halt
diff --git a/sysconfig/network-scripts/ifup-ppp b/sysconfig/network-scripts/ifup-ppp
index c40fae7e..c35a3b54 100755
--- a/sysconfig/network-scripts/ifup-ppp
+++ b/sysconfig/network-scripts/ifup-ppp
@@ -94,7 +94,7 @@ if [ -n "$WVDIALSECT" ] ; then
remotename $DEVICE ipparam $DEVICE \
${PPPOPTIONS} \
linkname $DEVICE \
- connect "/usr/bin/wvdial --chat $WVDIALSECT"
+ connect "/usr/bin/wvdial --remotename $DEVICE --chat $WVDIALSECT"
else
exec /usr/sbin/pppd -detach $opts $MODEMPORT $LINESPEED \
remotename $DEVICE ipparam $DEVICE \