daemons = (ServerService[]) enabledServers.toArray(new ServerService[]{});
}
private void overrideProperties(String serviceName, Properties serviceProperties) throws IOException {
FileUtils base = SystemInstance.get().getBase();
// Override with file from conf dir
File conf = base.getDirectory("conf");
if (conf.exists()) {
File serviceConfig = new File(conf, serviceName + ".properties");
if (serviceConfig.exists()) {
FileInputStream in = new FileInputStream(serviceConfig);
try {