mirror of
https://github.com/roles-ansible/ansible_role_dotfiles.git
synced 2024-08-16 16:09:49 +02:00
23 lines
540 B
YAML
23 lines
540 B
YAML
---
|
|
- name: Run optional versionscheck
|
|
ansible.builtin.include_tasks:
|
|
file: 'versioncheck.yml'
|
|
when: submodules_versioncheck | bool
|
|
|
|
- name: Deploy .bashrc
|
|
ansible.builtin.include_tasks:
|
|
file: 'bashrc.yml'
|
|
when: dotfiles__modify_bashrc | bool
|
|
|
|
- name: Deploy vimrc
|
|
ansible.builtin.include_tasks:
|
|
file: 'vimrc.yml'
|
|
|
|
- name: Deploy ranger config
|
|
ansible.builtin.include_tasks:
|
|
file: 'ranger.yml'
|
|
|
|
- name: Deploy .tmux.conf
|
|
ansible.builtin.include_tasks:
|
|
file: 'tmux.yml'
|
|
when: dotfiles__modify_tmux | bool
|