35 lines
791 B
YAML
35 lines
791 B
YAML
---
|
|
- name: Install
|
|
ansible.builtin.package:
|
|
name:
|
|
- zsh
|
|
state: latest
|
|
become: true
|
|
|
|
- name: Set default
|
|
user:
|
|
name: "{{ ansible_env['USER'] }}"
|
|
shell: /usr/bin/zsh
|
|
become: yes
|
|
|
|
- name: Configuration
|
|
ansible.builtin.file:
|
|
src: "{{ role_path }}/files/{{ zsh_config_item.src }}"
|
|
path: "{{ zsh_config_item.path }}"
|
|
state: link
|
|
loop_control:
|
|
loop_var: zsh_config_item
|
|
with_items:
|
|
- { src: config, path: "{{ ansible_user_dir }}/.config/zsh" }
|
|
- { src: .zshenv, path: "{{ ansible_user_dir }}/.zshenv" }
|
|
|
|
- name: Delete old files
|
|
ansible.builtin.file:
|
|
path: "{{ old_files_item }}"
|
|
state: absent
|
|
loop_control:
|
|
loop_var: old_files_item
|
|
with_items:
|
|
- "{{ ansible_user_dir }}/.zsh"
|
|
- "{{ ansible_user_dir }}/.zshrc"
|