kayobe/ansible/roles/disable-cloud-init/tasks/main.yml
Mark Goddard 71f493db77 Don't restart cloud-init when disabling it
Change-Id: I6e3ebdfc739d155c0953d43c878247fc590901c6
Story: 2001697
2018-03-20 10:43:02 +00:00

10 lines
183 B
YAML

---
- name: Disable cloud init service
file:
path: /etc/cloud/cloud-init.disabled
state: touch
mode: "u=rw,g=r,o=r"
notify:
- reload systemd daemon
become: True