Compare commits
No commits in common. "f18368fc6f50ddba73c0e73796a5d0a5e89e9c59" and "31a6c7b87454c2c65bf54ad1f34b397336329e2f" have entirely different histories.
f18368fc6f
...
31a6c7b874
|
@ -7,4 +7,3 @@ acme_accounts_dir: "{{ acme_config_dir }}/accounts"
|
||||||
acme_account_key: "acme_account.key"
|
acme_account_key: "acme_account.key"
|
||||||
acme_ssl_group: ssl-cert
|
acme_ssl_group: ssl-cert
|
||||||
acme_challenge_dir: /var/www/acme
|
acme_challenge_dir: /var/www/acme
|
||||||
acme_domains: []
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
- name: Converge
|
|
||||||
hosts: all
|
|
||||||
|
|
||||||
roles:
|
|
||||||
- ansible-role-acme
|
|
|
@ -1,19 +0,0 @@
|
||||||
---
|
|
||||||
dependency:
|
|
||||||
name: galaxy
|
|
||||||
driver:
|
|
||||||
name: docker
|
|
||||||
platforms:
|
|
||||||
- name: buster-acme-molecule
|
|
||||||
image: debian:buster-slim
|
|
||||||
pre_build_image: true
|
|
||||||
- name: focal-acme-molecule
|
|
||||||
image: ubuntu:focal
|
|
||||||
pre_build_image: true
|
|
||||||
provisioner:
|
|
||||||
name: ansible
|
|
||||||
config_options:
|
|
||||||
defaults:
|
|
||||||
interpreter_python: /usr/bin/python3
|
|
||||||
verifier:
|
|
||||||
name: ansible
|
|
|
@ -1,10 +0,0 @@
|
||||||
- name: Prepare
|
|
||||||
hosts: all
|
|
||||||
gather_facts: no
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- name: Update apt cache
|
|
||||||
raw: apt update
|
|
||||||
|
|
||||||
- name: Install python3 package
|
|
||||||
raw: apt install -y --no-install-recommends python3
|
|
|
@ -1,14 +1,9 @@
|
||||||
- name: Install ACME dependencies
|
- name: Install ACME dependencies
|
||||||
package:
|
apt:
|
||||||
name: python3-acme
|
name: python3-acme
|
||||||
state: present
|
state: present
|
||||||
tags: acme_install
|
tags: acme_install
|
||||||
|
|
||||||
- name: Install SSL dependencies
|
|
||||||
package:
|
|
||||||
name: ssl-cert
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: Create Let's Encrypt config directories
|
- name: Create Let's Encrypt config directories
|
||||||
file:
|
file:
|
||||||
path: "{{ config_dir }}"
|
path: "{{ config_dir }}"
|
||||||
|
|
Loading…
Reference in New Issue