It makes little sense to execute rpcd ucode plugin scripts in template
mode since those scripts are supposed to output structured JSON data,
so change the parse config to compile scripts in raw mode.
Also initialize the default library search path which is required in
recent ucode versions.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-{%
-
'use strict';
let ubus = require('ubus').connect();
static uc_parse_config_t config = {
.strict_declarations = false,
.lstrip_blocks = true,
- .trim_blocks = true
+ .trim_blocks = true,
+ .raw_mode = true
};
script->path = strncpy(pptr, path, pathlen);
+ uc_search_path_init(&config.module_search_path);
uc_vm_init(&script->vm, &config);
rpc_ucode_init_globals(script);