2022-04-06 12:07:28 +02:00
|
|
|
---
|
|
|
|
|
- hosts: all
|
|
|
|
|
become: true
|
|
|
|
|
tasks:
|
|
|
|
|
- import_tasks: tasks/debian-general/git.yml
|
2026-01-05 23:11:28 +01:00
|
|
|
when: ansible_facts["distribution"] == "Debian"
|
2022-06-25 22:49:10 +02:00
|
|
|
- import_tasks: tasks/debian-general/hostname-package.yml
|
2026-01-05 23:11:28 +01:00
|
|
|
when: ansible_facts["distribution"] == "Debian"
|
2022-06-25 22:49:10 +02:00
|
|
|
- import_tasks: tasks/rhel-general/git.yml
|
2026-01-05 23:11:28 +01:00
|
|
|
when: ansible_facts["distribution"] == "RedHat"
|
2022-06-25 22:49:10 +02:00
|
|
|
- import_tasks: tasks/rhel-general/hostname-package.yml
|
2026-01-05 23:11:28 +01:00
|
|
|
when: ansible_facts["distribution"] == "RedHat"
|
2022-06-25 22:49:10 +02:00
|
|
|
- import_tasks: tasks/general/personal-linux-config.yml
|