From 89398037337a9c1ccccf969bce0747a964c8389a Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Mon, 12 Jun 2023 11:10:22 +0200 Subject: [PATCH] add script url and path support --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7a32c33..29d8c1e 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,12 @@ The script step will execute a script. "steps": [ { "type": "script", + // use path for local scripts "path": "/global/install-docker.sh" // local path (here: resources/scripts/install-docker.sh) + // or use url for remote scripts + "url": "https://xyz.abc/scripts/install-docker.sh" // remote url + // or use lxc_path for scripts inside the lxc + "lxc_path": "/root/install-docker.sh" // lxc path } ] ```