Imager: Fix for when user password is empty. (#6632)

This commit is contained in:
Chris Gunn 2023-10-30 13:50:04 -07:00 коммит произвёл GitHub
Родитель 865013e1a2
Коммит d3a22c25f4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -1188,11 +1188,6 @@ func createUserWithPassword(installChroot *safechroot.Chroot, user configuration
}
logger.Log.Tracef("hashed password: %v", hashedPassword)
if strings.TrimSpace(hashedPassword) == "" {
err = fmt.Errorf("empty password for user (%s) is not allowed", user.Name)
return
}
// Create the user with the given hashed password
if user.Name == userutils.RootUser {
if user.UID != "" {