[oe-commits] Eric Bénard : ppp: fix poff

git version control git at git.openembedded.org
Fri Sep 24 13:17:09 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: dd955396c4521a882e037eae75bede4c647fd4b7
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=dd955396c4521a882e037eae75bede4c647fd4b7

Author: Eric Bénard <eric at eukrea.com>
Date:   Tue Sep 21 10:41:09 2010 +0200

ppp: fix poff

* the pid file contains several lines which breaks poff, even
if only one pppd is running
753
ppp0
753
pppd version 2.4.5

* by using pidoff to kill pppd this script works again

Signed-off-by: Eric Bénard <eric at eukrea.com>

---

 recipes/ppp/files/poff |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/recipes/ppp/files/poff b/recipes/ppp/files/poff
index 0521a94..b2042ef 100644
--- a/recipes/ppp/files/poff
+++ b/recipes/ppp/files/poff
@@ -2,6 +2,7 @@
 
 # Lets see how many pppds are running....
 set -- `cat /var/run/ppp*.pid 2>/dev/null`
+set -- `pidof pppd`
 
 case $# in
   0) # pppd only creates a pid file once ppp is up, so let's try killing pppd





More information about the Openembedded-commits mailing list