Files
ansible/delegation.md

233 B

Delegation

Run tasks on a different host:

- name: Restart service on web server
  service:
    name: apache2
    state: restarted
  delegate_to: "localhost"

# Delegate to a specific host:
# delegate_to: "webservers"