wifilife: add option for continuous record logging

This commit is contained in:
Anjan Chanda 2018-12-12 17:35:22 +01:00
parent a71f0184e1
commit f1757d70f7

View file

@ -8,7 +8,7 @@ USE_PROCD=1
start_service() {
procd_open_instance
procd_set_param command ${PROG} -d -l
procd_set_param command ${PROG} -d -l -f -o /tmp/wifiagent.log
procd_set_param respawn
procd_close_instance
@ -16,7 +16,7 @@ start_service() {
config_load owsd
config_get enable ubusproxy enable
if [ "$enable" == "1" ]; then
procd_set_param command ${PROG} -c -d -l
procd_set_param command ${PROG} -c -d -l -f -o /tmp/wificntlr.log
fi
procd_close_instance
}