12 lines
233 B
YAML
12 lines
233 B
YAML
- name: restart grafana
|
|
service:
|
|
name: grafana
|
|
state: restarted
|
|
when: "'handler' not in ansible_skip_tags"
|
|
|
|
- name: reload nginx
|
|
service:
|
|
name: nginx
|
|
state: reloaded
|
|
when: "'handler' not in ansible_skip_tags"
|