Compare commits

...

12 Commits

Author SHA1 Message Date
f9b4e4644a Changing the way is login the HOME_USER. Updating to version 2.0.35 2024-04-10 01:10:43 +00:00
01410a3ccd Cleaning code and fixing vscode user not working. Updating to version. 2.0.34 2024-04-09 21:47:37 +00:00
cb4bf58db9 Fixing issue of permissions on /home/${HOME_USER} directory. Updating to version 2.0.32 2024-04-09 20:46:54 +00:00
ed98e9a48c Fixing colors of Terminal and entrances of HOME_USER in .bashrc. Updating to version 2.0.31 2024-04-09 20:06:56 +00:00
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
2 changed files with 32 additions and 39 deletions

View File

@ -1,14 +1,10 @@
#!/bin/bash
set -eu
if [[ -z "${HOME_USER}" ]]; then
if [[ -z "${HOME_USER-}" ]]; then
HOME_USER="vscode"
fi
#addgroup nonroot
#adduser --disabled-password --gecos "" ${HOME_USER}
#echo "${HOME_USER} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
# We do this first to ensure sudo works below when renaming the user.
# Otherwise the current container UID may not exist in the passwd database.
eval "$(fixuid -q)"
@ -16,39 +12,42 @@ eval "$(fixuid -q)"
if [ "${HOME_USER-}" ]; then
USER="$HOME_USER"
if [ "$HOME_USER" != "$(whoami)" ]; then
# if ! id -u $HOME_USER > /dev/null 2>&1; then
# Create a user with the same UID as the host user.
# sudo adduser --disabled-password --gecos "" ${HOME_USER}
# sudo echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
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
fi
# Set the default shell to bash for VS Code Remote - Containers
# sudo usermod --login "$HOME_USER" vscode
# sudo groupmod -n "$HOME_USER" vscode
# sudo sed -i "/vscode/d" /etc/sudoers.d/nopasswd
sudo cp -R /home/vscode/. /home/${HOME_USER}/
# Crear el nuevo directorio home si no existe
# if [ -d "/home/${HOME_USER}" ]; then
# Si existe, hacer una copia de seguridad de los archivos existentes
# sudo mv /home/${HOME_USER} /home/${HOME_USER}_backup
# fi
# Check if .bashrc file exists
if [ ! -f "/home/${HOME_USER}/.bashrc" ]; then
# If not, create it
sudo touch /home/${HOME_USER}/.bashrc
fi
# Cambiar el directorio home del usuario vscode a /home/${HOME_USER}
# sudo usermod -d /home/${HOME_USER} -m vscode
# sudo usermod -d /home/${HOME_USER} vscode
# Change the owner of the .bashrc file to HOME_USER
sudo chown ${HOME_USER} /home/${HOME_USER}/.bashrc
# su - ${HOME_USER}
# fi
# 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
env | grep -v 'HOME_USER' | while read -r line; do
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done
# sudo cd /home/${HOME_USER}
sudo chown -R ${HOME_USER}:${HOME_USER} /home/${HOME_USER}
# Changing the property of the directory /home/${HOME_USER}
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/
# Changing the HOME_USER in the .bashrc file
sudo su - ${HOME_USER} -c '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 -u $HOME_USER -i
sudo su -l ${HOME_USER}
fi
fi
# Add LS_COLORS variable to .bashrc
LS_COLORS_VALUE="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
sudo su - ${HOME_USER} -c "echo 'export LS_COLORS=\"$LS_COLORS_VALUE\"' >> ~/.bashrc"
#Creating extensions folder
if [ ! -d "/home/${HOME_USER}/.config/Code" ]; then
@ -88,14 +87,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

View File

@ -1 +1 @@
2.0.22
2.0.35