Remove LetsEncrypt role, it is no longer useful.

This commit is contained in:
staticsafe 2018-04-08 14:34:49 -04:00
parent 2dd075b853
commit bf36cacc89
4 changed files with 0 additions and 44 deletions

View File

@ -1,3 +0,0 @@
#!/usr/bin/env bash
letsencrypt renew
service nginx reload

View File

@ -1,3 +0,0 @@
---
- name: restart cron
service: name=cron state=restarted

View File

@ -1,31 +0,0 @@
---
- name: Install LetsEncrypt client
apt: name=letsencrypt state=latest
- name: stop nginx if it already is up and running
service: name=nginx state=stopped
register: result
ignore_errors: True
- name: Generate LetsEncrypt TLS certificates
shell: letsencrypt certonly -n -m "letsencrypt@sadiqsaif.ca" --agree-tos --webroot -d {{ item }} -w /srv/www/{{ item }}/
with_items:
- asininetech.com
- entropynet.net
- i.asininetech.com
- sadiqsaif.ca
- staticsafe.ca
- twoshadesofbrown.com
- wiki.staticsafe.ca
- sadiqsaif.com
- netdata.asininetech.net
- name: start nginx if we stopped it before
service: name=nginx state=started
when: result|succeeded
- name: Add a cron job to automatically renew LetsEncrypt certificates
copy: src=letsencrypt-renew dest=/etc/cron.daily/letsencrypt-renew mode=0700
notify:
- restart cron

View File

@ -21,13 +21,6 @@
roles:
- icinga-client
#- name: Generate LE certs on required servers
# hosts: webservers
# user: root
# roles:
# - letsencrypt
- hosts: webservers
roles: