From 8f2c51a1d9411654c181b20db3310cc825591fcd Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Fri, 25 May 2018 12:24:52 -0500 Subject: [PATCH] Issue #63: Try a different method of quoting the YAML extra-vars. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 207e0d0..4685245 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ 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)