update name

This commit is contained in:
Ataxya 2021-10-12 01:10:55 +02:00
parent 690fa93078
commit ef2fb08525
5 changed files with 43 additions and 23 deletions

20
playbook/dist-upgrade.yml Normal file
View File

@ -0,0 +1,20 @@
---
- 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 !"

View File

@ -0,0 +1,19 @@
---
- 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 !"

View File

@ -1,6 +0,0 @@
- hosts: all
tasks:
- name: update a server
apt: update_cache=yes
- name: upgrade a server
apt: upgrade

View File

@ -1,19 +1,6 @@
---
- 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 !"
- name: update a server
apt: update_cache=yes
- name: upgrade a server
apt: upgrade