1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_dotfiles.git synced 2024-08-16 16:09:49 +02:00
ansible_role_dotfiles/tasks/main.yml

24 lines
540 B
YAML
Raw Normal View History

2018-11-15 10:26:52 +01:00
---
2023-10-31 00:34:06 +01:00
- name: Run optional versionscheck
ansible.builtin.include_tasks:
file: 'versioncheck.yml'
when: submodules_versioncheck | bool
2019-01-19 00:15:14 +01:00
2023-10-31 00:34:06 +01:00
- name: Deploy .bashrc
ansible.builtin.include_tasks:
file: 'bashrc.yml'
when: dotfiles__modify_bashrc | bool
2019-03-03 23:09:48 +01:00
2023-10-31 00:34:06 +01:00
- name: Deploy vimrc
ansible.builtin.include_tasks:
file: 'vimrc.yml'
2018-11-15 10:26:52 +01:00
2023-10-31 00:34:06 +01:00
- name: Deploy ranger config
ansible.builtin.include_tasks:
file: 'ranger.yml'
2022-04-12 00:23:15 +02:00
2023-10-31 00:34:06 +01:00
- name: Deploy .tmux.conf
ansible.builtin.include_tasks:
file: 'tmux.yml'
2022-04-12 00:23:15 +02:00
when: dotfiles__modify_tmux | bool