スキル一覧に戻る
sigridjineth

ansible-debug

by sigridjineth

Ansible automation skills for Claude Code: playbook development, debugging, shell conversion, and interactive workflows.

8🍴 1📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: ansible-debug description: Use when playbooks fail with UNREACHABLE, permission denied, MODULE FAILURE, or undefined variable errors. Use when SSH connections fail or sudo password is missing.

Ansible Debugging

Overview

Ansible errors fall into four categories: connection, authentication, module, and syntax. Systematic diagnosis starts with identifying the category, then isolating the specific cause.

When to Use

  • UNREACHABLE errors (SSH/network issues)
  • Permission denied or sudo password errors
  • MODULE FAILURE messages
  • Undefined variable errors
  • Template rendering failures
  • Slow playbook execution

Error Categories

CategorySymptomsFirst Check
ConnectionUNREACHABLEssh -v user@host
AuthenticationPermission denied, Missing sudo passwordSSH keys, sudoers config
ModuleMODULE FAILUREModule parameters, target state
SyntaxYAML parse errorLine number in error, indentation

Quick Diagnosis

Connection Errors

# Test SSH directly
ssh -v -i /path/to/key user@hostname

# Test port connectivity
nc -zv hostname 22

# Verify inventory parsing
ansible-inventory --host hostname

Common causes:

  • Wrong IP/hostname in inventory
  • Firewall blocking port 22
  • SSH key permissions (must be 600)

Authentication Errors

# Test with explicit options
ansible hostname -m ping -u user --private-key /path/to/key

# For sudo password issues, either:
ansible-playbook playbook.yml --ask-become-pass
# Or configure NOPASSWD in /etc/sudoers

Module Errors

# Check module documentation
ansible-doc ansible.builtin.copy

# Verify module parameters match your Ansible version
ansible --version

Variable Errors

# Use default filter for optional variables
{{ my_var | default('fallback') }}

# Debug variable values
- ansible.builtin.debug:
    var: problematic_variable

Verbosity Levels

FlagShows
-vTask results
-vvTask input parameters
-vvvSSH connection details
-vvvvFull plugin internals

Start with -v, increase only if needed.

Debugging Commands

# Syntax check only
ansible-playbook --syntax-check playbook.yml

# Dry run
ansible-playbook --check playbook.yml

# Step through tasks
ansible-playbook --step playbook.yml

# Start at specific task
ansible-playbook --start-at-task "Task Name" playbook.yml

# Limit to specific host
ansible-playbook --limit hostname playbook.yml

Common Error Patterns

ErrorCauseFix
Permission denied (publickey)SSH key not acceptedCheck key permissions, verify authorized_keys
Missing sudo passwordbecome=true without passwordUse --ask-become-pass or configure NOPASSWD
No such file or directoryPath doesn't existCreate parent directories first
Unable to lock (apt/yum)Package manager lockedWait for other process, remove stale lock
undefined variableVariable not definedCheck spelling, use default() filter

Performance Debugging

# ansible.cfg
[defaults]
callback_whitelist = profile_tasks  # Show task timing

[ssh_connection]
pipelining = True                   # Faster SSH
# Skip fact gathering if not needed
- hosts: all
  gather_facts: no

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です