소스 검색

Make possible to set multiple admins emails

Emmanuel Bouthenot 10 년 전
부모
커밋
dd01626a87
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      roles/common/templates/aliases.j2

+ 2 - 2
roles/common/templates/aliases.j2

@@ -15,6 +15,6 @@ logcheck:       root
 clamav:         root
 monit:          root
 
-{% if admin_email is defined %}
-root:           {{ admin_email }}
+{% if admins_emails is defined %}
+root:           {{ admins_emails | join(', ') }}
 {% endif %}