aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-12-09 17:29:34 +0000
committerJohn Crispin <blogic@openwrt.org>2013-12-09 17:29:34 +0000
commitdba219f7c9b78ed62338a0331a198ed58bff8097 (patch)
treef137417185643bb329a600075b59c335545c7038 /package
parentc1cf0505c4a634e044919e71b1c7a028385d0a25 (diff)
downloadmaster-187ad058-dba219f7c9b78ed62338a0331a198ed58bff8097.tar.gz
master-187ad058-dba219f7c9b78ed62338a0331a198ed58bff8097.tar.bz2
master-187ad058-dba219f7c9b78ed62338a0331a198ed58bff8097.zip
netifd: enable coredumps again
got broken due procd startup. Requires procd resource limit patch. Signed-off-by: Ulrich Weber <uw@xyne.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39020 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-xpackage/network/config/netifd/files/etc/init.d/network8
-rw-r--r--package/system/procd/files/procd.sh5
2 files changed, 7 insertions, 6 deletions
diff --git a/package/network/config/netifd/files/etc/init.d/network b/package/network/config/netifd/files/etc/init.d/network
index 387fdbe5dd..9427a86357 100755
--- a/package/network/config/netifd/files/etc/init.d/network
+++ b/package/network/config/netifd/files/etc/init.d/network
@@ -6,13 +6,13 @@ STOP=90
USE_PROCD=1
start_service() {
- [ -e /proc/sys/kernel/core_pattern ] && {
- ulimit -c unlimited
- echo '/tmp/%e.%p.%s.%t.core' > /proc/sys/kernel/core_pattern
- }
procd_open_instance
procd_set_param command /sbin/netifd
procd_set_param respawn
+ [ -e /proc/sys/kernel/core_pattern ] && {
+ procd_set_param limits core="unlimited"
+ echo '/tmp/%e.%p.%s.%t.core' > /proc/sys/kernel/core_pattern
+ }
procd_close_instance
}
diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh
index 2f97a5d7d2..73beaaf6b2 100644
--- a/package/system/procd/files/procd.sh
+++ b/package/system/procd/files/procd.sh
@@ -17,6 +17,7 @@
# data: arbitrary name/value pairs for detecting config changes (table)
# file: configuration files (array)
# netdev: bound network device (detects ifindex changes)
+# limits: resource limits (passed to the process)
#
# No space separation is done for arrays/tables - use one function argument per command line argument
#
@@ -123,7 +124,7 @@ _procd_set_param() {
local type="$1"; shift
case "$type" in
- env|data)
+ env|data|limits)
_procd_add_table "$type" "$@"
;;
command|netdev|file|respawn)
@@ -177,7 +178,7 @@ _procd_append_param() {
json_select "$type"
case "$type" in
- env|data)
+ env|data|limits)
_procd_add_table_data "$@"
;;
command|netdev|file|respawn)