aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xarch_install.md2
-rwxr-xr-xarch_install.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch_install.md b/arch_install.md
index e88eff7..d2de027 100755
--- a/arch_install.md
+++ b/arch_install.md
@@ -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
```
diff --git a/arch_install.sh b/arch_install.sh
index af4259c..6eaf30f 100755
--- a/arch_install.sh
+++ b/arch_install.sh
@@ -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"