Compare commits

..

1 Commits

2 changed files with 16 additions and 16 deletions

View File

@ -35,11 +35,6 @@ do
fi
done
USER="$HOME_USER"
if ! id -u $HOME_USER > /dev/null 2>&1; then
sudo adduser --disabled-password --gecos "" --uid 1000 ${HOME_USER}
sudo echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
# List all environment variables
printenv |
@ -55,6 +50,11 @@ if ! id -u $HOME_USER > /dev/null 2>&1; then
echo "export $line" | sudo -u ${HOME_USER} tee -a /usr/bin/.bashrc
done
USER="$HOME_USER"
if ! id -u $HOME_USER > /dev/null 2>&1; then
sudo adduser --disabled-password --gecos "" --uid 1000 ${HOME_USER}
sudo echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
# Creating .vscode folder if it doesn't exist
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode

View File

@ -1 +1 @@
3.0.22
3.0.23