hopefully fix duplicate ppp instances (#895)

SVN-Revision: 5577
This commit is contained in:
Felix Fietkau 2006-11-18 23:19:32 +00:00
parent f36dd71dcc
commit b1d1701fd6
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ done
# kill active ppp daemon and other processes
config_get ifname "$cfg" ifname
pids="$(cat /var/run/${ifname}.pid /var/run/ppp-${cfg}.pid 2>/dev/null)"
pids="$(head -n1 -q /var/run/${ifname}.pid /var/run/ppp-${cfg}.pid 2>/dev/null)"
for pid in $pids; do
[ -d "/proc/$pid" ] && {
kill $pid

View file

@ -10,7 +10,7 @@ start_pppd() {
# make sure only one pppd process is started
lock "/var/lock/ppp-${cfg}"
local pid="$(cat /var/run/ppp-${cfg}.pid 2>/dev/null)"
local pid="$(head -n1 /var/run/ppp-${cfg}.pid 2>/dev/null)"
[ -d "/proc/$pid" ] && grep pppd "/proc/$pid/cmdline" 2>/dev/null >/dev/null && {
lock -u "/var/lock/ppp-${cfg}"
return 0