crowdsec/test/ansible/debug_tools.yml

20 lines
418 B
YAML
Raw Normal View History

# 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
- silversearcher-ag
2023-07-04 10:26:32 +00:00
when:
- ansible_facts.os_family == "Debian"