Matrix Docker Ansible eploy
You can not select more than 25 topics
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
|