diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 17:30:12 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 17:30:12 +0200 |
commit | c5943ea8843def8b1c921d79f0eb3f1b443d1b12 (patch) | |
tree | 66422da64da162460e17cdc0a8f7fc825f8daa6b | |
parent | aab2b9255edbacd11f46f3eabcb42af403163bd4 (diff) | |
download | s2i-jekyll-c5943ea8843def8b1c921d79f0eb3f1b443d1b12.tar.gz |
drop debug
-rwxr-xr-x | s2i/bin/assemble | 2 | ||||
-rwxr-xr-x | s2i/bin/run | 13 |
2 files changed, 4 insertions, 11 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index 7699e04..554b195 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -49,9 +49,7 @@ echo "---> Copying pages to $dest ..." pushd _site mkdir -p "$dest" cp -av . "$dest" -ls -la /opt/app-root/src/documentroot popd echo "---> Fix permissions ..." fix-permissions ./ -ls -la /opt/app-root/src/documentroot diff --git a/s2i/bin/run b/s2i/bin/run index 477074f..79747ce 100755 --- a/s2i/bin/run +++ b/s2i/bin/run @@ -1,10 +1,5 @@ #!/bin/sh -set -x -id -a -pwd -ls -la documentroot -ls -la /etc/httpd -#sh -x "${0}.httpd" "$@" -source ${HTTPD_CONTAINER_SCRIPTS_PATH}/common.sh -export HTTPD_RUN_BY_S2I=1 -sh -x /usr/bin/run-httpd $@ +exec "${0}.httpd" "$@" +#source ${HTTPD_CONTAINER_SCRIPTS_PATH}/common.sh +#export HTTPD_RUN_BY_S2I=1 +#sh -x /usr/bin/run-httpd $@ |