Compare commits

..

13 Commits

Author SHA1 Message Date
2ab5fcffc7 Trying to fix user issue. Updating to version 2.0.30 2024-04-09 03:50:29 +00:00
c1acddcc6e Trying to fix issue in user. updating to version 2.0.29 2024-04-09 03:07:15 +00:00
a9b021cebe Trying to fix issue. updating to version 2.0.28 2024-04-09 01:56:06 +00:00
fd7e35cf34 Trying to fix user issue. Updating version to 2.0.27 2024-04-09 01:04:04 +00:00
f929aaac63 Trying to fix user issue. Updating to version 2.0.26 2024-04-09 00:21:44 +00:00
c1affb8781 making reverse of the changes. Updating to version 2.0.25 2024-04-08 21:31:42 +00:00
dfeddf9688 Updating package updating to version 2.0.24 2024-04-07 04:20:07 +00:00
fe2a226190 Trying to fix issue. Updating to version 2.0.23 2024-04-06 23:49:46 +00:00
a983adf4ad Se quita la parte del usuario de Home user para solo ejecutar el primer comando de inicializacion. Se sube a version 2.0.22 2024-04-06 22:51:29 +00:00
374d13fe6c Trying to fix. updating to version 2.0.21 2024-04-06 01:58:10 +00:00
d4391139b2 Trying to fix issue. Updating to version 2.0.20 2024-04-06 01:09:50 +00:00
13571867ca Trying to fix users issue updating to version 2.0.19 2024-04-05 23:44:48 +00:00
52b9e7a411 Trying to fix users issue. Updating to version 2.0.18 2024-04-05 21:03:19 +00:00
2 changed files with 14 additions and 9 deletions

View File

@ -20,10 +20,21 @@ if [ "${HOME_USER-}" ]; 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
fi
# Check if .bashrc file exists
if [ ! -f "/home/${HOME_USER}/.bashrc" ]; then
# If not, create it
sudo touch /home/${HOME_USER}/.bashrc
fi
# Change the owner of the .bashrc file to HOME_USER
sudo chown ${HOME_USER} /home/${HOME_USER}/.bashrc
# Copy environment variables from vscode user to HOME_USER
env | grep -v 'HOME_USER' | while read -r line; do
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done
sudo -u $HOME_USER -i
# Unfortunately we cannot change $HOME as we cannot move any bind mounts
# nor can we bind mount $HOME into a new home as that requires a privileged container.
@ -75,14 +86,8 @@ else
echo "File extensions.json not found"
fi
# Allow users to have scripts run on container startup to prepare workspace.
# https://github.com/coder/code-server/issues/5177
#if [ -d "${ENTRYPOINTD}" ]; then
#find "${ENTRYPOINTD}" -type f -executable -print -exec {} \;
#fi
if [[ -z "${VSCODE_TUNNEL_NAME}" ]]; then
exec dumb-init sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms $@"
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms"
else
exec dumb-init sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME} $@"
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME}"
fi

2
version.txt Normal file → Executable file
View File

@ -1 +1 @@
2.0.17
2.0.30