2019-08-17 16:30:12 +00:00
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
|
|
|
|
# Install python if required
|
|
|
|
# https://www.josharcher.uk/code/ansible-python-connection-failure-ubuntu-server-1604/
|
|
|
|
gather_facts: False
|
|
|
|
pre_tasks:
|
|
|
|
- name: install python for Ansible
|
|
|
|
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal python-setuptools)
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
|
|
|
register: output
|
|
|
|
changed_when: output.stdout != ""
|
|
|
|
- setup: # gather facts
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: install dependencies
|
|
|
|
apt:
|
2019-08-18 14:39:19 +00:00
|
|
|
pkg: ['nginx', 'docker-compose', 'docker.io', 'certbot', 'python-certbot-nginx']
|
|
|
|
|
|
|
|
- name: request initial letsencrypt certificate
|
|
|
|
command: certbot certonly --nginx --agree-tos -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
|
|
|
|
args:
|
|
|
|
creates: '/etc/letsencrypt/live/{{domain}}/privkey.pem'
|
2019-08-17 16:30:12 +00:00
|
|
|
|
|
|
|
- name: create lemmy folder
|
|
|
|
file: path={{item.path}} state=directory
|
|
|
|
with_items:
|
|
|
|
- { path: '/lemmy/' }
|
2019-08-17 22:54:58 +00:00
|
|
|
- { path: '/lemmy/volumes/' }
|
2019-08-17 16:30:12 +00:00
|
|
|
|
2020-01-28 16:38:23 +00:00
|
|
|
- block:
|
|
|
|
- name: add template files
|
|
|
|
template: src={{item.src}} dest={{item.dest}} mode={{item.mode}}
|
|
|
|
with_items:
|
|
|
|
- { src: 'templates/docker-compose.yml', dest: '/lemmy/docker-compose.yml', mode: '0600' }
|
|
|
|
- { src: 'templates/nginx.conf', dest: '/etc/nginx/sites-enabled/lemmy.conf', mode: '0644' }
|
|
|
|
|
|
|
|
- name: add config file (only during initial setup)
|
|
|
|
template: src='templates/config.hjson' dest='/lemmy/lemmy.hjson' mode='0600' force='no' owner='1000' group='1000'
|
2019-08-17 22:54:58 +00:00
|
|
|
vars:
|
|
|
|
postgres_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/postgres chars=ascii_letters,digits') }}"
|
|
|
|
jwt_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/jwt chars=ascii_letters,digits') }}"
|
2020-01-31 11:03:26 +00:00
|
|
|
lemmy_docker_image: "dessalines/lemmy:{{ lookup('file', 'VERSION') }}"
|
2019-08-17 16:30:12 +00:00
|
|
|
|
|
|
|
- name: enable and start docker service
|
|
|
|
systemd:
|
|
|
|
name: docker
|
|
|
|
enabled: yes
|
|
|
|
state: started
|
|
|
|
|
|
|
|
- name: start docker-compose
|
|
|
|
docker_compose:
|
2019-08-18 14:39:19 +00:00
|
|
|
project_src: /lemmy/
|
2019-08-17 16:30:12 +00:00
|
|
|
state: present
|
|
|
|
pull: yes
|
|
|
|
|
2019-08-18 14:39:19 +00:00
|
|
|
- name: reload nginx with new config
|
|
|
|
shell: nginx -s reload
|
|
|
|
|
2019-08-17 22:54:58 +00:00
|
|
|
- name: certbot renewal cronjob
|
2019-08-17 16:30:12 +00:00
|
|
|
cron:
|
|
|
|
special_time=daily
|
2019-08-18 14:39:19 +00:00
|
|
|
name=certbot-renew-lemmy
|
2019-08-17 16:30:12 +00:00
|
|
|
user=root
|
2019-08-18 14:39:19 +00:00
|
|
|
job="certbot certonly --nginx -d '{{ domain }}' --deploy-hook 'docker-compose -f /peertube/docker-compose.yml exec nginx nginx -s reload'"
|