feat(component): add mysql-client

Ensure that the MySQL client is installed so that it can be used with
vim-dadbod.
This commit is contained in:
Oliver Davies 2022-06-28 09:05:44 +01:00
parent d3402db56b
commit 2bb019400f
2 changed files with 8 additions and 0 deletions
group_vars
roles/mysql-client/tasks

View file

@ -11,6 +11,7 @@ default_roles:
- htop
- jq
- cargo
- mysql-client
- npm
- neovim
- neovim-lsp

View file

@ -0,0 +1,7 @@
---
- name: Install
ansible.builtin.package:
name:
- mysql-client
state: latest
become: true