Files
Apps-Community/apps/_downloaders.yml
2019-02-12 14:13:48 -07:00

18 lines
592 B
YAML

- name: Creating download paths
file: 'path={{item}} state=directory mode=0775 owner=1000 group=1000'
with_items:
- '{{path.stdout}}/downloads/{{pgrole}}'
- name: Creating incomplete paths
file: 'path={{item}} state=directory mode=0775 owner=1000 group=1000'
with_items:
- '{{path.stdout}}/incomplete/{{pgrole}}'
when: incomplete.stdout | length == 0
- name: Creating incomplete paths
file: 'path={{item}} state=directory mode=0775 owner=1000 group=1000'
with_items:
- '{{incomplete.stdout}}/{{pgrole}}'
when: incomplete.stdout | length > 0
ignore_errors: yes