diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-05-13 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-05-13 08:00:00 +0000 |
commit | f49166c7d8f3ae2c9d337154f7e5dc50d41ab6bf (patch) | |
tree | 26f5f3cc5bdd4d985a5f27d1b51c8dc57ea9114c /ci | |
parent | be2c75e7a01b270e6a1e97c7371a89483906f606 (diff) | |
download | pam-f49166c7d8f3ae2c9d337154f7e5dc50d41ab6bf.tar.gz pam-f49166c7d8f3ae2c9d337154f7e5dc50d41ab6bf.tar.bz2 pam-f49166c7d8f3ae2c9d337154f7e5dc50d41ab6bf.zip |
Deprecate pam_cracklib, pam_tally, and pam_tally2
Deprecate pam_cracklib, there are two better alternatives to this
obsolete module: pam_passwdqc from passwdqc project and pam_pwquality
from libpwquality project.
Deprecate pam_tally and pam_tally2 in favour of pam_faillock.
* configure.ac: Implement --enable-cracklib=check that enables build
of pam_cracklib when libcrack is available.
Disable build of pam_cracklib, pam_tally, and pam_tally2 by default.
* NEWS: Mention this change.
* ci/run-build-and-tests.sh (DISTCHECK_CONFIGURE_FLAGS): Add
--enable-tally, --enable-tally2, and --enable-cracklib=check
to check build of these deprecated modules.
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run-build-and-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run-build-and-tests.sh b/ci/run-build-and-tests.sh index 070fc72a..a16282ca 100755 --- a/ci/run-build-and-tests.sh +++ b/ci/run-build-and-tests.sh @@ -5,7 +5,7 @@ # # SPDX-License-Identifier: GPL-2.0-or-later -DISTCHECK_CONFIGURE_FLAGS='--disable-dependency-tracking --enable-Werror' +DISTCHECK_CONFIGURE_FLAGS='--disable-dependency-tracking --enable-Werror --enable-tally --enable-tally2 --enable-cracklib=check' export DISTCHECK_CONFIGURE_FLAGS case "${TARGET-}" in |