Skip to content

Commit

Permalink
Merge pull request #8 from hedii/deprecated-warnings
Browse files Browse the repository at this point in the history
Using bare variables is deprecated
  • Loading branch information
tersmitten committed Mar 30, 2016
2 parents 6027094 + ca52a16 commit a4847cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
file:
path: "{{ item.value.dest }}"
state: directory
with_dict: htop_htoprc_destinations
with_dict: "{{ htop_htoprc_destinations }}"
tags: [configuration, htop, htop-configuration]

- name: create configuration file
Expand All @@ -23,5 +23,5 @@
group: "{{ item.value.group | default(item.value.owner) | default('root') }}"
mode: "{{ item.value.mode | default('0644') }}"
force: "{{ 'yes' if htop_replace_htoprc else 'no' }}"
with_dict: htop_htoprc_destinations
with_dict: "{{ htop_htoprc_destinations }}"
tags: [configuration, htop, htop-configuration]

0 comments on commit a4847cb

Please sign in to comment.