From 01875bc0b36189085ca0b79b48281ef28cdb8b1f Mon Sep 17 00:00:00 2001 From: velvettear Date: Fri, 18 Mar 2022 16:05:29 +0100 Subject: [PATCH] updated sample config --- sample-config.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sample-config.json b/sample-config.json index 41728f7..2bea21b 100644 --- a/sample-config.json +++ b/sample-config.json @@ -14,11 +14,11 @@ "command": "tail", "args": [ "-f", - "/tmp/test" + "/tmp/example" ], "options": { "detach": true, - "unique": "toggle" + "unique": true } }, { @@ -28,30 +28,30 @@ "args": [] }, { - "url": "/systemctl/docker", + "url": "/systemctl/example", "method": "get", "command": "systemctl", "args": [ "is-active", - "code-server@velvettear" + "example" ] }, { - "url": "/systemctl/docker/start", + "url": "/systemctl/example/start", "method": "post", "command": "systemctl", "args": [ "start", - "code-server@velvettear" + "example" ] }, { - "url": "/systemctl/docker/stop", + "url": "/systemctl/example/stop", "method": "post", "command": "systemctl", "args": [ "stop", - "code-server@velvettear" + "example" ] } ]