diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-03-02 21:36:31 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-03-02 21:38:37 +0100 |
commit | 59eb4f8df3ac8c58c28b2068678e1ce97dd58b6d (patch) | |
tree | 2e8e22cf8bcf90ec4fb188bb46dfe700cff69396 /roles/munin-master/tasks | |
parent | 9f8644f96e3226e7792a5db73ea7c35dfa09c13e (diff) |
Ansible: Using bare variables is deprecated, and will be removed in a future release.
Diffstat (limited to 'roles/munin-master/tasks')
-rw-r--r-- | roles/munin-master/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/munin-master/tasks/main.yml b/roles/munin-master/tasks/main.yml index 5dd1151..4b3cfb7 100644 --- a/roles/munin-master/tasks/main.yml +++ b/roles/munin-master/tasks/main.yml @@ -100,7 +100,7 @@ dest=/etc/stunnel/certs/munin-{{ hostvars[item].inventory_hostname_short }}.pem owner=root group=root mode=0644 - with_items: groups.all | difference([inventory_hostname]) + with_items: "{{ groups.all | difference([inventory_hostname]) }}" register: r1 notify: - Restart stunnel |