Skip to content

Commit 1c9460a

Browse files
committed
Fix the computation of the configuration status of Silverpeas
1 parent 15e1ac9 commit 1c9460a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/groovy/org/silverpeas/setup/api/JBossServer.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,7 @@ class JBossServer {
402402
@SuppressWarnings('unused')
403403
boolean isAlreadyConfigured() {
404404
String config = new File("${jbossHome}/standalone/configuration/standalone-full.xml").text
405-
return config.contains('java:/datasources/DocumentStore') &&
406-
config.contains('java:/datasources/silverpeas')
405+
return config.contains('java:/datasources/silverpeas')
407406
}
408407

409408
/**

0 commit comments

Comments
 (0)