]> arthur.barton.de Git - AnsibleRoles.git/blob - roles/apache2/handlers/main.yml
apt-base: Don't list "APT update" as "changed", even when run
[AnsibleRoles.git] / roles / apache2 / handlers / main.yml
1 ---
2 # apache2 handlers
3
4 - name: restart "apache2"
5   tags:
6     - apache
7   service: >
8     name=apache2
9     state=restarted
10
11 - name: reload "apache2"
12   tags:
13     - apache
14   service: >
15     name=apache2
16     state=reloaded
17
18 - name: reload "apache2" (graceful)
19   tags:
20     - apache
21   command: apache2ctl graceful