2025-08-09 11:47:58 +03:00
|
|
|
- name: Bash config
|
|
|
|
|
ansible.builtin.import_tasks: bash.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'bash' in configure"
|
|
|
|
|
|
2025-08-09 11:47:58 +03:00
|
|
|
- name: Common cli tools config
|
|
|
|
|
ansible.builtin.import_tasks: cli.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'cli' in configure"
|
|
|
|
|
|
2025-08-09 11:47:58 +03:00
|
|
|
- name: Git config
|
|
|
|
|
ansible.builtin.import_tasks: git.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'git' in configure"
|
|
|
|
|
|
2025-08-09 11:47:58 +03:00
|
|
|
- name: Ssh config
|
|
|
|
|
ansible.builtin.import_tasks: ssh.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'ssh' in configure"
|
|
|
|
|
|
2025-08-09 11:47:58 +03:00
|
|
|
- name: GUI programs config
|
|
|
|
|
ansible.builtin.import_tasks: gui.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'gui' in configure"
|
|
|
|
|
|
2025-08-09 11:47:58 +03:00
|
|
|
- name: Script dirs config
|
|
|
|
|
ansible.builtin.import_tasks: scripts.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'scripts' in configure"
|
|
|
|
|
|
2025-08-09 11:47:58 +03:00
|
|
|
- name: Desctop envionment config
|
|
|
|
|
ansible.builtin.import_tasks: de.yml
|
2025-08-03 12:33:33 +03:00
|
|
|
when: "'de' in configure"
|