New role for Debian-specific configuration.
[distorted-ansible] / roles / debian / tasks / main.yml
1 ### -*-yaml-*-
2 ###
3 ### Tasks applicable for all Debian hosts.
4
5 ---
6
7 ###--------------------------------------------------------------------------
8 ### PKI machinery.
9
10 - name: install PKI maintenance scripts
11 tags: [pki, pki-scripts]
12 copy: src=pki/{{ item }} dest=/etc/cron.daily/
13 with_items:
14 - update-ca-certs
15 - check-x509-certs
16
17 ###----- That's all, folks --------------------------------------------------