diff options
author | startxfr <clarue@startx.fr> | 2015-12-06 16:41:23 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2015-12-06 16:41:23 +0100 |
commit | 7fe1c9cf9f114d40fe3f534a3902f3dff73c602f (patch) | |
tree | 5d40c66b09a9eddab90ee209a71aa37eaed787cf /Services/apache/sx-httpd.sh | |
parent | 6fc395ce332cf2565705b3a36bceaaa6f3948417 (diff) | |
download | phpmyadmin-7fe1c9cf9f114d40fe3f534a3902f3dff73c602f.tar.gz phpmyadmin-7fe1c9cf9f114d40fe3f534a3902f3dff73c602f.tar.bz2 phpmyadmin-7fe1c9cf9f114d40fe3f534a3902f3dff73c602f.tar.xz phpmyadmin-7fe1c9cf9f114d40fe3f534a3902f3dff73c602f.zip |
correcting bug and improve startup display
Diffstat (limited to 'Services/apache/sx-httpd.sh')
-rw-r--r-- | Services/apache/sx-httpd.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Services/apache/sx-httpd.sh b/Services/apache/sx-httpd.sh index 2b7581d..0344f1e 100644 --- a/Services/apache/sx-httpd.sh +++ b/Services/apache/sx-httpd.sh @@ -50,6 +50,17 @@ function display_container_httpd_header { # and start generating host keys function begin_config { echo "=> BEGIN APACHE CONFIGURATION" + if [[ -d $TMP_APP_PATH ]]; then + if [ "$(ls -A $TMP_APP_PATH)" ]; then + echo "COPY application from $TMP_APP_PATH into $APP_PATH" + FILE_LIST=$(find $TMP_APP_PATH -maxdepth 1 -mindepth 1 -printf "%f\n") + for FILE in $FILE_LIST; do + echo -n "adding $APP_PATH/$FILE" + cp -r $TMP_APP_PATH/$FILE $APP_PATH/ + echo " DONE" + done + fi + fi } # End configuration process just before starting daemon |