Skip to content

Commit

Permalink
Fixup: replace 'mariadb' Ansible variable name with 'docker'
Browse files Browse the repository at this point in the history
  • Loading branch information
medanthelinium committed Jan 20, 2025
1 parent 109a8f9 commit d770057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
state: absent

- name: Add Docker repository
register: mariadb_add_apt_repository
register: docker_add_apt_repository
ansible.builtin.deb822_repository:
name: "docker"
uris: "{{ docker.repository.apt }}"
Expand All @@ -50,7 +50,7 @@
- name: Update apt cache

Check warning on line 50 in tasks/install.yaml

View workflow job for this annotation

GitHub Actions / lint

no-handler

Tasks that run when changed should likely be handlers.

Check warning on line 50 in tasks/install.yaml

View workflow job for this annotation

GitHub Actions / lint

no-handler

Tasks that run when changed should likely be handlers.
ansible.builtin.apt:
update_cache: yes
when: mariadb_add_apt_repository.changed
when: docker_add_apt_repository.changed

- name: Install Docker and dependencies
block:
Expand Down

0 comments on commit d770057

Please sign in to comment.