Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

17 líneas
480 B

  1. # SPDX-FileCopyrightText: 2026 Chiu Ki Sit
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Detect Synology DSM
  6. ansible.builtin.stat:
  7. path: /etc/synoinfo.conf
  8. register: matrix_base_synoinfo_conf_stat
  9. when: matrix_base_host_is_synology is none
  10. - name: Set matrix_base_host_is_synology from detection
  11. ansible.builtin.set_fact:
  12. matrix_base_host_is_synology: "{{ matrix_base_synoinfo_conf_stat.stat.exists }}"
  13. when: matrix_base_host_is_synology is none