From 372352f35d9a3a32a2d22cae8862e4b1e70f9bfc Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Sat, 10 Dec 2016 15:24:36 +0100 Subject: [PATCH] Remove unused quotes - web_infrastructure/deploy_helper.py (#19157) --- lib/ansible/modules/web_infrastructure/deploy_helper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/web_infrastructure/deploy_helper.py b/lib/ansible/modules/web_infrastructure/deploy_helper.py index a40abda2427..3aec33ead4b 100644 --- a/lib/ansible/modules/web_infrastructure/deploy_helper.py +++ b/lib/ansible/modules/web_infrastructure/deploy_helper.py @@ -171,9 +171,9 @@ procedure to remove it during cleanup. path: /path/to/root - name: Clone the project to the new release folder git: - repo: 'git://foosball.example.org/path/to/repo.git' + repo: git://foosball.example.org/path/to/repo.git dest: '{{ deploy_helper.new_release_path }}' - version: 'v1.1.1' + version: v1.1.1 - name: Add an unfinished file, to allow cleanup on successful finalize file: path: '{{ deploy_helper.new_release_path }}/{{ deploy_helper.unfinished_filename }}' @@ -227,7 +227,7 @@ procedure to remove it during cleanup. # Using your own naming strategy for releases (a version tag in this case): - deploy_helper: path: /path/to/root - release: 'v1.1.1' + release: v1.1.1 state: present - deploy_helper: path: /path/to/root