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.
pull/4420/head
Jeff Geerling 2014-01-27 12:09:54 -06:00
parent 8ff1b06879
commit 40e5f641e4
1 changed files with 1 additions and 1 deletions

View File

@ -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