[KEYCLOAK-4085] SSSD federation provider should load libunix from alternative paths
This commit is contained in:
parent
3f2e9c3592
commit
3b3b219a86
1 changed files with 8 additions and 1 deletions
|
@ -21,7 +21,14 @@ package cx.ath.matthew;
|
|||
*/
|
||||
public class LibraryLoader {
|
||||
|
||||
private static final String[] PATHS = {"/usr/lib/", "/usr/lib64/", "/usr/local/lib/", "/opt/local/lib/"};
|
||||
private static final String[] PATHS = {
|
||||
"/opt/rh/rh-sso7/root/lib/",
|
||||
"/opt/rh/rh-sso7/root/lib64/",
|
||||
"/usr/lib/",
|
||||
"/usr/lib64/",
|
||||
"/usr/local/lib/",
|
||||
"/opt/local/lib/"
|
||||
};
|
||||
private static final String LIBRARY_NAME = "libunix_dbus_java";
|
||||
private static final String VERSION = "0.0.8";
|
||||
private static boolean loadSucceeded;
|
||||
|
|
Loading…
Reference in a new issue