github.com/crowdsecurity/crowdsec@v1.6.1/test/ansible/debug_tools.yml (about) 1 # vim: set ft=yaml.ansible: 2 --- 3 4 - name: "Install debug tools" 5 hosts: all 6 become: true 7 tasks: 8 - name: "Install debug tools" 9 ansible.builtin.apt: 10 pkg: 11 - kitty 12 - neovim 13 - zsh 14 - zsh-autosuggestions 15 - zsh-syntax-highlighting 16 - zsh-theme-powerlevel9k 17 - silversearcher-ag 18 when: 19 - ansible_facts.os_family == "Debian"