You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
542 B
25 lines
542 B
8 years ago
|
---
|
||
6 years ago
|
- name: Converge
|
||
|
hosts: all
|
||
|
become: true
|
||
8 years ago
|
|
||
|
vars:
|
||
6 years ago
|
certbot_install_from_source: true
|
||
8 years ago
|
|
||
|
pre_tasks:
|
||
8 years ago
|
- name: Update apt cache.
|
||
|
apt: update_cache=yes cache_valid_time=600
|
||
|
when: ansible_os_family == 'Debian'
|
||
|
changed_when: false
|
||
|
|
||
8 years ago
|
- name: Install cron (RedHat).
|
||
|
yum: name=cronie state=present
|
||
|
when: ansible_os_family == 'RedHat'
|
||
|
|
||
8 years ago
|
- name: Install cron (Debian).
|
||
|
apt: name=cron state=present
|
||
|
when: ansible_os_family == 'Debian'
|
||
|
|
||
8 years ago
|
roles:
|
||
|
- geerlingguy.git
|
||
6 years ago
|
- geerlingguy.certbot
|