summaryrefslogtreecommitdiff
path: root/package/php/files/php.init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-29 14:23:16 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-29 14:23:16 +0100
commit2cdee9b21fe0ff3892b7796f3868930e94621c4e (patch)
treeda0d5c9d69fa423453f190aaa41efdacc093d96c /package/php/files/php.init
parent3653b9512dabcbdd90d0f98f63a39fd673233984 (diff)
fix init script, use kill -9, set memory_limit to a higher value
Diffstat (limited to 'package/php/files/php.init')
-rw-r--r--package/php/files/php.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/php/files/php.init b/package/php/files/php.init
index 210db4ad8..6d566d960 100644
--- a/package/php/files/php.init
+++ b/package/php/files/php.init
@@ -15,7 +15,7 @@ start)
/usr/bin/php ${php_flags} &
;;
stop)
- kill $(pgrep -f /usr/bin/php)
+ for i in $(pgrep -f /usr/bin/php);do kill -9 $i;done
;;
restart)
sh $0 stop