mirror of
https://yerbamate.ml/nutomic/peertube.social
synced 2024-11-25 00:38:41 -05:00
84 lines
2.6 KiB
YAML
84 lines
2.6 KiB
YAML
---
|
|
- 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:
|
|
pkg: ['docker-compose', 'docker.io', 'certbot']
|
|
|
|
- name: create peertube folder
|
|
file: path={{item.path}} state=directory
|
|
with_items:
|
|
- { path: '/peertube/volumes/' }
|
|
- { path: '/peertube/volumes/certbot/' }
|
|
|
|
- name: add all template files
|
|
template: src={{item.src}} dest={{item.dest}}
|
|
with_items:
|
|
- { src: 'templates/docker-compose.yml', dest: '/peertube/docker-compose.yml' }
|
|
- { src: 'templates/env', dest: '/peertube/.env' }
|
|
- { src: 'templates/nginx.conf', dest: '/peertube/nginx.conf' }
|
|
vars:
|
|
postgres_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/postgres chars=ascii_letters,digits') }}"
|
|
|
|
- name: set env file permissions
|
|
file:
|
|
path: "/peertube/.env"
|
|
state: touch
|
|
mode: 0600
|
|
access_time: preserve
|
|
modification_time: preserve
|
|
|
|
- name: add peertube config
|
|
get_url:
|
|
url: https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/config/production.yaml
|
|
dest: /peertube/volumes/config/production.yaml
|
|
mode: 0644
|
|
force: no
|
|
|
|
- name: request letsencrypt certificates
|
|
command: certbot certonly --standalone --agree-tos -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
|
|
args:
|
|
creates: '/etc/letsencrypt/live/{{domain}}/privkey.pem'
|
|
|
|
- name: enable and start docker service
|
|
systemd:
|
|
name: docker
|
|
enabled: yes
|
|
state: started
|
|
|
|
- name: start docker-compose
|
|
docker_compose:
|
|
project_src: /peertube/
|
|
state: present
|
|
pull: yes
|
|
|
|
- name: renew certbot certificates
|
|
cron:
|
|
special_time=daily
|
|
name=certbot-renew
|
|
user=root
|
|
job="certbot certonly --webroot --webroot-path=/peertube/volumes/certbot/ -d '{{ domain }}' --deploy-hook 'docker-compose -f /peertube/docker-compose.yml exec nginx nginx -s reload'"
|
|
|
|
- name: fetch root password
|
|
shell: "docker-compose -f /peertube/docker-compose.yml logs peertube | grep 'User password' | awk 'NF{ print $NF }'"
|
|
register: password
|
|
changed_when: False
|
|
|
|
- name: print root password
|
|
debug:
|
|
msg: "The admin login is user=root, password={{ password.stdout }}"
|
|
when: password.stdout != ""
|