From 0306096feed295dabb02412e496da8267b927cac Mon Sep 17 00:00:00 2001 From: Tim Miller Date: Thu, 27 Mar 2014 13:42:40 -0700 Subject: [PATCH] Fix typo in with_first_found doc. --- docsite/rst/playbooks_loops.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_loops.rst b/docsite/rst/playbooks_loops.rst index 3917228229f..f19776396ea 100644 --- a/docsite/rst/playbooks_loops.rst +++ b/docsite/rst/playbooks_loops.rst @@ -250,7 +250,7 @@ that matches a given criteria, and some of the filenames are determined by varia - name: INTERFACES | Create Ansible header for /etc/network/interfaces template: src={{ item }} dest=/etc/foo.conf with_first_found: - - "{{ansible_virtualization_type}_foo.conf" + - "{{ansible_virtualization_type}}_foo.conf" - "default_foo.conf" This tool also has a long form version that allows for configurable search paths. Here's an example::