diff --git a/2019.09/apache/entrypoint.sh b/2019.09/apache/entrypoint.sh index 9c7ea16..05d629f 100755 --- a/2019.09/apache/entrypoint.sh +++ b/2019.09/apache/entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi diff --git a/2019.09/fpm-alpine/entrypoint.sh b/2019.09/fpm-alpine/entrypoint.sh index 9c7ea16..05d629f 100755 --- a/2019.09/fpm-alpine/entrypoint.sh +++ b/2019.09/fpm-alpine/entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi diff --git a/2019.09/fpm/entrypoint.sh b/2019.09/fpm/entrypoint.sh index 9c7ea16..05d629f 100755 --- a/2019.09/fpm/entrypoint.sh +++ b/2019.09/fpm/entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi diff --git a/2019.12-dev/apache/entrypoint.sh b/2019.12-dev/apache/entrypoint.sh index 9c7ea16..05d629f 100755 --- a/2019.12-dev/apache/entrypoint.sh +++ b/2019.12-dev/apache/entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi diff --git a/2019.12-dev/fpm-alpine/entrypoint.sh b/2019.12-dev/fpm-alpine/entrypoint.sh index 9c7ea16..05d629f 100755 --- a/2019.12-dev/fpm-alpine/entrypoint.sh +++ b/2019.12-dev/fpm-alpine/entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi diff --git a/2019.12-dev/fpm/entrypoint.sh b/2019.12-dev/fpm/entrypoint.sh index 9c7ea16..05d629f 100755 --- a/2019.12-dev/fpm/entrypoint.sh +++ b/2019.12-dev/fpm/entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 9c7ea16..05d629f 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -3,10 +3,11 @@ set -eu # run an command with the www-data user run_as() { + set -- -eu -c "cd /var/www/html; $*" if [ "$(id -u)" -eq 0 ]; then - su - www-data -s /bin/sh -c "cd /var/www/html;$1" + su - www-data -s /bin/sh "$@" else - sh -c "$1" + sh "$@" fi } @@ -200,7 +201,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then echo "Starting Friendica installation ..." # TODO Let the database time to warm up - not winning a beauty contest sleep 10s - run_as "cd /var/www/html; php /var/www/html/bin/console.php autoinstall $install_options" + run_as "php /var/www/html/bin/console.php autoinstall $install_options" # TODO Workaround because of a strange permission issue rm -fr /var/www/html/view/smarty3/compiled @@ -217,7 +218,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then # upgrade else echo "Upgrading Friendica ..." - run_as 'cd /var/www/html; php /var/www/html/bin/console.php dbstructure update' + run_as 'php /var/www/html/bin/console.php dbstructure update' echo "Upgrading finished" fi fi