Sfoglia il codice sorgente

Rename Ansible playbook tag (setup-main -> setup-all)

pull/6/head
Slavi Pantaleev 7 anni fa
parent
commit
336785d1ed
3 ha cambiato i file con 17 aggiunte e 11 eliminazioni
  1. +6
    -0
      CHANGELOG.md
  2. +1
    -1
      README.md
  3. +10
    -10
      roles/matrix-server/tasks/main.yml

+ 6
- 0
CHANGELOG.md Vedi File

@@ -1,6 +1,12 @@
# 2018-08-08 # 2018-08-08




## Renaming Ansible playbook tag

The command for executing the whole playbook has changed.
The `setup-main` tag got renamed to `setup-all`.


## Docker container linking ## Docker container linking


Changed the way the Docker containers are linked together. The ones that need to communicate with others operate in a `matrix` network now and not in the default bridge network. Changed the way the Docker containers are linked together. The ones that need to communicate with others operate in a `matrix` network now and not in the default bridge network.

+ 1
- 1
README.md Vedi File

@@ -200,7 +200,7 @@ Run this as-is to set up a server.
This doesn't start any services just yet (another step does this later - below). This doesn't start any services just yet (another step does this later - below).
Feel free to re-run this any time you think something is off with the server configuration. Feel free to re-run this any time you think something is off with the server configuration.


ansible-playbook -i inventory/hosts setup.yml --tags=setup-main
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all




### Restoring an existing SQLite database (from another installation) ### Restoring an existing SQLite database (from another installation)


+ 10
- 10
roles/matrix-server/tasks/main.yml Vedi File

@@ -2,15 +2,15 @@


- include: tasks/setup_base.yml - include: tasks/setup_base.yml
tags: tags:
- setup-main
- setup-all


- include: tasks/setup_main.yml - include: tasks/setup_main.yml
tags: tags:
- setup-main
- setup-all


- include: tasks/setup_ssl.yml - include: tasks/setup_ssl.yml
tags: tags:
- setup-main
- setup-all
- setup-ssl - setup-ssl


- include: tasks/upgrade_postgres.yml - include: tasks/upgrade_postgres.yml
@@ -19,38 +19,38 @@


- include: tasks/setup_postgres.yml - include: tasks/setup_postgres.yml
tags: tags:
- setup-main
- setup-all
- setup-postgres - setup-postgres


- include: tasks/setup_s3fs.yml - include: tasks/setup_s3fs.yml
tags: tags:
- setup-main
- setup-all
- setup-s3fs - setup-s3fs


- include: tasks/setup_goofys.yml - include: tasks/setup_goofys.yml
tags: tags:
- setup-main
- setup-all
- setup-goofys - setup-goofys


- include: tasks/setup_coturn.yml - include: tasks/setup_coturn.yml
tags: tags:
- setup-main
- setup-all
- setup-coturn - setup-coturn


- include: tasks/setup_synapse.yml - include: tasks/setup_synapse.yml
tags: tags:
- setup-main
- setup-all
- setup-synapse - setup-synapse
- setup-coturn - setup-coturn


- include: tasks/setup_riot_web.yml - include: tasks/setup_riot_web.yml
tags: tags:
- setup-main
- setup-all
- setup-riot-web - setup-riot-web


- include: tasks/setup_nginx_proxy.yml - include: tasks/setup_nginx_proxy.yml
tags: tags:
- setup-main
- setup-all
- setup-nginx-proxy - setup-nginx-proxy


- include: tasks/start.yml - include: tasks/start.yml


Caricamento…
Annulla
Salva