ansible 편의점을 테스트하는 여러 가지 방법을 찾고 있었으며이 블로그 게시물 Jeff Geerling을 발견했습니다. 내가 그것을 복제 할 때pipency를 사용하여 설치했을 때 역할을 찾지 못해도
그러나, 그의 정확한 예를 들어 작품을 복제하지만 다음과 같은 오류를 얻을 설치할 pipenv를 통해 파이썬 (그리고 ansible)를 관리
ERROR! the role 'ansible-test' was not found in /Users/philip/Desktop/ansible-test/tests/roles:/Users/philip/ansible-test:/Users/philip/Desktop/ansible-test/tests
The error appears to have been in '/Users/philip/Desktop/ansible-test/tests/test.yml': line 4, column 7, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
roles:
- ansible-test
^here
test.yml
의 내용은
- hosts: localhost
remote_user: root
roles:
- ansible-test
입니다
은 yamllint을 전달합니다.
ansible.cfg
나는 그것이 VIRTUALENV에있는 함께 할 수있는 뭔가 같은데요
[defaults]
roles_path = ../../ansible-test
포함되어 있지만 그것을 설명 할 수 없다.
Perfect. 설명 주셔서 감사합니다! –