Add role certbot
This commit is contained in:
parent
97c91fb3c0
commit
50f4558e42
3 changed files with 9 additions and 0 deletions
|
@ -1,2 +1,3 @@
|
|||
dependencies:
|
||||
- role: apache-install
|
||||
- role: certbot
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
dependencies:
|
||||
- role: apache-install
|
||||
- role: certbot
|
||||
|
|
7
roles/certbot/tasks/main.yml
Normal file
7
roles/certbot/tasks/main.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: Install certbot
|
||||
become: true
|
||||
apt:
|
||||
name: certbot
|
||||
state: present
|
||||
update_cache: yes
|
Loading…
Reference in a new issue