Skip to content

Commit

Permalink
Add project-specific startup script support (e.g. for cron configurat…
Browse files Browse the repository at this point in the history
…ion)

Allow user to add *.sh files to  `$HOST_PATH_HTTPD_DATADIR/*/.devilbox/autostart` which will then be executed on startup of the php container.
  • Loading branch information
martin-rueegg committed Dec 16, 2022
1 parent 06cb912 commit bc65179
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
#!/usr/bin/env bash

set -e
set -u
set -o pipefail

############################################################
# Functions
############################################################

###
### Execute project-supplied scripts
###
execute_project_scripts() {
local debug="${1}"
local script_dir
local script_name
local DEVILBOX_PROJECT_DIR
local DEVILBOX_PROJECT_NAME
local DEVILBOX_PROJECT_DOCROOT

for DEVILBOX_PROJECT_DIR in /shared/httpd/*; do

script_dir=${DEVILBOX_PROJECT_DIR}/.devilbox/autostart

if [ -d "${DEVILBOX_PROJECT_DIR}" ] && [ -d "${script_dir}" ]; then

DEVILBOX_PROJECT_NAME=$(basename "${DEVILBOX_PROJECT_DIR}")
export DEVILBOX_PROJECT_NAME

DEVILBOX_PROJECT_DOCROOT=${DEVILBOX_PROJECT_DIR}/$(env_get HTTPD_DOCROOT_DIR "htdocs")
export DEVILBOX_PROJECT_DOCROOT

script_files="$(find -L "${script_dir}" -type f -iname '*.sh' | sort -n)"

# loop over them line by line
IFS='
'
for script_f in ${script_files}; do

script_name="$(basename "${script_f}")"

log "info" "Executing project startup script: ${DEVILBOX_PROJECT_NAME}:${script_name}" "${debug}"

if ! bash "${script_f}" "${debug}"; then
log "err" "Failed to execute script" "${debug}"
exit 1
fi

done
fi
done
}

############################################################
# Sanity Checks
############################################################

# find, sort, and basename are already checked in ./310-custom-startup-scripts.sh
6 changes: 6 additions & 0 deletions Dockerfiles/prod/data/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,12 @@ execute_custom_scripts "/startup.1.d" "${DEBUG_LEVEL}"
execute_custom_scripts "/startup.2.d" "${DEBUG_LEVEL}"


###
### Run project supplied scripts
###
execute_project_scripts "${DEBUG_LEVEL}"


###
###
### Startup
Expand Down

0 comments on commit bc65179

Please sign in to comment.