Skip to content

Commit

Permalink
Simplified testing role using Travis CI and docker containers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Dyson committed Sep 27, 2017
1 parent 707e88b commit 7663abe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
group: 'root'
owner: 'root'
mode: '0755'
with_items: 'fonts_shared | default(None) != None'
with_items: '{{ fonts_shared }}'
when: 'fonts_shared | default(None) != None'

- name: 'Fonts | Configure shared fonts.'
Expand All @@ -24,7 +24,7 @@
mode: '0644'
register: 'fonts_shared_installed'
notify: 'rebuild fonts cache'
with_items: 'fonts_shared | default(None) != None'
with_items: '{{ fonts_shared }}'
when: 'fonts_shared | default(None) != None'

- name: 'Fonts | Configure user font directories.'
Expand All @@ -35,7 +35,7 @@
owner: '{{ item.owner | default(item.name) }}'
group: '{{ item.group | default(omit) }}'
mode: '0755'
with_items: 'fonts_user | default(None) != None'
with_items: '{{ fonts_user }}'
when: 'fonts_user | default(None) != None'

- name: 'Fonts | Configure user fonts.'
Expand All @@ -48,5 +48,5 @@
mode: '{{ item.mode | default(omit) }}'
register: 'fonts_user_installed'
notify: 'rebuild fonts cache'
with_items: 'fonts_user | default(None) != None'
with_items: '{{ fonts_user }}'
when: 'fonts_user | default(None) != None'

0 comments on commit 7663abe

Please sign in to comment.