Update to 2022-02-22 23:00

This commit is contained in:
Daniel Berteaud
2022-02-22 23:00:05 +01:00
parent 6b0f3de36b
commit aaec7274f9
14 changed files with 136 additions and 30 deletions

View File

@@ -3,5 +3,8 @@
- include: ../httpd_common/handlers/main.yml
- include: ../nginx/handlers/main.yml
- name: restart llng-fastcgi-server
service: name=llng-fastcgi-server state=restarted
- name: restart llng
service: name={{ (llng_server == 'nginx') | ternary((llng_engine == 'uwsgi') | ternary('llng-uwsgi', 'llng-fastcgi-server'), 'httpd') }} state=restarted
- name: reload llng
service: name={{ (llng_server == 'nginx') | ternary((llng_engine == 'uwsgi') | ternary('llng-uwsgi', 'llng-fastcgi-server'), 'httpd') }} state={{ (llng_server == 'nginx' and llng_engine == 'uwsgi') | ternary('reloaded', 'restarted') }}