Parcourir la source

Split `matrix_client_fluffychat_systemd_required_services_list` into `_default`, `_auto` and `_custom`

Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/4068
pull/4074/head
Slavi Pantaleev il y a 1 an
Parent
révision
76f235f494
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. +4
    -1
      roles/custom/matrix-client-fluffychat/defaults/main.yml

+ 4
- 1
roles/custom/matrix-client-fluffychat/defaults/main.yml Voir le fichier

@@ -74,7 +74,10 @@ matrix_client_fluffychat_container_labels_additional_labels: ''
matrix_client_fluffychat_container_extra_arguments: [] matrix_client_fluffychat_container_extra_arguments: []


# List of systemd services that matrix-client-fluffychat.service depends on # List of systemd services that matrix-client-fluffychat.service depends on
matrix_client_fluffychat_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
matrix_client_fluffychat_systemd_required_services_list: "{{ matrix_client_fluffychat_systemd_required_services_list_default + matrix_client_fluffychat_systemd_required_services_list_auto + matrix_client_fluffychat_systemd_required_services_list_custom }}"
matrix_client_fluffychat_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
matrix_client_fluffychat_systemd_required_services_list_auto: []
matrix_client_fluffychat_systemd_required_services_list_custom: []


# Specifies the value of the `X-XSS-Protection` header # Specifies the value of the `X-XSS-Protection` header
# Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks. # Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.


Chargement…
Annuler
Enregistrer