Update to 2020-06-24 11:00

master
Daniel Berteaud 4 years ago
parent 8be87245e0
commit 72e282f766
  1. 2
      roles/patrix/tasks/main.yml
  2. 2
      roles/zimbra/tasks/main.yml

@ -1,6 +1,6 @@
---
- include_tasks: install_{{ ansible_os_family }}.yml
- include: install_{{ ansible_os_family }}.yml
- name: Deploy patrix config for root user
template: src=patrixrc.j2 dest=/root/.patrixrc mode='600'

@ -32,7 +32,7 @@
- name: Exit if not installed
meta: end_host
when: zcs_install != True and not zcs_zmprov.stat.exists
when: zcs_install != True and (zcs_zmprov is not defined or zcs_zmprov.stat is not defined or not zcs_zmprov.stat.exists)
tags: zcs
- set_fact: zcs_i_am_primary_ldap={{ (inventory_hostname == zcs_primary_ldap) | ternary(True,False) }}

Loading…
Cancel
Save