|
Lines 1-3
Link Here
|
| 1 |
password requisite pam_cracklib.so |
1 |
@!@ |
| 2 |
password sufficient pam_unix.so obscure use_first_pass use_authtok |
2 |
## Caution: The use_first_pass option for the second module in the stack |
| 3 |
password required pam_krb5.so use_first_pass use_authtok force_pwchange |
3 |
## requires that there is a module before it, otherwise UMC gets "Errorcode 20:" |
|
|
4 |
|
| 5 |
if configRegistry.get('password/quality/mspolicy') == 'sufficient': |
| 6 |
print('password sufficient pam_unix.so obscure use_authtok') |
| 7 |
else: |
| 8 |
print('password requisite pam_cracklib.so') |
| 9 |
print('password sufficient pam_unix.so obscure use_first_pass use_authtok') |
| 10 |
print('password required pam_krb5.so use_first_pass use_authtok force_pwchange') |
| 11 |
@!@ |