Это говорит UNIX , потому что вы меняете пароль для аутентификации , предоставленной в pam_unix
модуле PAM . Цитирование справочной страницы:
NAME
pam_unix - Module for traditional password authentication
SYNOPSIS
pam_unix.so [...]
DESCRIPTION
This is the standard Unix authentication module. It uses standard calls
from the system's libraries to retrieve and set account information as
well as authentication. Usually this is obtained from the /etc/passwd
and the /etc/shadow file as well if shadow is enabled.
Он связан с Unix тем, что он использует традиционные файлы /etc/passwd
и /etc/shadow
в качестве источника аутентификации.
Если бы вы использовали другой модуль PAM, например, pam_ldap
для аутентификации LDAP, он бы сказал, что LDAP вместо UNIX:
$ passwd
(current) LDAP Password:
New password:
Retype new password:
passwd: password updated successfully