🎨 Fix linter and delete useless script

This commit is contained in:
Emilien Mantel
2022-02-28 10:59:46 +01:00
parent fe7d09b9cd
commit 6a9d12c5eb

View File

@@ -22,6 +22,12 @@
- name: COMMAND | Launch MariaDB upstream setup script
ansible.builtin.command: '/tmp/mariadb_repo_setup --mariadb-server-version={{ mariadb_upstream_version }}'
changed_when: true
- name: FILE | Remove setup script
ansible.builtin.file:
path: '/tmp/mariadb_repo_setup'
state: absent
when: check_idempotent.rc > 0