Skip to content
Snippets Groups Projects
Commit 59eab598 authored by Chris Croome's avatar Chris Croome
Browse files

Include the local_facts tasks after install task

parent 7bae7ea0
No related branches found
No related tags found
No related merge requests found
Pipeline #23410 passed
......@@ -18,10 +18,19 @@
- python3-mysqldb
state: present
update_cache: false
register: mariadb_install
notify: Restart mariadb
tags:
- mariadb_install
- name: Include local facts tasks
ansible.builtin.include_tasks: local_facts.yml
when: (mariadb_install is defined) and (mariadb_install.changed | bool)
tags:
- mariadb
- mariadb_install
- mariadb_local_facts
- name: Debian Jessie and Stretch legacy python-mysqldb present
ansible.builtin.apt:
pkg:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment