*/
private void installConfigFiles(Properties properties) {
String openejbWarDir = properties.getProperty("openejb.war");
if (openejbWarDir == null) return;
Paths paths = new Paths(new File(openejbWarDir));
if (paths.verify()) {
Installer installer = new Installer(paths);
installer.installConfigFiles();
}
}