chore!: separated galaxy deps and own collections; modified ansible script generation to use two paths for collections
REQUIRES REGENERATING ansible.cfg!
This commit is contained in:
parent
4af69c31ce
commit
888590ed9f
188 changed files with 30 additions and 30 deletions
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
- name: setup server
|
||||
include_tasks: server.yml
|
||||
when: mariadb_install_server is truthy
|
||||
|
||||
- name: setup client
|
||||
include_tasks: client.yml
|
||||
when: mariadb_install_client is truthy
|
||||
|
||||
- name: install firewall rules
|
||||
become: true
|
||||
template:
|
||||
src: ../templates/nftables.d/mariadb.nft.j2
|
||||
dest: /etc/nftables.d/mariadb.nft
|
||||
mode: '0600'
|
||||
register: nft_rule
|
||||
|
||||
- name: load firewall rules
|
||||
become: true
|
||||
ansible.builtin.command: /usr/sbin/nft -f /etc/nftables.d/mariadb.nft
|
||||
when: nft_rule.changed
|
Loading…
Add table
Add a link
Reference in a new issue