13 lines
183 B
YAML
13 lines
183 B
YAML
|
---
|
||
|
- name: 'nginx reload'
|
||
|
systemd:
|
||
|
name: nginx
|
||
|
state: reloaded
|
||
|
tags: ['nginx']
|
||
|
|
||
|
- name: 'nginx restart'
|
||
|
systemd:
|
||
|
name: nginx
|
||
|
state: restarted
|
||
|
tags: ['nginx']
|