瀏覽代碼

fix error when running with Ansible 2.7 in the hydrogen setup

Without this the hydrogen task would fail for Ansible 2.7 even when hydrogen is not enabled.
pull/1108/head
Thomas Kühne 4 年之前
父節點
當前提交
7f4e71b22a
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      roles/matrix-client-hydrogen/tasks/init.yml

+ 1
- 1
roles/matrix-client-hydrogen/tasks/init.yml 查看文件

@@ -3,7 +3,7 @@
- name: Fail if trying to self-build on Ansible < 2.8
fail:
msg: "To self-build the Hydrogen image, you should use Ansible 2.8 or higher. See docs/ansible.md"
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_client_hydrogen_container_image_self_build"
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_client_hydrogen_container_image_self_build and matrix_client_hydrogen_enabled"

- set_fact:
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-client-hydrogen.service'] }}"


Loading…
取消
儲存