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

21 lines
568 B
YAML
Raw Normal View History

2018-11-15 10:26:52 +01:00
---
2021-09-19 03:18:12 +02:00
- name: rin optional versionscheck
ansible.builtin.include_tasks: versioncheck.yml
when: submodules_versioncheck | bool
2019-01-19 00:15:14 +01:00
2021-09-19 03:18:12 +02:00
- name: try to install libselinux-python via dnf
ansible.builtin.include_tasks: basic-selinux.yml
2021-01-25 22:53:28 +01:00
when:
- dotfiles__install_python_selinux | bool
- ansible_distribution == "Fedora"
2019-07-01 14:52:09 +02:00
2021-09-19 03:18:12 +02:00
- name: deploy .bashrc
ansible.builtin.include_tasks: bashrc.yml
when: dotfiles__modify_bashrc | bool
2019-03-03 23:09:48 +01:00
2021-09-19 03:26:26 +02:00
- name: deploy vimrc
ansible.builtin.include_tasks: vimrc.yml
2018-11-15 10:26:52 +01:00
2021-09-19 03:26:26 +02:00
- name: deploy ranger config
ansible.builtin.include_tasks: ranger.yml