|
|
|
@ -5136,6 +5136,14 @@ int LDAPManager::writePAMFiles(LDAPPamConfig pamConfig, TQString *errstr) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pamConfig.enable_pkcs11_login) {
|
|
|
|
|
TQDir pkcs11dir(PAMD_PKCS11_CONFIG_DIRECTORY);
|
|
|
|
|
if (!pkcs11dir.exists()) {
|
|
|
|
|
if (mkdir(PAMD_PKCS11_CONFIG_DIRECTORY, S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) < 0) {
|
|
|
|
|
if (errstr) {
|
|
|
|
|
*errstr = i18n("Could not create directoy '%1'").arg(PAMD_PKCS11_CONFIG_DIRECTORY);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
TQFile file4(PAMD_PKCS11_CONFIG_DIRECTORY PAMD_PKCS11_CONFIG_FILE);
|
|
|
|
|
if (file4.open(IO_WriteOnly)) {
|
|
|
|
|
TQTextStream stream( &file4 );
|
|
|
|
|