Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # SPDX-FileCopyrightText: 2026 Chiu Ki Sit
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
-
- - name: Detect Synology DSM
- ansible.builtin.stat:
- path: /etc/synoinfo.conf
- register: matrix_base_synoinfo_conf_stat
- when: matrix_base_host_is_synology is none
-
- - name: Set matrix_base_host_is_synology from detection
- ansible.builtin.set_fact:
- matrix_base_host_is_synology: "{{ matrix_base_synoinfo_conf_stat.stat.exists }}"
- when: matrix_base_host_is_synology is none
|