Files @ 580b2e4cb9a3
Branch filter:

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

branko
MAR-218: Bump Ansible version to 10.4.x:

- Fix the requirements file not depending on the patch release.
- Bump all metadata to reference the new version.
---

- 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