mirror of
https://github.com/friendica/docker
synced 2025-01-06 06:07:47 +01:00
Preserve environment variable at run_as
This commit is contained in:
parent
52b959db23
commit
43bc727696
10 changed files with 20 additions and 30 deletions
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,10 @@ set -eu
|
||||||
|
|
||||||
# run an command with the www-data user
|
# run an command with the www-data user
|
||||||
run_as() {
|
run_as() {
|
||||||
set -- -c "cd /var/www/html; $*"
|
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
su - www-data -s /bin/sh "$@"
|
su -p www-data -s /bin/sh -c "$1"
|
||||||
else
|
else
|
||||||
sh "$@"
|
sh -c "$1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue