From 3d45c47752a36e123895a8b4f7e6b30ac2d0b3a0 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 6 Nov 2015 22:58:15 +0100 Subject: json_script: add support for aborting script processing Signed-off-by: Felix Fietkau --- json_script.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'json_script.c') diff --git a/json_script.c b/json_script.c index 73c2502..22d8417 100644 --- a/json_script.c +++ b/json_script.c @@ -541,6 +541,9 @@ static int json_process_cmd(struct json_call *call, struct blob_attr *block) } blobmsg_for_each_attr(cur, block, rem) { + if (ctx->abort) + break; + switch(blobmsg_type(cur)) { case BLOBMSG_TYPE_STRING: if (!i) @@ -571,6 +574,8 @@ void json_script_run_file(struct json_script_ctx *ctx, struct json_script_file * if (!call.seq) call.seq = ++_seq; + ctx->abort = false; + __json_script_run(&call, file, NULL); } -- cgit v1.2.3