From 8db965d2eae58d8b63b8fe0db3de2181e1b05a22 Mon Sep 17 00:00:00 2001 From: Rosie Le Faive Date: Tue, 1 Nov 2022 13:09:55 -0300 Subject: [PATCH] Configure solr when islandora_defaults is not present. --- drupal/rootfs/etc/islandora/utilities.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drupal/rootfs/etc/islandora/utilities.sh b/drupal/rootfs/etc/islandora/utilities.sh index 39603b77..e0c4a93a 100755 --- a/drupal/rootfs/etc/islandora/utilities.sh +++ b/drupal/rootfs/etc/islandora/utilities.sh @@ -427,13 +427,12 @@ function configure_islandora_module { drush -l "${site_url}" -y user:role:add fedoraadmin admin } -# After enabling and importing features a number of configurations need to be updated. +# Configure Solr port and host. function configure_islandora_default_module { - if ! drush pm-list --pipe --type=module --status=enabled --no-core | grep -q islandora_defaults; then - echo "islandora_defaults is not installed. Skipping configuration" + if ! drush pm-list --pipe --type=module --status=enabled --no-core | grep -q search_api; then + echo "Search API is not installed. Skipping configuration" return 0 fi - local site="${1}"; shift local site_url=$(drupal_site_env "${site}" "SITE_URL") local host=$(drupal_site_env "${site}" "SOLR_HOST")