From a9ec7d6afa3fa976c097932ecba3f7d3dff5f66b Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 31 Oct 2016 16:49:08 -0400 Subject: [PATCH] Fix example --- website/source/docs/job-specification/service.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/job-specification/service.html.md b/website/source/docs/job-specification/service.html.md index 9aa29fbf2..ce94cc1da 100644 --- a/website/source/docs/job-specification/service.html.md +++ b/website/source/docs/job-specification/service.html.md @@ -203,7 +203,7 @@ service { check { type = "script" command = "/bin/bash" - args = ["test", "-f", "/tmp/file.txt"] + args = ["-c", "test -f /tmp/file.txt"] } } ```