diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2016-09-28 17:51:12 +0000 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2016-09-28 17:51:12 +0000 |
commit | b7dad2451e78aa48a6fe772d3879d07bf8b61e5e (patch) | |
tree | 28c63ec173a1a3c1f2f3617cd7955d34466a23d3 | |
parent | b64d7567f6ba2a8729d392237b4d996f2d76bfc7 (diff) | |
download | ansible-b7dad2451e78aa48a6fe772d3879d07bf8b61e5e.tar.gz ansible-b7dad2451e78aa48a6fe772d3879d07bf8b61e5e.tar.xz ansible-b7dad2451e78aa48a6fe772d3879d07bf8b61e5e.zip |
Mailman: oops, wrong env name
-rw-r--r-- | roles/mailman/templates/settings.py.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/mailman/templates/settings.py.j2 b/roles/mailman/templates/settings.py.j2 index f7043822e..2db72eb0e 100644 --- a/roles/mailman/templates/settings.py.j2 +++ b/roles/mailman/templates/settings.py.j2 @@ -348,7 +348,7 @@ LOGGING = { 'django.request': { 'handlers': [ 'file', - {% if env == 'prod' %} + {% if env == 'production' %} 'mail_admins', {% endif %} ], |