sandbox icon indicating copy to clipboard operation
sandbox copied to clipboard

runtime-packages has no installer and is not in cli script

Open ggwiebe opened this issue 1 year ago • 0 comments

The sandbox does not have an installer for the runtime-packages tool. Even if a binary of the runtime-packages tools is available, how does this get installed? And how does one use the tool, since the cli.py does not include runtime-packages in its main function:

MAPPING = {
    "ip-access-list-analyzer": ip_access_list_analyzer
}


def main(raw):
    payload = json.loads(raw)
    command = payload["command"]
    if command not in MAPPING:
        msg = f"cannot find command: {command}"
        raise KeyError(msg)

ggwiebe avatar Jan 17 '24 18:01 ggwiebe