Merge "Fix bool evaluation for dedicated repl network"

This commit is contained in:
Jenkins 2016-09-27 13:52:01 +00:00 committed by Gerrit Code Review
commit 744d1dde70

View File

@ -126,6 +126,6 @@
- name: Set swift_dedicated_replication network if storage and replication addresses differ
set_fact:
swift_dedicated_replication: "{{ swift_storage_address != swift_replication_address | bool }}"
swift_dedicated_replication: "{{ swift_storage_address != swift_replication_address }}"
tags:
- always