From d9eb15145541eb4efee1ea9ef80a5e31edf4a8a2 Mon Sep 17 00:00:00 2001
From: Claudiu Cristea <clau.cristea@gmail.com>
Date: Tue, 18 Oct 2022 18:04:18 +0300
Subject: [PATCH] ISAICP-7382: Ignore metatag_maintenance_mode requirement.

---
 .env.dist                       | 4 ++--
 scripts/check_status_report.php | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.env.dist b/.env.dist
index b877654024..b91c0290cf 100644
--- a/.env.dist
+++ b/.env.dist
@@ -92,11 +92,11 @@ DRUPAL_MAIL_SPOOL_DIR=/tmp/spool
 # search_api_solr_schema_joinup_modifications'.
 # See scripts/check_status_report.sh, .opts.yml
 # Default production ignores.
-DRUPAL_STATUS_REPORT_IGNORE="update status,joinup_core_root_user_blocked,search_api_solr_schema_joinup_modifications"
+DRUPAL_STATUS_REPORT_IGNORE="update status,joinup_core_root_user_blocked,search_api_solr_schema_joinup_modifications,deprecated_modules,metatag_maintenance_mode"
 # Specific testing pipeline ignores. Note, that all these ignored requirements
 # will be investigated in ISAICP-7232.
 # See https://citnet.tech.ec.europa.eu/CITnet/jira/browse/ISAICP-7232
-DRUPAL_STATUS_REPORT_IGNORE="${DRUPAL_STATUS_REPORT_IGNORE},configuration_files,cron,deprecated_modules,dropsolid_purge_configuration,maxage,temporary:///.htaccess,file system,redis"
+DRUPAL_STATUS_REPORT_IGNORE="${DRUPAL_STATUS_REPORT_IGNORE},configuration_files,cron,dropsolid_purge_configuration,maxage,temporary:///.htaccess,file system,redis"
 
 # Apache Solr endpoint. Naming of variables is related to the infrastructure.
 # Do NOT change.
diff --git a/scripts/check_status_report.php b/scripts/check_status_report.php
index 78e90596cb..8d30d16641 100755
--- a/scripts/check_status_report.php
+++ b/scripts/check_status_report.php
@@ -15,7 +15,7 @@
 
 $autoloader = require __DIR__ . '/../vendor/autoload.php';
 
-$ignored_requirements = getenv('DRUPAL_STATUS_REPORT_IGNORE') ?: 'update status,joinup_core_root_user_blocked,search_api_solr_schema_joinup_modifications';
+$ignored_requirements = getenv('DRUPAL_STATUS_REPORT_IGNORE') ?: 'update status,joinup_core_root_user_blocked,search_api_solr_schema_joinup_modifications,deprecated_modules,metatag_maintenance_mode';
 $ignored_option = "--ignore='$ignored_requirements'";
 
 function run_status_report(bool $title_only): ?string {
-- 
GitLab