Recent posts

How to check yaml syntax

less than 1 minute read

Using python yaml module python -c 'import yaml, sys; print yaml.load(sys.stdin);' < my_playbook.yml If no syntax error exists, Python prints the content...

How to call groups in the inventory

less than 1 minute read

# To see all hosts in the inventory ansible all -i inventory --list-hosts ansible '*' -i inventory --list-hosts To see all hosts by wild cards ansible '*.ex...

Markdown cheatsheet

less than 1 minute read

Where to get markdown language syntax and cheat sheet?