Skip to content

Commit

Permalink
Update fulloto.sh
Browse files Browse the repository at this point in the history
Kullanıcı oluşturma ve şifre güncelleme hatasını düzeltme

- Kullanıcı hesabı oluşturulmadan önce mevcut olup olmadığını kontrol ettim
- Kullanıcı mevcutsa şifresini güncelleme işlemine geçtim, yoksa yeni kullanıcı oluşturdum
- ShellCheck hatalarını gidermek için gerekli düzenlemeleri yaptım
  • Loading branch information
yuceltoluyag authored Aug 3, 2024
1 parent 4aed0d8 commit bbe561c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fulloto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ set_user_and_password() {
local retry_limit=3
local attempts=0

if [ "$user" != "root" ]; then
if id -u "$user" >/dev/null 2>&1; then
echo "Kullanıcı $user zaten mevcut. Şifresi güncellenecek."
else
# Kullanıcıyı oluştur
arch-chroot /mnt useradd -m -G wheel -s /bin/bash "$user"
fi
Expand Down

0 comments on commit bbe561c

Please sign in to comment.