We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are two functions: getPamModuleConfValue() and getPamModuleArgValue() that do basically the same thing and share a lot of code.
getPamModuleConfValue()
getPamModuleArgValue()
These can be refactored to clean up duplicated source code.
The text was updated successfully, but these errors were encountered:
It looks like in libpam 1.5.3, pam_pwhistory will move to a separate /etc/security/pwhistory.conf file like pam_faillock uses: https://github.com/linux-pam/linux-pam/blob/bf07335a19d6192adaf4b1a817d2101ee0bad134/modules/pam_pwhistory/pwhistory.conf.
/etc/security/pwhistory.conf
After that update, we can update pwhistory to use the getPamModuleConfValue() function, and just delete getPamModuleArgValue().
Sorry, something went wrong.
3b280ec
jmbills
No branches or pull requests
There are two functions:
getPamModuleConfValue()
andgetPamModuleArgValue()
that do basically the same thing and share a lot of code.These can be refactored to clean up duplicated source code.
The text was updated successfully, but these errors were encountered: