mirror of
https://github.com/roles-ansible/ansible_collection_users.git
synced 2024-08-16 10:29:50 +02:00
24 lines
606 B
YAML
24 lines
606 B
YAML
---
|
|
- name: Perform optional versionscheck
|
|
ansible.builtin.include_tasks:
|
|
file: 'versioncheck.yml'
|
|
when: submodules_versioncheck | bool
|
|
|
|
- name: Install dotfiles packages
|
|
ansible.builtin.include_tasks:
|
|
file: 'packages.yml'
|
|
|
|
- name: Setup and configure bashrc
|
|
ansible.builtin.include_tasks:
|
|
file: 'bashrc.yml'
|
|
when: l3d_users__bashrc | bool
|
|
|
|
- name: Setup and configure vimrc
|
|
ansible.builtin.include_tasks:
|
|
file: 'vimrc.yml'
|
|
when: l3d_users__vimrc | bool
|
|
|
|
- name: Setup and configure tmux
|
|
ansible.builtin.include_tasks:
|
|
file: 'tmux.yml'
|
|
when: l3d_users__tmuxcfg | bool
|