Remove cloudinit package

certbot_on_virtu
Alexandre Iooss 2020-11-28 16:15:54 +01:00
parent a5c34c5d84
commit 4027adf08f
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
1 changed files with 11 additions and 0 deletions

View File

@ -53,3 +53,14 @@
- hosts: server,!virtu
roles:
- openssh
- hosts: server
tasks:
- name: Remove cloud-init
apt:
name: cloud-init
state: absent
purge: true
register: apt_result
retries: 3
until: apt_result is succeeded