From f87edb756fbc39b7b97081cb14748ff009dfe4b9 Mon Sep 17 00:00:00 2001 From: Greg Szabo Date: Sun, 30 Jul 2017 08:31:33 +0000 Subject: [PATCH] any_error fix --- ansible/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/install.yml b/ansible/install.yml index 871c0063d..e46bd6398 100644 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -3,7 +3,7 @@ #variable "service" is required - hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}:tag_Environment_{{ lookup('env','TF_VAR_TESTNET_NAME') | regex_replace('-','_') }}" - any_errors_fatal: "{{validators | bool | default(true)}}" + any_errors_fatal: "{{validators | default(true) | bool}}" roles: - install - {role: generic-service, when: service == 'tendermint'}