Pulizia generale dei ruoli: le installazioni systemwide sono nel deploy di ansible_mgmt.

This commit is contained in:
Emiliano Vavassori 2024-12-26 00:11:15 +01:00
parent 24908aa484
commit 353f316c1e
71 changed files with 5 additions and 885 deletions

View file

@ -0,0 +1,16 @@
---
# Configuration for base settings - Archlinux
- name: (arch) - ZSH base configuration
ansible.builtin.file:
src: "{{ dotfdir }}/zsh/distro/archlinux.base.zsh"
dest: "{{ dotfdir }}/zsh/distro.base.zsh"
state: link
when: ansible_lsb == [] or ansible_lsb.description == 'Arch Linux'
- name: (manj) - ZSH base configuration
ansible.builtin.file:
src: "{{ dotfdir }}/zsh/distro/manjaro.base.zsh"
dest: "{{ dotfdir }}/zsh/distro.base.zsh"
state: link
when: ansible_lsb != [] and ansible_lsb.description == 'Manjaro Linux'