Add playbook for fully shutting down a host

This commit is contained in:
2021-10-28 00:35:31 -04:00
parent 7ea4d070ee
commit 9e0c0505b3

View File

@@ -0,0 +1,9 @@
---
- ansible.builtin.import_playbook: node-down.yaml
- name: Shutdown node
hosts: "{{ node }}"
tasks:
- name: Shutdown node
become: true
community.general.shutdown: