Browse Source

playbooks/remove_node.yml: fixes localhost validation task (#12420)

- Add gather_facts: false (no system facts needed for validation)
- Add become: false (no privilege escalation needed on localhost)
pull/11994/head
Romain Lalaut 2 months ago
committed by GitHub
parent
commit
d198b2ca53
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions
  1. 2
      playbooks/remove_node.yml

2
playbooks/remove_node.yml

@ -1,6 +1,8 @@
---
- name: Validate nodes for removal
hosts: localhost
gather_facts: false
become: false
tasks:
- name: Assert that nodes are specified for removal
assert:

Loading…
Cancel
Save