Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
786 B

  1. # SPDX-FileCopyrightText: 2024 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Prepare Matrix Authentication Service private key file path ({{ private_key_definition.key_file }})
  6. ansible.builtin.set_fact:
  7. matrix_authentication_service_private_key_file_path: "{{ matrix_authentication_service_data_keys_path }}/{{ private_key_definition.key_file }}"
  8. - name: Prepare Matrix Authentication Service private key file ({{ private_key_definition.key_file }})
  9. ansible.builtin.command:
  10. cmd: "{{ private_key_definition.generation_command | replace('__KEY_FILE_PATH__', matrix_authentication_service_private_key_file_path) }}"
  11. creates: "{{ matrix_authentication_service_private_key_file_path }}"
  12. become: true
  13. become_user: "{{ matrix_user_name }}"