Browse Source

Update admin email variable

Emmanuel Bouthenot 10 years ago
parent
commit
d0d978f529
2 changed files with 3 additions and 3 deletions
  1. 1 1
      group_vars/all
  2. 2 2
      roles/common/templates/aliases.j2

+ 1 - 1
group_vars/all

@@ -12,7 +12,7 @@ admins:
   - user: manu
     fullname: Emmanuel Bouthenot
 
-email_forward: kolter@openics.org
+admin_email: kolter@openics.org
 
 hosts_deny_nfs: False
 host_deny_paranoid: False

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

@@ -15,6 +15,6 @@ logcheck:       root
 clamav:         root
 monit:          root
 
-{% if email_forward is defined %}
-root:           {{ email_forward }}
+{% if admin_email is defined %}
+root:           {{ admin_email }}
 {% endif %}