From 81ba472f344d39f861b75d097cb2c42bac5a08ce Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com>
Date: Fri, 11 Jun 2021 16:58:06 +0200
Subject: [PATCH] Remove not present default_maintenance_email

---
 README.md         | 2 --
 defaults/main.yml | 3 ---
 2 files changed, 5 deletions(-)

diff --git a/README.md b/README.md
index 4c6ece0..689fe92 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,6 @@ Variables from default directory :
   * smtpuser: SMTP username (defaults to smtpuser)
   * smtppass: SMTP user password (defaults to veryUnsecurePassToBeModified)
   * git_mail_from: from address used in e-mail sent from GitLab (defaults to git@{{ domain }})
-* default_maintenance_email: maintenance e-mail used to request Let's Encrypt certificate (defaults to maintenance@{{ domain }})
 * SSO integration :
   * enable_omniauth: whether or not configure SSO integration (defaults to false)
   * sso_url: URL for SSO server
@@ -53,7 +52,6 @@ Including an example of how to use your role (for instance, with variables passe
          - { domain: "example.org" }
          - { git_url: "git.example.org" }
          - { real_mailserver: false }
-         - { default_maintenance_email: "maintenance@example.org" }
          - { enable_omniauth: false }
 
 License
diff --git a/defaults/main.yml b/defaults/main.yml
index 3101b1a..d2f23ba 100644
--- a/defaults/main.yml
+++ b/defaults/main.yml
@@ -10,9 +10,6 @@ smtpuser: smtpuser
 smtppass: veryUnsecurePassToBeModified
 git_mail_from: git@{{ domain }}
 
-# Maintenance e-mail for Let's Encrypt certificate
-default_maintenance_email: maintenance@{{ domain }}
-
 # SSO integration
 enable_omniauth: false
 sso_url: auth.{{ domain }}
-- 
GitLab