fix ansible quoting issues
Change-Id: I2a9043a843be9d26df733f3edc2bb3e944ae8af5
diff --git a/ansible/roles/buildtools/tasks/main.yml b/ansible/roles/buildtools/tasks/main.yml
index a147e6e..6c0e3faf 100644
--- a/ansible/roles/buildtools/tasks/main.yml
+++ b/ansible/roles/buildtools/tasks/main.yml
@@ -1,6 +1,6 @@
- name: Apt packages
apt:
name: "{{ item }}"
- with_items: apt_packages
+ with_items: "{{ apt_packages }}"
tags: [buildtools]
diff --git a/ansible/roles/common/tasks/main.yml b/ansible/roles/common/tasks/main.yml
index bedd98b..b358c67 100644
--- a/ansible/roles/common/tasks/main.yml
+++ b/ansible/roles/common/tasks/main.yml
@@ -9,13 +9,13 @@
dest: /etc/hosts
regexp: "^{{ item.host_ip }}"
line: "{{ item.host_ip }} {{ item.host_name }}"
- with_items: hosts
+ with_items: "{{ hosts }}"
tags: [common]
- name: Latest apt packages
apt:
name: "{{ item }}"
- with_items: use_latest_for
+ with_items: "{{ use_latest_for }}"
tags: [common]
- name: Services are not running
@@ -23,7 +23,7 @@
name: "{{ item }}"
state: stopped
ignore_errors: yes
- with_items: obsolete_services
+ with_items: "{{ obsolete_services }}"
tags: [common]
- name: Ensure known_hosts file is absent