diff --git a/.env.dist b/.env.dist index b87765402443853a11cc848663eab091d82b5d6b..b91c0290cf836096d74b4b41be38b9879899d408 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 78e90596cb35247d19a4d031d979580706b0c5dd..8d30d166412f4f3625a8a9df66b8322ac08fd4f7 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 {