Skip to content

Commit

Permalink
Wait for all services just in case it affects installation?
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelgbanks committed Nov 7, 2024
1 parent 005c6f0 commit fed4d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drupal/rootfs/etc/s6-overlay/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ function configure {

function install {
wait_for_service "${SITE}" db
create_database "${SITE}"
install_site "${SITE}"
wait_for_service "${SITE}" broker
wait_for_service "${SITE}" fcrepo
wait_for_service "${SITE}" fits
wait_for_service "${SITE}" solr
wait_for_service "${SITE}" triplestore
create_database "${SITE}"
install_site "${SITE}"
create_blazegraph_namespace_with_default_properties "${SITE}"
if [[ "${DRUPAL_DEFAULT_FCREPO_URL}" == https* ]]; then
# Certificates might need to be generated which can take a minute or more.
Expand Down

0 comments on commit fed4d19

Please sign in to comment.