ansible-role-certbot/tasks/base.yml

16 lines
342 B
YAML
Raw Normal View History

2018-06-10 17:34:06 +00:00
- name: install certbot package
apt:
name: certbot
default_release: '{{ certbot_distribution|default(ansible_distribution_release) }}'
state: present
tags: certbot
- name: create webroot path directory
file:
path: '{{ certbot_path }}'
owner: root
group: root
mode: 0755
state: directory
tags: certbot