Files @ 5eb7821a1e4d
Branch filter:

Location: majic-ansible-roles/roles/web_server/handlers/main.yml

branko
MAR-218: Switch to using ldap_attrs module:

- Update invocations and syntax.
- Drop the workaround for configuring TLS on the LDAP server (should
be possible to set all relevant attributes at the same time at this
point).
- Group some invocations where it makes sense.
---

- name: Reload systemd
  ansible.builtin.systemd:
    daemon_reload: true

- name: Restart nginx
  ansible.builtin.service:
    name: nginx
    state: restarted

- name: Restart PHP-FPM
  ansible.builtin.service:
    name: "{{ php_fpm_service_name }}"
    state: restarted