17 lines
288 B
YAML
17 lines
288 B
YAML
---
|
|
- name: reload nginx
|
|
systemd:
|
|
name: nginx
|
|
state: reloaded
|
|
|
|
- name: rebuild trollibox
|
|
command: ./build.sh
|
|
args:
|
|
chdir: /opt/trollibox
|
|
environment: { RELEASE: 1 }
|
|
|
|
- name: restart trollibox
|
|
systemd:
|
|
name: trollibox
|
|
state: restarted
|
|
daemon_reload: true
|