Issue #12: Add basic standalone certbot cert generation.

This commit is contained in:
Jeff Geerling
2017-12-06 22:48:30 -06:00
parent 574c0843c8
commit 7651f0ac0b
4 changed files with 71 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
---
- hosts: all
vars:
certbot_admin_email: https@servercheck.in
certbot_create_if_missing: yes
certbot_create_stop_services:
- nginx
certbot_certs:
- domains:
- certbot-test.servercheck.in
pre_tasks:
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=600
when: ansible_os_family == 'Debian'
changed_when: false
- name: Install cron (RedHat).
yum: name=cronie state=present
when: ansible_os_family == 'RedHat'
- name: Install cron (Debian).
apt: name=cron state=present
when: ansible_os_family == 'Debian'
roles:
- role_under_test