2022-04-06 12:06:01 +02:00
|
|
|
---
|
|
|
|
|
- hosts: all
|
|
|
|
|
become: true
|
|
|
|
|
tasks:
|
2022-09-11 19:09:57 +02:00
|
|
|
- name: Import related variables
|
|
|
|
|
ansible.builtin.include_vars:
|
|
|
|
|
file: debian-to-pbs.yml
|
2022-04-06 12:06:01 +02:00
|
|
|
- import_tasks: tasks/debian-general/hostname.yml
|
|
|
|
|
- import_tasks: tasks/debian-general/hosts-file.yml
|
|
|
|
|
- import_tasks: tasks/debian-general/repositories-bullseye.yml
|
2024-09-26 14:57:11 +02:00
|
|
|
when: ansible_facts["lsb"]["codename"] == "bullseye"
|
|
|
|
|
- import_tasks: tasks/debian-general/repositories-bookworm.yml
|
|
|
|
|
when: ansible_facts["lsb"]["codename"] == "bookworm"
|
2025-10-16 15:44:54 +02:00
|
|
|
- import_tasks: tasks/debian-general/repositories-trixie.yml
|
|
|
|
|
when: ansible_facts["lsb"]["codename"] == "trixie"
|
2024-09-26 14:57:11 +02:00
|
|
|
- import_tasks: tasks/debian-general/upgrade.yml
|
2025-10-16 15:44:54 +02:00
|
|
|
- import_tasks: tasks/debian-to-pbs/repositories.yml
|
2022-04-06 12:06:01 +02:00
|
|
|
- import_tasks: tasks/debian-general/upgrade.yml
|
|
|
|
|
- import_tasks: tasks/debian-to-pbs/pbs-server.yml
|