Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

21 wiersze
861 B

  1. # SPDX-FileCopyrightText: 2026 Chiu Ki Sit
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Ensure requests Python package is constrained for Docker SDK compatibility (Synology)
  6. ansible.builtin.pip:
  7. name: "{{ matrix_base_synology_requests_version_constraint }}"
  8. state: present
  9. # Run immediately during setup so matrix services can start without a manual
  10. # step. The boot-fix service handles this on every subsequent reboot.
  11. # noqa command-instead-of-module: ansible.builtin.mount does not support
  12. # changing mount propagation (--make-shared); command is the only option here.
  13. - name: Ensure /volume1 has shared mount propagation (Synology)
  14. ansible.builtin.command: mount --make-shared /volume1 # noqa command-instead-of-module
  15. changed_when: false
  16. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_synology_boot_fix.yml"