mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-04-20 12:18:00 +03:00
Compare commits
4 Commits
3651a07f88
...
5abd9cfb11
| Author | SHA1 | Date | |
|---|---|---|---|
| 5abd9cfb11 | |||
| 6e4a0ab2a1 | |||
| 1fc1da393d | |||
| 5ee0b4f168 |
@@ -587,7 +587,7 @@ devture_systemd_service_manager_services_list_auto: |
|
|||||||
([{
|
([{
|
||||||
'name': (hydrogen_identifier + '.service'),
|
'name': (hydrogen_identifier + '.service'),
|
||||||
'priority': 2000,
|
'priority': 2000,
|
||||||
'restart_necessary': true,
|
'restart_necessary': (hydrogen_restart_necessary | bool),
|
||||||
'groups': ['matrix', 'clients', 'hydrogen', 'client-hydrogen'],
|
'groups': ['matrix', 'clients', 'hydrogen', 'client-hydrogen'],
|
||||||
}] if hydrogen_enabled else [])
|
}] if hydrogen_enabled else [])
|
||||||
+
|
+
|
||||||
@@ -650,7 +650,7 @@ devture_systemd_service_manager_services_list_auto: |
|
|||||||
([{
|
([{
|
||||||
'name': (ddclient_identifier + '.service'),
|
'name': (ddclient_identifier + '.service'),
|
||||||
'priority': 5000,
|
'priority': 5000,
|
||||||
'restart_necessary': true,
|
'restart_necessary': (ddclient_restart_necessary | bool),
|
||||||
'groups': ['matrix', 'ddclient', 'dynamic-dns'],
|
'groups': ['matrix', 'ddclient', 'dynamic-dns'],
|
||||||
}] if ddclient_enabled else [])
|
}] if ddclient_enabled else [])
|
||||||
+
|
+
|
||||||
@@ -720,7 +720,7 @@ devture_systemd_service_manager_services_list_auto: |
|
|||||||
([{
|
([{
|
||||||
'name': (ntfy_identifier + '.service'),
|
'name': (ntfy_identifier + '.service'),
|
||||||
'priority': 800,
|
'priority': 800,
|
||||||
'restart_necessary': true,
|
'restart_necessary': (ntfy_restart_necessary | bool),
|
||||||
'groups': ['matrix', 'ntfy'],
|
'groups': ['matrix', 'ntfy'],
|
||||||
}] if ntfy_enabled else [])
|
}] if ntfy_enabled else [])
|
||||||
+
|
+
|
||||||
@@ -769,7 +769,7 @@ devture_systemd_service_manager_services_list_auto: |
|
|||||||
([{
|
([{
|
||||||
'name': (valkey_identifier + '.service'),
|
'name': (valkey_identifier + '.service'),
|
||||||
'priority': 750,
|
'priority': 750,
|
||||||
'restart_necessary': true,
|
'restart_necessary': (valkey_restart_necessary | bool),
|
||||||
'groups': ['matrix', 'valkey'],
|
'groups': ['matrix', 'valkey'],
|
||||||
}] if valkey_enabled else [])
|
}] if valkey_enabled else [])
|
||||||
+
|
+
|
||||||
|
|||||||
+4
-4
@@ -17,7 +17,7 @@
|
|||||||
name: coturn
|
name: coturn
|
||||||
activation_prefix: coturn_
|
activation_prefix: coturn_
|
||||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-ddclient.git
|
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-ddclient.git
|
||||||
version: v4.0.0-0
|
version: v4.0.0-1
|
||||||
name: ddclient
|
name: ddclient
|
||||||
activation_prefix: ddclient_
|
activation_prefix: ddclient_
|
||||||
- src: git+https://github.com/geerlingguy/ansible-role-docker
|
- src: git+https://github.com/geerlingguy/ansible-role-docker
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
version: v11.6.5-6
|
version: v11.6.5-6
|
||||||
name: grafana
|
name: grafana
|
||||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-hydrogen.git
|
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-hydrogen.git
|
||||||
version: v0.5.1-0
|
version: v0.5.1-1
|
||||||
name: hydrogen
|
name: hydrogen
|
||||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-jitsi.git
|
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-jitsi.git
|
||||||
version: v10741-0
|
version: v10741-0
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
version: v1.9.11-1
|
version: v1.9.11-1
|
||||||
name: livekit_server
|
name: livekit_server
|
||||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-ntfy.git
|
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-ntfy.git
|
||||||
version: v2.17.0-0
|
version: v2.17.0-1
|
||||||
name: ntfy
|
name: ntfy
|
||||||
- src: git+https://github.com/devture/com.devture.ansible.role.playbook_help.git
|
- src: git+https://github.com/devture/com.devture.ansible.role.playbook_help.git
|
||||||
version: 8630e4f1749bcb659c412820f754473f09055052
|
version: 8630e4f1749bcb659c412820f754473f09055052
|
||||||
@@ -90,5 +90,5 @@
|
|||||||
version: v2.10.0-5
|
version: v2.10.0-5
|
||||||
name: traefik_certs_dumper
|
name: traefik_certs_dumper
|
||||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-valkey.git
|
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-valkey.git
|
||||||
version: v9.0.2-0
|
version: v9.0.2-1
|
||||||
name: valkey
|
name: valkey
|
||||||
|
|||||||
Reference in New Issue
Block a user