crowdsec/test/ansible/debug_tools.yml
2023-07-04 12:26:32 +02:00

19 lines
388 B
YAML

# vim: set ft=yaml.ansible:
---
- name: "Install debug tools"
hosts: all
become: true
tasks:
- name: "Install debug tools"
ansible.builtin.apt:
pkg:
- kitty
- neovim
- zsh
- zsh-autosuggestions
- zsh-syntax-highlighting
- zsh-theme-powerlevel9k
when:
- ansible_facts.os_family == "Debian"