Execution
Date 20 Dec 2025 08:36:34 +0000
Duration 00:00:33.76
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.3 / 1.7.3
Python 3.10.10
Summary
5 Hosts
1 Tasks
5 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/zimbra/disable_tls_checks.yaml

---
- name: Playbook to disable tls check during migration
  hosts: all
  gather_facts: false
  tasks:
    - name: Disable TLS check
      ansible.builtin.shell: |
        set -o pipefail
        su -l zimbra -c "zmlocalconfig -e ldap_starttls_required=false"
        su -l zimbra -c "zmlocalconfig -e ldap_starttls_supported=0"
        su -l zimbra -c "zmcontrol restart"
      args:
        executable: /bin/bash
      changed_when: false