Issue #63: Try using travis_wait without escaping the double quotes.

This commit is contained in:
Jeff Geerling 2018-05-25 12:08:40 -05:00
parent df25444b3f
commit d91ca374fa

View file

@ -36,7 +36,8 @@ script:
- "ansible-playbook main.yml --syntax-check"
# Test the playbook.
- "travis_wait 30 ansible-playbook --extra-vars '{\"configure_sudoers\":\"false\"}' main.yml"
- >
travis_wait 30 ansible-playbook --extra-vars '{"configure_sudoers":"false"}' main.yml
# Test the playbook's idempotence.
- idempotence=$(mktemp)