ansible-role-certbot/tasks/install-with-package.yml
2025-05-04 21:35:24 +07:00

9 lines
207 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[0] }}"