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:
Nick Couchman
2017-02-13 12:09:34 -05:00
committed by Nick Couchman
parent 5cb9b7972d
commit acbefd4924

View File

@@ -188,7 +188,7 @@ public class ConfigurationService {
public String getRadiusCAType() throws GuacamoleException { public String getRadiusCAType() throws GuacamoleException {
return environment.getProperty( return environment.getProperty(
RadiusGuacamoleProperties.RADIUS_CA_TYPE, RadiusGuacamoleProperties.RADIUS_CA_TYPE,
"pkcs12" "pem"
); );
} }
@@ -202,7 +202,7 @@ public class ConfigurationService {
public String getRadiusKeyType() throws GuacamoleException { public String getRadiusKeyType() throws GuacamoleException {
return environment.getProperty( return environment.getProperty(
RadiusGuacamoleProperties.RADIUS_KEY_TYPE, RadiusGuacamoleProperties.RADIUS_KEY_TYPE,
"pkcs12" "pem"
); );
} }