From 633eda957d061ec4629452234fc9b6e3a9f54803 Mon Sep 17 00:00:00 2001 From: kiri Date: Sat, 31 Aug 2013 12:33:50 +0900 Subject: [PATCH] fix JSON extra vars quotation. --- docsite/latest/rst/playbooks2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/latest/rst/playbooks2.rst b/docsite/latest/rst/playbooks2.rst index 5c006c0edf..5b8a30b8c3 100644 --- a/docsite/latest/rst/playbooks2.rst +++ b/docsite/latest/rst/playbooks2.rst @@ -285,7 +285,7 @@ Example:: As of Ansible 1.2, you can also pass in extra vars as quoted JSON, like so:: - --extra-vars "{'pacman':'mrs','ghosts':['inky','pinky','clyde','sue']}" + --extra-vars '{"pacman":"mrs","ghosts":["inky","pinky","clyde","sue"]}' The key=value form is obviously simpler, but it's there if you need it!