Sostituzione di prepare con un playbook che viene lanciato sulla macchina locale.

This commit is contained in:
Emiliano Vavassori 2024-10-01 00:19:21 +02:00
parent 23343af106
commit 813cf57d54
78 changed files with 885 additions and 70 deletions

View file

@ -0,0 +1,25 @@
---
# Installing zsh and its dependency
- name: (Deb) Installing packages around zsh
ansible.builtin.apt:
name:
- zsh
- zsh-autosuggestions
- zsh-syntax-highlighting
state: present
update_cache: true
when: ansible_distribution == 'Debian'
become: true
- name: (ubu) Installing packages around zsh
ansible.builtin.apt:
name:
- zsh
- zsh-autosuggestions
- zsh-syntax-highlighting
- zsh-theme-powerlevel9k
state: present
update_cache: true
when: ansible_distribution == 'Ubuntu'
become: true