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:
parent
d3402db56b
commit
2bb019400f
|
@ -11,6 +11,7 @@ default_roles:
|
||||||
- htop
|
- htop
|
||||||
- jq
|
- jq
|
||||||
- cargo
|
- cargo
|
||||||
|
- mysql-client
|
||||||
- npm
|
- npm
|
||||||
- neovim
|
- neovim
|
||||||
- neovim-lsp
|
- neovim-lsp
|
||||||
|
|
7
roles/mysql-client/tasks/main.yaml
Normal file
7
roles/mysql-client/tasks/main.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
- name: Install
|
||||||
|
ansible.builtin.package:
|
||||||
|
name:
|
||||||
|
- mysql-client
|
||||||
|
state: latest
|
||||||
|
become: true
|
Loading…
Reference in a new issue