Sostituzione di prepare con un playbook che viene lanciato sulla macchina locale.
This commit is contained in:
parent
23343af106
commit
813cf57d54
78 changed files with 885 additions and 70 deletions
20
roles/zsh/tasks/config/archlinux.yml
Normal file
20
roles/zsh/tasks/config/archlinux.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
# 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
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
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
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
when: ansible_lsb != [] and ansible_lsb.description == 'Manjaro Linux'
|
Loading…
Add table
Add a link
Reference in a new issue