aboutsummaryrefslogtreecommitdiff
path: root/roles/apache/handlers/main.yml
blob: 3cbcfcc649bdc01b4a7d1ccfdd32f01dc4098236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: Restart apache
  systemd:
    name: apache2.service
    state: restarted
  become: yes

- name: Reload apache
  systemd:
    name: apache2.service
    state: reloaded
  become: yes

- name: Restart fpm
  systemd:
    name: '{{ item }}-fpm'
    state: restarted
    enabled: yes
  become: yes
  loop: '{{ php_versions }}'