Skip to content
Snippets Groups Projects
Select Git revision
  • f83660a9146d6b964a44ddedab209b38aeccc203
  • master default
  • host01
  • ns4
  • kodi
5 results

Dockerfile

Blame
  • ansible-pre-commit 164 B
    #!/bin/sh -e
    echo "$@"
    for playbook in $@
    do
        ANSIBLE_ROLES_PATH=../ ansible-playbook \
            --inventory=localhost, \
            --syntax-check "$playbook"
    done