ansible-role-certbot/molecule/default/playbook-pip3-install.yml
2020-04-27 13:51:35 -07:00

35 lines
821 B
YAML

---
- name: Converge
hosts: all
become: true
vars:
certbot_auto_renew_user: root
pre_tasks:
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=600
when: ansible_os_family == 'Debian'
changed_when: false
- name: Install dependencies (RedHat).
yum: name={{ item }} state=present
with_items:
- cronie
- epel-release
when: ansible_os_family == 'RedHat'
- name: Install cron (Debian).
apt: name=cron state=present
when: ansible_os_family == 'Debian'
roles:
- role: geerlingguy.pip
pip_package: python3-pip
pip_executable: pip3
- role: geerlingguy.certbot
certbot_install_from_source: false
certbot_pkg_mgr: pip
certbot_pip_executable: pip3
certbot_plugins: ['dns-route53']