mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-197: Doesn't make sense to default the key file to radius.pem and have it trying to use pkcs12 as the default keystore type. Set it all to PEM for consistency.
This commit is contained in:
committed by
Nick Couchman
parent
5cb9b7972d
commit
acbefd4924
@@ -188,7 +188,7 @@ public class ConfigurationService {
|
||||
public String getRadiusCAType() throws GuacamoleException {
|
||||
return environment.getProperty(
|
||||
RadiusGuacamoleProperties.RADIUS_CA_TYPE,
|
||||
"pkcs12"
|
||||
"pem"
|
||||
);
|
||||
}
|
||||
|
||||
@@ -202,7 +202,7 @@ public class ConfigurationService {
|
||||
public String getRadiusKeyType() throws GuacamoleException {
|
||||
return environment.getProperty(
|
||||
RadiusGuacamoleProperties.RADIUS_KEY_TYPE,
|
||||
"pkcs12"
|
||||
"pem"
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user