From: Felix Fietkau Date: Tue, 21 Apr 2015 12:09:48 +0000 (+0200) Subject: proto-shell: retry setup if the proto handler script quits without changing the state... X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=d0dcf74 proto-shell: retry setup if the proto handler script quits without changing the state or starting a process Signed-off-by: Felix Fietkau --- diff --git a/proto-shell.c b/proto-shell.c index 7a1896b..bc4c658 100644 --- a/proto-shell.c +++ b/proto-shell.c @@ -284,9 +284,16 @@ proto_shell_task_finish(struct proto_shell_state *state, if (task == &state->proto_task) proto_shell_handler(&state->proto, PROTO_CMD_TEARDOWN, false); - if (task == &state->script_task && state->renew_pending) - proto_shell_handler(&state->proto, PROTO_CMD_RENEW, - false); + if (task == &state->script_task) { + if (state->renew_pending) + proto_shell_handler(&state->proto, + PROTO_CMD_RENEW, false); + else if (!state->proto_task.uloop.pending && + state->sm == S_SETUP) + proto_shell_handler(&state->proto, + PROTO_CMD_TEARDOWN, + false); + } break; case S_SETUP_ABORT: