Compare commits

..

2 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 |
@ -52,9 +47,14 @@ if ! id -u $HOME_USER > /dev/null 2>&1; then
# Append the result to /usr/bin/.bashrc
while IFS= read -r line
do
echo "export $line" | sudo -u ${HOME_USER} tee -a /usr/bin/.bashrc
echo "export $line" >> /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.24