From 0be04d2b576a2b854a89fdb3326361d442788fb4 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 10 Apr 2013 19:21:35 -0400 Subject: [PATCH] Decided to not deprecate legacy template syntax for now. Backwards compat is important, though the docs will suggest the new way. --- bin/ansible-playbook | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bin/ansible-playbook b/bin/ansible-playbook index eaa65e95070..f14f6eddd0f 100755 --- a/bin/ansible-playbook +++ b/bin/ansible-playbook @@ -181,11 +181,6 @@ def main(args): pb.run() - if ansible.utils.template.Flags.LEGACY_TEMPLATE_WARNING: - print callbacks.banner("Deprecation Warnings") - print " legacy playbook variable references such as '$foo' will be removed in Ansible 1.4" - print " update playbooks to use '{{ foo }}' instead" - hosts = sorted(pb.stats.processed.keys()) print callbacks.banner("PLAY RECAP") playbook_cb.on_stats(pb.stats)