-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.yml
39 lines (34 loc) · 861 Bytes
/
update.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
- name: Pre tasks
hosts: all
become: true
tasks:
- name: Disable Fingerprint checking that may be enabled. When enabled, causes SSH issues.
command: authconfig --disablefingerprint --update
- name: Updating Matrix-Synapse
hosts: matrix_servers
become: true
tasks:
- name: Update all packages
package: name=* state=latest
- name: Updating docker containers
docker_compose:
project_src: "{{service_dir}}"
state: present
build: yes
- name: Updating LDAP
hosts: ldap_server
tasks:
- name: Update all packages
package: name=* state=latest
- name: Updating LDAP
docker_compose:
project_src: "{{service_dir}}/coturn"
state: present
build: yes
- name: Updating Proxy
hosts: nginx_servers
become: true
tasks:
- name: Update all packages
package: name=* state=latest