mirror of
https://github.com/roles-ansible/ansible_role_dotfiles.git
synced 2024-08-16 16:09:49 +02:00
20 lines
568 B
YAML
20 lines
568 B
YAML
---
|
|
- name: rin optional versionscheck
|
|
ansible.builtin.include_tasks: versioncheck.yml
|
|
when: submodules_versioncheck | bool
|
|
|
|
- name: try to install libselinux-python via dnf
|
|
ansible.builtin.include_tasks: basic-selinux.yml
|
|
when:
|
|
- dotfiles__install_python_selinux | bool
|
|
- ansible_distribution == "Fedora"
|
|
|
|
- name: deploy .bashrc
|
|
ansible.builtin.include_tasks: bashrc.yml
|
|
when: dotfiles__modify_bashrc | bool
|
|
|
|
- name: deploy vimrc
|
|
ansible.builtin.include_tasks: vimrc.yml
|
|
|
|
- name: deploy ranger config
|
|
ansible.builtin.include_tasks: ranger.yml
|