library/roles/egi/voms/tasks/main.yml: Add a task that creates the /etc/vomses directory.

This commit is contained in:
Andrea Dell'Amico 2017-02-27 15:50:56 +01:00
parent 0437fbeff3
commit 4e43f3da22
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@
- name: Enable the fetch-crls service. A cron job, really
service: name=fetch-crl-cron state=started enabled=yes
- name: Create the VOMS directory
file: dest={{ voms_config_base_directory }} state=directory
- name: Create the VOMS trusted anchors directories
file: dest={{ voms_trustanchors_base_directory }}/{{ item.name }} state=directory
with_items: '{{ voms_trusted_anchors_data }}'