ansible-roles/cloud-init/tasks/main.yml

21 lines
678 B
YAML

---
- block:
- name: cloud-init should not mess with the network settings
copy: src=99-disable-network-config.cfg dest=/etc/cloud/cloud.cfg.d/99-disable-network-config.cfg owner=root group=root mode=0644
when: cloud_init_disable_netconfig
tags: [ 'ovirt_cloud_init_net', 'ovirt' ]
- block:
- name: Remove the cloud-init package ond Debian based systems
apt: pkg=cloud-init state=absent
when: ansible_distribution_file_variety == 'Debian'
- name: Remove the cloud-init package on CentOS
yum: pkg=cloud-init state=absent
when: ansible_distribution_file_variety == 'RedHat'
when: cloud_init_remove_pkg
tags: [ 'ovirt_cloud_init', 'ovirt' ]