Run apt-get autoremove after rm cloud-init

We remove cloud-init but we don't remove the stuff it sucks in.
Run autoremove to take care of that.

Change-Id: I6530d7444197ec763d3695020200c411aed545b4
This commit is contained in:
Monty Taylor 2020-02-07 15:28:43 -06:00
parent 0463609584
commit 446a8917f8
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,9 @@
name: cloud-init
state: absent
- name: Get rid of cloud-init depends
command: apt-get autoremove -y
# Set hostname and /etc/hosts
# Inspired by:
# https://github.com/ansible/ansible/pull/8482)