do not change shell of new user

This commit is contained in:
krolxon 2026-01-12 14:25:48 +05:30
parent 93299df699
commit 98001efd5a
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ echo "%wheel ALL=(ALL:ALL) ALL" >> /etc/sudoers
19. Create user
```
useradd -m -G wheel -s /bin/zsh $username
useradd -m -G wheel $username
passwd $username
```

View File

@ -66,6 +66,6 @@ systemctl enable NetworkManager.service
echo "%wheel ALL=(ALL:ALL) ALL" >> /etc/sudoers
printf "\e[0;34mEnter Username: \e[0m"
read username
useradd -m -G wheel -s /bin/zsh $username
useradd -m -G wheel $username
passwd $username
echo "Installation Finish Reboot now"