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:
|
2020-07-01 12:44:56 +00:00
|
|
|
- name: check lemmy_base_dir
|
|
|
|
fail:
|
2020-07-01 12:51:52 +00:00
|
|
|
msg: "`lemmy_base_dir` is unset. if you are upgrading from an older version, add `lemmy_base_dir=/lemmy` to your inventory file."
|
2020-07-01 12:44:56 +00:00
|
|
|
when: lemmy_base_dir is not defined
|
|
|
|
|
2019-08-17 16:30:12 +00:00
|
|
|
- name: install python for Ansible
|
2020-07-03 10:08:01 +00:00
|
|
|
# python2-minimal instead of python-minimal for ubuntu 20.04 and up
|
2020-10-22 14:32:56 +00:00
|
|
|
raw: test -e /usr/bin/python || (apt -y update && apt install -y python3-minimal python3-setuptools)
|
2019-08-17 16:30:12 +00:00
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
|
|
|
register: output
|
2020-07-01 12:44:56 +00:00
|
|
|
changed_when: output.stdout != ''
|
|
|
|
|
2019-08-17 16:30:12 +00:00
|
|
|
- setup: # gather facts
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: install dependencies
|
|
|
|
apt:
|
2020-07-01 12:44:56 +00:00
|
|
|
pkg:
|
|
|
|
- 'nginx'
|
|
|
|
- 'docker-compose'
|
|
|
|
- 'docker.io'
|
|
|
|
- 'certbot'
|
2020-07-03 10:08:01 +00:00
|
|
|
|
|
|
|
- name: install certbot-nginx on ubuntu < 20
|
|
|
|
apt:
|
|
|
|
pkg:
|
2020-07-01 12:44:56 +00:00
|
|
|
- 'python-certbot-nginx'
|
2020-07-04 11:46:08 +00:00
|
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '<')
|
2020-07-03 10:08:01 +00:00
|
|
|
|
|
|
|
- name: install certbot-nginx on ubuntu > 20
|
|
|
|
apt:
|
|
|
|
pkg:
|
|
|
|
- 'python3-certbot-nginx'
|
2020-07-04 11:46:08 +00:00
|
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
|
2019-08-18 14:39:19 +00:00
|
|
|
|
|
|
|
- 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
|
2020-07-01 12:44:56 +00:00
|
|
|
file:
|
|
|
|
path: '{{item.path}}'
|
|
|
|
owner: '{{item.owner}}'
|
|
|
|
state: directory
|
2019-08-17 16:30:12 +00:00
|
|
|
with_items:
|
2020-07-01 12:44:56 +00:00
|
|
|
- path: '{{lemmy_base_dir}}'
|
|
|
|
owner: 'root'
|
|
|
|
- path: '{{lemmy_base_dir}}/volumes/'
|
|
|
|
owner: 'root'
|
|
|
|
- path: '{{lemmy_base_dir}}/volumes/pictrs/'
|
|
|
|
owner: '991'
|
2019-08-17 16:30:12 +00:00
|
|
|
|
2020-01-28 16:38:23 +00:00
|
|
|
- block:
|
|
|
|
- name: add template files
|
2020-07-01 12:44:56 +00:00
|
|
|
template:
|
|
|
|
src: '{{item.src}}'
|
|
|
|
dest: '{{item.dest}}'
|
|
|
|
mode: '{{item.mode}}'
|
2020-01-28 16:38:23 +00:00
|
|
|
with_items:
|
2020-07-01 12:44:56 +00:00
|
|
|
- src: 'templates/docker-compose.yml'
|
|
|
|
dest: '{{lemmy_base_dir}}/docker-compose.yml'
|
|
|
|
mode: '0600'
|
|
|
|
- src: 'templates/nginx.conf'
|
|
|
|
dest: '/etc/nginx/sites-enabled/lemmy.conf'
|
|
|
|
mode: '0644'
|
|
|
|
- src: '../docker/iframely.config.local.js'
|
|
|
|
dest: '{{lemmy_base_dir}}/iframely.config.local.js'
|
|
|
|
mode: '0600'
|
|
|
|
vars:
|
2020-03-19 15:43:14 +00:00
|
|
|
lemmy_docker_image: "dessalines/lemmy:{{ lookup('file', 'VERSION') }}"
|
2020-09-24 13:47:24 +00:00
|
|
|
lemmy_docker_ui_image: "dessalines/lemmy-ui:{{ lookup('file', 'VERSION') }}"
|
2020-06-09 21:17:24 +00:00
|
|
|
lemmy_port: "8536"
|
2020-10-03 14:53:48 +00:00
|
|
|
lemmy_ui_port: "1235"
|
2020-06-09 21:17:24 +00:00
|
|
|
pictshare_port: "8537"
|
|
|
|
iframely_port: "8538"
|
2020-01-28 16:38:23 +00:00
|
|
|
|
|
|
|
- name: add config file (only during initial setup)
|
2020-07-01 12:44:56 +00:00
|
|
|
template:
|
|
|
|
src: 'templates/config.hjson'
|
|
|
|
dest: '{{lemmy_base_dir}}/lemmy.hjson'
|
|
|
|
mode: '0600'
|
|
|
|
force: false
|
|
|
|
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') }}"
|
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:
|
2020-07-01 12:44:56 +00:00
|
|
|
project_src: '{{lemmy_base_dir}}'
|
2019-08-17 16:30:12 +00:00
|
|
|
state: present
|
|
|
|
pull: yes
|
2020-06-15 17:46:57 +00:00
|
|
|
remove_orphans: yes
|
2019-08-17 16:30:12 +00:00
|
|
|
|
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:
|
2020-07-01 12:44:56 +00:00
|
|
|
special_time: daily
|
|
|
|
name: certbot-renew-lemmy
|
|
|
|
user: root
|
|
|
|
job: "certbot certonly --nginx -d '{{ domain }}' --deploy-hook 'nginx -s reload'"
|