infra-ansible/playbook/dist-upgrade.yml~
2021-10-12 01:10:55 +02:00

20 lines
433 B
YAML

---
- 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
vars:
ansible_python_interpreter: /usr/bin/python3
reboot:
msg: "Attention au reboot !"