Compare commits

..

3 Commits

2 changed files with 5 additions and 4 deletions

View File

@ -4,8 +4,9 @@ set -eu
# Check if we are root
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exec sudo /usr/bin/entrypoint.sh
exit 0
sudo bash -c "echo HOME_USER=$HOME_USER >> /etc/environment"
sudo bash -c "echo VSCODE_TUNNEL_NAME=$VSCODE_TUNNEL_NAME >> /etc/environment"
exec sudo bash -c "source /etc/environment; /usr/bin/entrypoint.sh"
fi
if [[ -z "${HOME_USER-}" ]]; then
@ -18,7 +19,7 @@ eval "$(fixuid -q)"
if [ "${HOME_USER-}" ]; then
USER="$HOME_USER"
if [ "$HOME_USER" != "$(whoami)" ]; then
if [[ "${HOME_USER-}" != "vscode" ]]; then
if ! id -u $HOME_USER > /dev/null 2>&1; then
sudo adduser --disabled-password --gecos "" ${HOME_USER}
sudo echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null

View File

@ -1 +1 @@
2.0.55
2.0.58