separate out crin instead of domains

This commit is contained in:
David Kilias 2021-02-23 20:54:32 +01:00 committed by Gitea
parent eb6f5a815d
commit 5d8e8f9ded
9 changed files with 67 additions and 64 deletions

View file

@ -0,0 +1,4 @@
---
dehydrated_cron_minute: "0"
dehydrated_cron_hour: "3"
dehydrated_cron_day: "*/5"

View file

@ -0,0 +1,8 @@
---
- name: Install dehydrated cron job.
cron:
name: renew dehydrated certs
hour: "{{ dehydrated_cron_hour }}"
minute: "{{ dehydrated_cron_minute }}"
day: "{{ dehydrated_cron_day }}"
job: "{{ dehydrated_binary }} -c -g"

View file

@ -1,4 +1,4 @@
# Dehydrated Domains # Dehydrated
Ansible role to configure domains for use with dehydrated Ansible role to configure domains for use with dehydrated

View file

@ -6,7 +6,3 @@ dehydrated_binary: "/usr/local/bin/dehydrated"
dehydrated_config_dir: "/usr/local/etc/dehydrated" dehydrated_config_dir: "/usr/local/etc/dehydrated"
dehydrated_certs_dir: "{{ dehydrated_config_dir }}/certs" dehydrated_certs_dir: "{{ dehydrated_config_dir }}/certs"
dehydrated_wellknown_dir: "{{ dehydrated_config_dir }}/challenge" dehydrated_wellknown_dir: "{{ dehydrated_config_dir }}/challenge"
dehydrated_cron_minute: "0"
dehydrated_cron_hour: "3"
dehydrated_cron_day: "*/5"

View file

@ -0,0 +1,52 @@
---
- name: Gather package facts.
package_facts:
manager: "auto"
- name: Ensure git and curl are installed.
package:
name:
- git
- curl
state: present
- name: Clone dehydrated repo.
git:
repo: 'https://github.com/dehydrated-io/dehydrated.git'
dest: "{{ dehydrated_location }}"
version: "{{ dehydrated_version }}"
- name: Ensure dehydrated symlink is present.
file:
src: "{{ dehydrated_location }}/dehydrated"
dest: "{{ dehydrated_binary }}"
state: link
- name: Ensure config directory is present.
file:
path: "{{ dehydrated_config_dir }}"
state: directory
mode: "0711"
- name: Ensure wellknown directory is present.
file:
path: "{{ dehydrated_wellknown_dir }}"
state: directory
mode: "0755"
- name: Ensure certs directory is present.
file:
path: "{{ dehydrated_certs_dir }}"
state: directory
mode: "0700"
- name: Ensure domains.txt is present.
file:
path: "{{ dehydrated_config_dir }}/domains.txt"
state: touch
- name: Ensure config is present.
template:
src: config.j2
dest: "{{ dehydrated_config_dir }}/config"
notify: dehydrated register

View file

@ -1,60 +1,3 @@
--- ---
- name: Gather package facts. - include_tasks: install.yml
package_facts: - include_tasks: domains.yml
manager: "auto"
- name: Ensure git and curl are installed.
package:
name:
- git
- curl
state: present
- name: Clone dehydrated repo.
git:
repo: 'https://github.com/dehydrated-io/dehydrated.git'
dest: "{{ dehydrated_location }}"
version: "{{ dehydrated_version }}"
- name: Ensure dehydrated symlink is present.
file:
src: "{{ dehydrated_location }}/dehydrated"
dest: "{{ dehydrated_binary }}"
state: link
- name: Ensure config directory is present.
file:
path: "{{ dehydrated_config_dir }}"
state: directory
mode: "0711"
- name: Ensure wellknown directory is present.
file:
path: "{{ dehydrated_wellknown_dir }}"
state: directory
mode: "0755"
- name: Ensure certs directory is present.
file:
path: "{{ dehydrated_certs_dir }}"
state: directory
mode: "0700"
- name: Ensure domains.txt is present.
file:
path: "{{ dehydrated_config_dir }}/domains.txt"
state: touch
- name: Ensure config is present.
template:
src: config.j2
dest: "{{ dehydrated_config_dir }}/config"
notify: dehydrated register
- name: Install dehydrated cron job.
cron:
name: renew dehydrated certs
hour: "{{ dehydrated_cron_hour }}"
minute: "{{ dehydrated_cron_minute }}"
day: "{{ dehydrated_cron_day }}"
job: "{{ dehydrated_binary }} -c -g"