Skip to content

🩺 Troubleshooting

Troubleshooting can be done by passing setting debug_enabled to true or passing in the -vvv argument.

Debug enabled

ansible-pull -e "debug_enabled=true" -U http://github.com/nicholaswilde/homelab-pull.git -i "$(uname -n),"

Verbose

ansible-pull -vvv -U http://github.com/nicholaswilde/homelab-pull.git -i "$(uname -n),"

Individual task files can be tested by using tags, such as test.

- name: Setup tmux
  ansible.builtin.include_tasks: 
    file: "tmux.yaml"
    apply:
      tags:
        - tmux
        - test
  tags:
    - always

Tag test

ansible-pull --tags test -U http://github.com/nicholaswilde/homelab-pull.git -i "$(uname -n),"