Browse Source

fluffychat → commet

Signed-off-by: Suguru Hirahara <did🔑z6MkvVZk1A3KBApWJXv2Ju4H14ErDfRGxh8zxdXSZ4vACDg5>
pull/4997/head
Suguru Hirahara 1 day ago
parent
commit
d7eb0d3f98
No known key found for this signature in database GPG Key ID: E4F9743DAB4B7B75
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      roles/custom/matrix-client-commet/tasks/setup_install.yml

+ 5
- 5
roles/custom/matrix-client-commet/tasks/setup_install.yml View File

@@ -40,7 +40,7 @@
force: "yes" force: "yes"
become: true become: true
become_user: "{{ matrix_user_name }}" become_user: "{{ matrix_user_name }}"
register: matrix_client_fluffychat_git_pull_results
register: matrix_client_commet_git_pull_results


- name: Capture git hash - name: Capture git hash
ansible.builtin.command: ansible.builtin.command:
@@ -70,11 +70,11 @@


- name: Ensure Commet container image is pulled - name: Ensure Commet container image is pulled
community.docker.docker_image: community.docker.docker_image:
name: "{{ matrix_client_fluffychat_container_image }}"
name: "{{ matrix_client_commet_container_image }}"
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}" source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
force_source: "{{ matrix_client_fluffychat_container_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_client_fluffychat_container_image_force_pull }}"
when: "not matrix_client_fluffychat_container_image_self_build | bool"
force_source: "{{ matrix_client_commet_container_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_client_commet_container_image_force_pull }}"
when: "not matrix_client_commet_container_image_self_build | bool"
register: matrix_client_commet_image_pull_result register: matrix_client_commet_image_pull_result
retries: "{{ devture_playbook_help_container_retries_count }}" retries: "{{ devture_playbook_help_container_retries_count }}"
delay: "{{ devture_playbook_help_container_retries_delay }}" delay: "{{ devture_playbook_help_container_retries_delay }}"


Loading…
Cancel
Save