update_motd: apply conventions #71
2 changed files with 8 additions and 9 deletions
|
@ -148,15 +148,6 @@
|
|||
group: www-data
|
||||
mode: 0644
|
||||
|
||||
- name: Configure MOTD
|
||||
include_role:
|
||||
name: update_motd
|
||||
vars:
|
||||
motd_messages:
|
||||
- key: 10-nginx
|
||||
message: >-
|
||||
NGinx est installé sur ce serveur. Voir /etc/nginx.
|
||||
|
||||
- name: Clean old files
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
|
|
|
@ -15,14 +15,22 @@
|
|||
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
||||
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
||||
reverseproxy: '{{ glob_reverseproxy | default({}) | combine(loc_reverseproxy | default({})) }}'
|
||||
update_motd:
|
||||
nginx: >-
|
||||
Le reverse-proxy NGINX est déployé (/etc/nginx).
|
||||
roles:
|
||||
- certbot
|
||||
- nginx
|
||||
- update_motd
|
||||
|
||||
- hosts: nginx,!reverseproxy
|
||||
vars:
|
||||
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
||||
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
||||
update_motd:
|
||||
nginx: >-
|
||||
NGINX avec certbot est déployé (/etc/nginx).
|
||||
roles:
|
||||
- certbot
|
||||
- nginx
|
||||
- update_motd
|
||||
|
|
Loading…
Reference in a new issue