diff options
author | startxfr <clarue@startx.fr> | 2015-12-06 03:44:47 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2015-12-06 03:44:47 +0100 |
commit | 1af7a22460dafe12f22f9b564d946f3d583f4cb0 (patch) | |
tree | 3d13d49ba4f5d6ac8cb4532435898b911bdf5a02 /Services/php/run.sh | |
parent | b502829a772adb36d4786db369aa4d803eb7877c (diff) | |
download | phpmyadmin-1af7a22460dafe12f22f9b564d946f3d583f4cb0.tar.gz phpmyadmin-1af7a22460dafe12f22f9b564d946f3d583f4cb0.tar.bz2 phpmyadmin-1af7a22460dafe12f22f9b564d946f3d583f4cb0.tar.xz phpmyadmin-1af7a22460dafe12f22f9b564d946f3d583f4cb0.zip |
debuging images and improve startup display
Diffstat (limited to 'Services/php/run.sh')
-rw-r--r-- | Services/php/run.sh | 45 |
1 files changed, 41 insertions, 4 deletions
diff --git a/Services/php/run.sh b/Services/php/run.sh index e365b4e..a092c56 100644 --- a/Services/php/run.sh +++ b/Services/php/run.sh @@ -6,9 +6,46 @@ if [[ "$0" == *"run.sh" && ! $1 = "" ]];then eval "$@"; fi +function display_container_php_header { + echo "+=====================================================" + echo "| Container : $HOSTNAME" + echo "| OS : $(</etc/redhat-release)" + echo "| HTTP engine : $(httpd -v | head -1)" + echo "| PHP engine : $(php --version | head -1)" + if [ -v CONTAINER_TYPE ]; then + echo "| Type : $CONTAINER_TYPE" + fi + if [ -v CONTAINER_SERVICE ]; then + echo "| Service : $CONTAINER_SERVICE" + fi + if [ -v CONTAINER_INSTANCE ]; then + echo "| Instance : $CONTAINER_INSTANCE" + fi + if [ -v SERVER_NAME ]; then + echo "| ServerName : $SERVER_NAME" + fi + if [ -v APP_PATH ]; then + echo "| App path : $APP_PATH" + fi + if [ -v LOG_PATH ]; then + echo "| Log path : $LOG_PATH" + fi + echo "+=====================================================" +} + +# Begin configuration before starting daemonized process +# and start generating host keys +function begin_php_config { + echo "=> BEGIN APACHE + PHP CONFIGURATION" +} + +# End configuration process just before starting daemon +function end_php_config { + echo "=> END APACHE + PHP CONFIGURATION" +} + check_httpd_environment | tee -a $STARTUPLOG -display_container_httpd_header | tee -a $STARTUPLOG -begin_config | tee -a $STARTUPLOG -end_config | tee -a $STARTUPLOG -display_container_started | tee -a $STARTUPLOG +display_container_php_header | tee -a $STARTUPLOG +begin_php_config | tee -a $STARTUPLOG +end_php_config | tee -a $STARTUPLOG start_daemon |