From 020445465ce6ac285cd8c63c3b28eaf637e75cc2 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Wed, 6 Aug 2014 07:29:49 +0200 Subject: [PATCH] Remove spaces within {{}}, no comments --- playbooks/update_packages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playbooks/update_packages.yml b/playbooks/update_packages.yml index 4d5dcbab69..87f492f2a8 100644 --- a/playbooks/update_packages.yml +++ b/playbooks/update_packages.yml @@ -7,7 +7,7 @@ # --extra-vars="target='host1;host2' package='python-t*' testing=True" - name: push packages out - hosts: "{{ target }}" + hosts: "{{target}}" user: root vars: @@ -19,5 +19,5 @@ command: yum clean all {% if testing %} --enablerepo=infrastructure-testing {% endif %} always_run: yes - - name: yum update {{ package }} {% if testing %}(with infrastructure-testing on){% endif %} - yum: name={{ package }} state=latest {% if testing %}enablerepo=infrastructure-testing{% endif %} + - name: yum update {{package}} {% if testing %}(with infrastructure-testing on){% endif %} + yum: name={{package}} state=latest {% if testing %}enablerepo=infrastructure-testing{% endif %}