Skip to content

Commit

Permalink
Fix defaulting of use_geoapi when not using config repo
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Apr 15, 2020
1 parent 88ddbaa commit a680edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN
CVMFS_SERVER_URL="{{ item.urls | join(';') }}"
CVMFS_KEYS_DIR=/etc/cvmfs/keys/{{ item.domain }}
CVMFS_USE_GEOAPI="{{ item.use_geoapi | ternary('yes', 'no') }}"
CVMFS_USE_GEOAPI="{{ item.use_geoapi | default(false) | ternary('yes', 'no') }}"
dest: /etc/cvmfs/domain.d/{{ item.domain }}.conf
owner: root
group: root
Expand Down

0 comments on commit a680edd

Please sign in to comment.