You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

  1. ---
  2. - name: Manage MariaDB client
  3. collections: [ 'debops.debops', 'debops.roles01',
  4. 'debops.roles02', 'debops.roles03' ]
  5. hosts: [ 'debian10' ]
  6. become: True
  7. environment: '{{ inventory__environment | d({})
  8. | combine(inventory__group_environment | d({}))
  9. | combine(inventory__host_environment | d({})) }}'
  10. vars:
  11. mariadb__flavor: '{{ ansible_local.mariadb.flavor|d(mariadb__flavor_map[ansible_distribution_release] | d("mariadb")) }}'
  12. mariadb__upstream_version: '10.5'
  13. roles:
  14. - role: secret
  15. - role: keyring
  16. tags: [ 'role::keyring', 'skip::keyring', 'role::mariadb' ]
  17. keyring__dependent_apt_keys:
  18. - '{{ mariadb__keyring__dependent_apt_keys }}'
  19. - role: python
  20. tags: [ 'role::python', 'skip::python', 'role::mariadb' ]
  21. python__dependent_packages3:
  22. - '{{ mariadb__python__dependent_packages3 }}'
  23. python__dependent_packages2:
  24. - '{{ mariadb__python__dependent_packages2 }}'
  25. - role: mariadb
  26. tags: [ 'role::mariadb', 'skip::mariadb' ]