Execution
Date 06 Jun 2024 16:14:46 +0100
Duration 00:00:02.64
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.4
ara 1.7.1 / 1.7.1
Python 3.10.10
Summary
1 Hosts
1 Tasks
1 Results
1 Plays
1 Files
0 Records

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

---
- name: Playbook to check tls status
  hosts: all
  gather_facts: false
  tasks:
    - name: Show TLS check
      ansible.builtin.shell: |
        set -o pipefail
        su -l zimbra -c "zmlocalconfig -s ldap_starttls_required"
        su -l zimbra -c "zmlocalconfig -s ldap_starttls_supported"
      args:
        executable: /bin/bash
      changed_when: false