ansible-error-handling

Installation
SKILL.md

Ansible Error Handling

Patterns for robust error handling in Ansible playbooks and roles.

Block/Rescue/Always Pattern

Handle errors and perform cleanup:

- name: Deploy application
  block:
    - name: Stop application
      ansible.builtin.systemd:
        name: myapp
        state: stopped
Installs
9
GitHub Stars
22
First Seen
Feb 25, 2026
ansible-error-handling — basher83/lunar-claude