ansible-role-certbot/tasks/install-with-package.yml
2017-07-04 19:30:03 +07:00

9 lines
204 B
YAML

---
- name: Install Certbot.
package: "name={{ item }} state=present"
with_items: "{{ certbot_package }}"
- name: Set Certbot script variable.
set_fact:
certbot_script: "{{ certbot_package }}"