mirror of https://github.com/hak5/openwrt-owl.git
netifd: enable coredumps again
got broken due procd startup. Requires procd resource limit patch. Signed-off-by: Ulrich Weber <uw@xyne.com> SVN-Revision: 39020owl
parent
0ef939c93b
commit
31a2912cd9
|
@ -6,13 +6,13 @@ STOP=90
|
||||||
USE_PROCD=1
|
USE_PROCD=1
|
||||||
|
|
||||||
start_service() {
|
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_open_instance
|
||||||
procd_set_param command /sbin/netifd
|
procd_set_param command /sbin/netifd
|
||||||
procd_set_param respawn
|
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
|
procd_close_instance
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
# data: arbitrary name/value pairs for detecting config changes (table)
|
# data: arbitrary name/value pairs for detecting config changes (table)
|
||||||
# file: configuration files (array)
|
# file: configuration files (array)
|
||||||
# netdev: bound network device (detects ifindex changes)
|
# 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
|
# 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
|
local type="$1"; shift
|
||||||
|
|
||||||
case "$type" in
|
case "$type" in
|
||||||
env|data)
|
env|data|limits)
|
||||||
_procd_add_table "$type" "$@"
|
_procd_add_table "$type" "$@"
|
||||||
;;
|
;;
|
||||||
command|netdev|file|respawn)
|
command|netdev|file|respawn)
|
||||||
|
@ -177,7 +178,7 @@ _procd_append_param() {
|
||||||
|
|
||||||
json_select "$type"
|
json_select "$type"
|
||||||
case "$type" in
|
case "$type" in
|
||||||
env|data)
|
env|data|limits)
|
||||||
_procd_add_table_data "$@"
|
_procd_add_table_data "$@"
|
||||||
;;
|
;;
|
||||||
command|netdev|file|respawn)
|
command|netdev|file|respawn)
|
||||||
|
|
Loading…
Reference in New Issue