Fix various yamllint warnings
This commit is contained in:
parent
5dfd8eacc5
commit
bc1459bc51
4 changed files with 26 additions and 11 deletions
|
@ -2,7 +2,8 @@
|
|||
# Install Matrix Synapse on corresponding containers
|
||||
- hosts: synapse.adm.auro.re
|
||||
vars:
|
||||
mxisd_version: 1.3.1
|
||||
mxisd_releases: https://github.com/kamax-matrix/mxisd/releases
|
||||
mxisd_deb: "{{ mxisd_releases }}/download/v1.3.1/mxisd_1.3.1_all.deb"
|
||||
roles:
|
||||
- debian-backports
|
||||
- matrix-synapse
|
||||
|
|
|
@ -9,10 +9,26 @@
|
|||
dest: /etc/apt/preferences.d/nodejs
|
||||
mode: 0644
|
||||
|
||||
# TODO
|
||||
# apt-transport-https
|
||||
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
||||
# echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
||||
# For HTTPS apt
|
||||
- name: Install HTTPS apt
|
||||
apt:
|
||||
name: apt-transport-https
|
||||
update_cache: true
|
||||
register: apt_result
|
||||
retries: 3
|
||||
until: apt_result is succeeded
|
||||
|
||||
- name: Configure the apt key
|
||||
apt_key:
|
||||
url: https://dl.yarnpkg.com/debian/pubkey.gpg
|
||||
id: 1646B01B86E50310
|
||||
register: apt_key_result
|
||||
retries: 3
|
||||
until: apt_key_result is succeeded
|
||||
|
||||
- name: Configure Yarn repository
|
||||
apt_repository:
|
||||
repo: "deb https://dl.yarnpkg.com/debian/ stable main"
|
||||
|
||||
# Install CodiMD dependencies
|
||||
- name: Install required packages
|
||||
|
|
|
@ -69,10 +69,8 @@
|
|||
service:
|
||||
name: etherpad-lite
|
||||
state: started
|
||||
enabled: True
|
||||
|
||||
# La configuration de la clé `dbSettings` n'est pas encore automatisé !
|
||||
enabled: true
|
||||
|
||||
# TODO-list
|
||||
# * Configure admin user, logs
|
||||
# Plugins : https://framacloud.org/fr/cultiver-son-jardin/etherpad.html#concernant-framapad
|
||||
# La configuration de la clé `dbSettings` n'est pas encore automatisé !
|
||||
# * Configure logs
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
- name: Install mxisd
|
||||
apt:
|
||||
deb: https://github.com/kamax-matrix/mxisd/releases/download/v{{ mxisd_version }}/mxisd_{{ mxisd_version }}_all.deb
|
||||
deb: "{{ mxisd_deb }}"
|
||||
register: apt_result
|
||||
retries: 3
|
||||
until: apt_result is succeeded
|
||||
|
|
Loading…
Reference in a new issue