Compare commits

..

19 Commits

Author SHA1 Message Date
d596af8a2f Trying to fix missing environment variables for root user. Updating to version 2.0.58 2024-04-12 10:28:23 +00:00
680e3810b6 Trying to fix issue of running entrypont.sh as root. Updating to version 2.0.57 2024-04-12 08:47:28 +00:00
6519cc3ef9 Trying to fix issue of running entrypont.sh as root. Updating to version 2.0.56 2024-04-12 08:42:37 +00:00
c27e148488 Trying to fix vscode issue. Updating to version 2.0.55 2024-04-12 07:42:57 +00:00
cd8b5c19e1 Trying to fix issue with vscode user deletion. updating to version 2.0.54 2024-04-12 05:38:00 +00:00
a6e4296f25 Trying to fix issue when deleting vscode user. Updating to version 2.0.53 2024-04-12 04:59:14 +00:00
08cf40624d Trying to fix issue of deleting vscode user. Updating to version 2.0.52 2024-04-12 04:06:17 +00:00
a3b5fe1d6d Trying to fix home variable. Updating to version 2.0.51 2024-04-12 03:18:12 +00:00
99812ff71c Trying to fix error of deleting vscode user. Updating to version 2.0.50 2024-04-12 02:05:26 +00:00
d8a8162ffd Making the latest changes Updating to version 2.0.49 2024-04-11 23:17:23 +00:00
32d405aa80 Deleting vscode user when ${HOME_USER} exist. Updating to version 2.0.48 2024-04-11 22:30:56 +00:00
2a98fcce78 Trying to fix issue. Updating to version 2.0.47 2024-04-11 20:29:41 +00:00
3ab91f9f5f Trying to fix issue. Updating to version 2.0.46 2024-04-11 04:45:09 +00:00
840fdfaf1e Trying to fix issue. Updating to version 2.0.45 2024-04-10 12:24:50 +00:00
f7a5094cc3 Trying to fix issue. Updating to version 2.0.44 2024-04-10 11:38:24 +00:00
22f0003c53 Trying to fix issue. Updating to version 2.0.43 2024-04-10 10:24:03 +00:00
b08429c9ae Fixing permissions of tunnel. Updating to version 2.0.42 2024-04-10 09:35:28 +00:00
7f81f891ab Trying to fix issue. Updating to version 2.0.41 2024-04-10 08:49:31 +00:00
66c96f1fe7 Fixing issue of sed. Updating to version 2.0.40 2024-04-10 08:03:53 +00:00
2 changed files with 34 additions and 13 deletions

View File

@ -1,6 +1,14 @@
#!/bin/bash
set -eu
# Check if we are root
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
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
HOME_USER="vscode"
fi
@ -11,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
@ -33,24 +41,37 @@ if [ "${HOME_USER-}" ]; then
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done
# Copy the HOME variable from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "echo 'export HOME=\"/home/\${HOME_USER}\"' >> ~/.bashrc"
# Copy the PATH variable from vscode user to HOME_USER
#PATH_LINE=$(grep "^PATH=" /home/vscode/.bashrc)
#sudo su - ${HOME_USER} -c "echo '${PATH_LINE}' >> ~/.bashrc"
# Copy the .bashrc file from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc"
# Changing the property of the directory /home/${HOME_USER}
# sudo chown -R ${HOME_USER}: /home/${HOME_USER}/
# Creating .vscode folder if it doesn't exist
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode
fi
# Changing the property of the directory /home/${HOME_USER}/.vscode
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/.vscode
# Changing the HOME_USER in the .bashrc file
sudo su - ${HOME_USER} -c 'sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc'
sudo su - ${HOME_USER} -c "sudo sed -i \"s|/home/vscode|/home/${HOME_USER}|g\" ~/.bashrc"
# Switch to the user specified by $HOME_USER and start an interactive shell session.
sudo su -l ${HOME_USER}
# Copy the HOME variable from vscode user to HOME_USER
sudo su -l ${HOME_USER} -c "echo \"export HOME=/home/${HOME_USER}\" >> ~/.bashrc"
# Source the .bashrc file to apply the changes immediately
sudo su -l ${HOME_USER} -c "source ~/.bashrc"
# Delete the vscode user
if id "vscode" &>/dev/null; then
sudo chown -R vscode:vscode /home/vscode
sudo userdel -r vscode
fi
else
# Switch to the user specified by $HOME_USER and start an interactive shell session.
sudo su -l ${HOME_USER}
fi
fi

View File

@ -1 +1 @@
2.0.39
2.0.58