From fa75853ef186d78ef40a11abe67bec77abe7a9c7 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Mon, 9 Apr 2018 16:01:31 +0000 Subject: [PATCH] Switched to single quoted strings in YAML Avoid unnecessary escape sequence processing. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 937720d..dd4592c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,7 +2,7 @@ - name: install common command line tools become: yes apt: - name: "{{ item }}" + name: '{{ item }}' state: present with_items: - curl