File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
core/src/main/groovy/noe/rhel/server/workspace
testsuite/src/test/groovy/noe Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ class WorkspaceHttpdTomcatsBaseOS extends WorkspaceMultipleTomcats{
9595 * @param httpd Instance of `Httpd` server
9696 */
9797 private void copyModClusterConfIfMissing (Httpd httpd ) {
98- List<String > confRelativePaths = [" conf.d/mod_cluster.conf " ]
98+ List<String > confRelativePaths = [" conf.d/${ DefaultProperties.MOD_CLUSTER_CONFIG_FILE } " ]
9999 confRelativePaths. each() { String confRelativePath ->
100100 File confPath = new File (httpd. getServerRoot(), confRelativePath)
101101 File sclConfPath = new File (" ${ DefaultProperties.HTTPD_SCL_ROOT} /etc/httpd/${ confRelativePath} " )
Original file line number Diff line number Diff line change 55 <groupId >org.jboss.qa.noe</groupId >
66 <artifactId >noe-core-parent</artifactId >
77 <version >0.17.7-SNAPSHOT</version >
8+ <dependencies >
9+ <dependency >
10+ <groupId >org.jboss.qa.noe</groupId >
11+ <artifactId >noe-core</artifactId >
12+ </dependency >
13+ </dependencies >
814 <packaging >pom</packaging >
915
1016 <name >Noe core: Parent</name >
Original file line number Diff line number Diff line change 11package noe
22
33import groovy.util.logging.Slf4j
4+ import noe.common.DefaultProperties
45import noe.common.TestAbstract
56import noe.common.utils.JBFile
67import noe.common.utils.Platform
@@ -35,7 +36,7 @@ class HttpdKillTestIT extends TestAbstract {
3536 log. debug(" Deleting ssl.conf: $sslConfFile . absolutePath " )
3637 JBFile . delete(sslConfFile)
3738 // we are not testing mod_cluster here, lets remove mod_cluster
38- def mod_clusterConfFile = new File (httpdServer. getConfDeploymentPath(), " mod_cluster.conf " )
39+ def mod_clusterConfFile = new File (httpdServer. getConfDeploymentPath(), DefaultProperties . MOD_CLUSTER_CONFIG_FILE )
3940 log. debug(" Deleting mod-cluster.conf: $mod_clusterConfFile . absolutePath " )
4041 JBFile . delete(mod_clusterConfFile)
4142 }
You can’t perform that action at this time.
0 commit comments