From e602d16158143ff2a9a6578e717228e7f61a9b01 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 27 Jan 2014 12:09:54 -0600 Subject: [PATCH] Update wait_for documentation - remove extra quote The timeout is in seconds (int), and the extra quote at the end could throw someone off if they're copying and pasting the example. --- utilities/wait_for | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/wait_for b/utilities/wait_for index bee2f003b6f..faf821e2749 100644 --- a/utilities/wait_for +++ b/utilities/wait_for @@ -84,7 +84,7 @@ author: Jeroen Hoekx, John Jarvis EXAMPLES = ''' # wait 300 seconds for port 8000 to become open on the host, don't start checking for 10 seconds -- wait_for: port=8000 delay=10" +- wait_for: port=8000 delay=10 # wait until the file /tmp/foo is present before continuing - wait_for: path=/tmp/foo