wifilife: v1.4.3: enable core dump

This commit is contained in:
Anjan Chanda 2019-10-02 09:27:01 +02:00
parent 36aea45a9d
commit c3e0749ec4

View file

@ -13,6 +13,7 @@ start_service() {
procd_open_instance
procd_set_param command ${PROG} -d -l -f -o /tmp/wifiagent.log
procd_set_param limits core="unlimited"
procd_set_param respawn
procd_close_instance
@ -22,6 +23,7 @@ start_service() {
if [ "$enable" == "1" ]; then
echo $enable > $ENABLE
procd_set_param command ${PROG} -c -d -l -f -o /tmp/wificntlr.log
procd_set_param limits core="unlimited"
fi
procd_close_instance
}