Created
September 29, 2016 19:03
-
-
Save jbma/4c6d4638c0484a0fb553579ea1699898 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: download certbot | |
get_url: url=https://dl.eff.org/certbot-auto dest=/tmp/ | |
- name: Chmod Certbot | |
command: chmod a+x certbot-auto chdir=/tmp | |
- name: Generate the certificates | |
command: ./certbot-auto certonly --standalone --agree-tos -m [email protected] -n -d {{item}} chdir=/tmp | |
with_items: | |
- "{{url}}" | |
- support.{{url}} | |
- blog.{{url}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment