--- - hosts: all tasks: - name: Change /etc/apt/sources.list template: src: /home/ansible/ansible/files/list-bullseye.j2 dest: /etc/apt/sources.list - name: Updating apt cache apt: update_cache=yes - name: Lauch upgrade apt: upgrade=dist - name: Reboot # Debian 11 utilise python3 et non plus python vars: ansible_python_interpreter: /usr/bin/python3 reboot: msg: "Attention au reboot !"