From b2c0f642d8655aae8a863712df5274b2db9b1439 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 23 Apr 2013 16:36:04 -0400 Subject: [PATCH] Remove stray file --- : | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 : diff --git a/: b/: deleted file mode 100644 index 20764fc824..0000000000 --- a/: +++ /dev/null @@ -1,23 +0,0 @@ -# in Ansible 1.2 and later, the $foo variable syntax, which is friendly enough for simple things -# has been upgraded to allow Jinja2 substitiutions as well, which is now the preferred Syntax. -# here is an example. Note that Jinja2 conditionals belong only in templates. Use ansible conditionals -# in playbooks. - ---- - - - hosts: all - vars: - a: '{{ ansible_os_family }}' - b: 'cat' - c: '{{ ansible_os_family }} / {{ a }}' - d: '{{ c }} / {{ a }}' - e: '{{ d }} / {{ ansible_hostname }}' - - - tasks: - - - debug: msg={{ e }} - - - shell: echo '{{ e }}' - -