diff options
author | John Crispin <blogic@openwrt.org> | 2012-09-28 22:37:04 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-09-28 22:37:04 +0000 |
commit | b38701d91e39a1c64a533f4d9ddd400786ae1cd1 (patch) | |
tree | ca3f4d1e94c7b332b0bdae1233fb33fa34f0bb79 /package/ltq-dsl-app/files/dsl_control | |
parent | 293dd74caa1fddb494e43c7b878ae27ceac4f58f (diff) | |
download | upstream-b38701d91e39a1c64a533f4d9ddd400786ae1cd1.tar.gz upstream-b38701d91e39a1c64a533f4d9ddd400786ae1cd1.tar.bz2 upstream-b38701d91e39a1c64a533f4d9ddd400786ae1cd1.zip |
[ltq-dsl] remove dependency for pkill
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33594 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ltq-dsl-app/files/dsl_control')
-rw-r--r-- | package/ltq-dsl-app/files/dsl_control | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ltq-dsl-app/files/dsl_control b/package/ltq-dsl-app/files/dsl_control index e833854301..02e89a0fd7 100644 --- a/package/ltq-dsl-app/files/dsl_control +++ b/package/ltq-dsl-app/files/dsl_control @@ -15,7 +15,7 @@ SERVICE_WRITE_PID=1 # Basic functions to send CLI commands to the dsl_cpe_control daemon # dsl_cmd() { - pkill -0 dsl_cpe_control && ( + killall -0 dsl_cpe_control && ( echo "$@" > /tmp/pipe/dsl_cpe0_cmd cat /tmp/pipe/dsl_cpe0_ack ) |