deprecation fixes

Sat, 19 Mar 2016 03:53:47 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 19 Mar 2016 03:53:47 -0400
changeset 15
8331067f9c8c
parent 14
ee98a4f82632
child 16
c781422f639f

deprecation fixes

roles/devbox/tasks/dist-debian.yml file | annotate | diff | comparison | revisions
roles/devbox/tasks/main.yml file | annotate | diff | comparison | revisions
--- a/roles/devbox/tasks/dist-debian.yml
+++ b/roles/devbox/tasks/dist-debian.yml
@@ -46,7 +46,7 @@
 
 - name: Install Extra packages
   apt: name={{item}} state=installed
-  with_items: extra_packages
+  with_items: "{{extra_packages}}"
   tags: packages, install
 
 
--- a/roles/devbox/tasks/main.yml
+++ b/roles/devbox/tasks/main.yml
@@ -50,7 +50,7 @@
     line: "{{item.value}}"
     create: true
     mode: 0600
-  with_dict: hostkeys
+  with_dict: "{{hostkeys}}"
   tags: user, ssh
 
 - name: ssh | Purge invalid known_hosts keys
@@ -60,7 +60,7 @@
     dest: "{{user.home}}/.ssh/known_hosts"
     state: absent
     line: "{{item.value}}"
-  with_dict: hostkeys_removed
+  with_dict: "{{hostkeys_removed}}"
   tags: user, ssh
 
 

mercurial