From d91ca374fa0c4c6055262364cf6cefb4495d55cf Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Fri, 25 May 2018 12:08:40 -0500 Subject: [PATCH] Issue #63: Try using travis_wait without escaping the double quotes. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2b2ca7b..4f94b77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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)