diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml
index e02e7b58..e3bafe8f 100644
--- a/.github/workflows/maven-build.yml
+++ b/.github/workflows/maven-build.yml
@@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- java: [11, 17]
+ java: [11, 17, 21]
os: [ubuntu-latest]
distribution: [temurin]
include:
diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml
index 30b8e546..c709b1cc 100644
--- a/.github/workflows/maven-deploy.yml
+++ b/.github/workflows/maven-deploy.yml
@@ -17,7 +17,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Configure GIT
run: |
diff --git a/.github/workflows/release-from-tag.yml b/.github/workflows/release-from-tag.yml
index 830b6b3c..611986d4 100644
--- a/.github/workflows/release-from-tag.yml
+++ b/.github/workflows/release-from-tag.yml
@@ -12,7 +12,7 @@ jobs:
permissions:
contents: write
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
body: 'Changes: https://devops.wcm.io/conga/changes-report.html'
diff --git a/changes.xml b/changes.xml
index a5b51942..9e55499b 100644
--- a/changes.xml
+++ b/changes.xml
@@ -23,6 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 https://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
+
+
+ Increase SnakeYAML codepoint limit to 64MB (from default 3MB).
+
+
+
conga-maven-plugin: Eliminate warning "Parameter 'repoSession' (user property 'repositorySystemSession') is read-only, must not be used in configuration".
diff --git a/generator/pom.xml b/generator/pom.xml
index 0317e77b..eab9a2f7 100644
--- a/generator/pom.xml
+++ b/generator/pom.xml
@@ -25,7 +25,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
../parent/pom.xml
@@ -44,7 +44,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.model
- 1.16.2
+ 1.16.4
compile
diff --git a/generator/src/main/java/io/wcm/devops/conga/generator/util/VariableStringResolver.java b/generator/src/main/java/io/wcm/devops/conga/generator/util/VariableStringResolver.java
index 13823c9d..06a47f6f 100644
--- a/generator/src/main/java/io/wcm/devops/conga/generator/util/VariableStringResolver.java
+++ b/generator/src/main/java/io/wcm/devops/conga/generator/util/VariableStringResolver.java
@@ -20,6 +20,7 @@
package io.wcm.devops.conga.generator.util;
import java.util.Map;
+import java.util.Objects;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@@ -186,7 +187,7 @@ private Object resolveSingle(Matcher matcher, Map variables, int
// resolve variable
if (variableMatcher.matches()) {
String valueProviderName = variableMatcher.group(VARIABLE_POS_VALUE_PROVIDER_NAME);
- String variable = StringUtils.defaultString(variableMatcher.group(VARIABLE_POS_VARIABLE_1), variableMatcher.group(VARIABLE_POS_VARIABLE_2));
+ String variable = Objects.toString(variableMatcher.group(VARIABLE_POS_VARIABLE_1), variableMatcher.group(VARIABLE_POS_VARIABLE_2));
String defaultValueString = variableMatcher.group(VARIABLE_POS_DEFAULT_VALUE);
Object valueObject = variableResolver.resolve(valueProviderName, variable, defaultValueString, variables);
@@ -241,7 +242,7 @@ private Object resolveMulti(Matcher matcher, Map variables, int
// resolve variable
if (variableMatcher.matches()) {
String valueProviderName = variableMatcher.group(VARIABLE_POS_VALUE_PROVIDER_NAME);
- String variable = StringUtils.defaultString(variableMatcher.group(VARIABLE_POS_VARIABLE_1), variableMatcher.group(VARIABLE_POS_VARIABLE_2));
+ String variable = Objects.toString(variableMatcher.group(VARIABLE_POS_VARIABLE_1), variableMatcher.group(VARIABLE_POS_VARIABLE_2));
String defaultValueString = variableMatcher.group(VARIABLE_POS_DEFAULT_VALUE);
Object valueObject = variableResolver.resolve(valueProviderName, variable, defaultValueString, variables);
diff --git a/model/pom.xml b/model/pom.xml
index 28fb7ccd..de10e7e5 100644
--- a/model/pom.xml
+++ b/model/pom.xml
@@ -25,7 +25,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
../parent/pom.xml
@@ -40,7 +40,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.resource
- 1.16.2
+ 1.16.4
compile
diff --git a/model/src/main/java/io/wcm/devops/conga/model/reader/EnvironmentReader.java b/model/src/main/java/io/wcm/devops/conga/model/reader/EnvironmentReader.java
index 856f0c0d..4a1171dd 100644
--- a/model/src/main/java/io/wcm/devops/conga/model/reader/EnvironmentReader.java
+++ b/model/src/main/java/io/wcm/devops/conga/model/reader/EnvironmentReader.java
@@ -19,11 +19,11 @@
*/
package io.wcm.devops.conga.model.reader;
-import org.yaml.snakeyaml.LoaderOptions;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;
import io.wcm.devops.conga.model.environment.Environment;
+import io.wcm.devops.conga.model.util.YamlUtil;
/**
* Reads environment definitions.
@@ -38,7 +38,7 @@ public EnvironmentReader() {
}
private static Yaml getYaml() {
- Constructor constructor = new Constructor(Environment.class, new LoaderOptions());
+ Constructor constructor = new Constructor(Environment.class, YamlUtil.createLoaderOptions());
return new Yaml(constructor);
}
diff --git a/model/src/main/java/io/wcm/devops/conga/model/reader/RoleReader.java b/model/src/main/java/io/wcm/devops/conga/model/reader/RoleReader.java
index 39669fca..5bf89208 100644
--- a/model/src/main/java/io/wcm/devops/conga/model/reader/RoleReader.java
+++ b/model/src/main/java/io/wcm/devops/conga/model/reader/RoleReader.java
@@ -19,11 +19,11 @@
*/
package io.wcm.devops.conga.model.reader;
-import org.yaml.snakeyaml.LoaderOptions;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;
import io.wcm.devops.conga.model.role.Role;
+import io.wcm.devops.conga.model.util.YamlUtil;
/**
* Reads role definitions.
@@ -38,7 +38,7 @@ public RoleReader() {
}
private static Yaml getYaml() {
- Constructor constructor = new Constructor(Role.class, new LoaderOptions());
+ Constructor constructor = new Constructor(Role.class, YamlUtil.createLoaderOptions());
return new Yaml(constructor);
}
diff --git a/model/src/main/java/io/wcm/devops/conga/model/util/YamlUtil.java b/model/src/main/java/io/wcm/devops/conga/model/util/YamlUtil.java
new file mode 100644
index 00000000..01516400
--- /dev/null
+++ b/model/src/main/java/io/wcm/devops/conga/model/util/YamlUtil.java
@@ -0,0 +1,48 @@
+/*
+ * #%L
+ * wcm.io
+ * %%
+ * Copyright (C) 2023 wcm.io
+ * %%
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * #L%
+ */
+package io.wcm.devops.conga.model.util;
+
+import org.yaml.snakeyaml.LoaderOptions;
+
+/**
+ * Helper methods for SnakeYAML.
+ */
+public final class YamlUtil {
+
+ /*
+ * Increase default codepoint limit from 3MB to 64MB.
+ */
+ private static final int YAML_CODEPOINT_LIMIT = 64 * 1024 * 1024;
+
+ private YamlUtil() {
+ // static methods only
+ }
+
+ /**
+ * Create a new loader options instances with default configuration.
+ * @return SnakeYAML loader option.s
+ */
+ public static LoaderOptions createLoaderOptions() {
+ LoaderOptions options = new LoaderOptions();
+ options.setCodePointLimit(YAML_CODEPOINT_LIMIT);
+ return options;
+ }
+
+}
diff --git a/model/src/test/java/io/wcm/devops/conga/model/util/YamlUtilTest.java b/model/src/test/java/io/wcm/devops/conga/model/util/YamlUtilTest.java
new file mode 100644
index 00000000..a50477f5
--- /dev/null
+++ b/model/src/test/java/io/wcm/devops/conga/model/util/YamlUtilTest.java
@@ -0,0 +1,48 @@
+/*
+ * #%L
+ * wcm.io
+ * %%
+ * Copyright (C) 2023 wcm.io
+ * %%
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * #L%
+ */
+package io.wcm.devops.conga.model.util;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+import org.junit.jupiter.api.Test;
+import org.yaml.snakeyaml.Yaml;
+
+class YamlUtilTest {
+
+ @Test
+ void testLoadSmallYamlFile() throws IOException {
+ Yaml yaml = new Yaml(YamlUtil.createLoaderOptions());
+ try (InputStream is = YamlUtilTest.class.getResourceAsStream("/role.yaml")) {
+ assertNotNull(yaml.load(is));
+ }
+ }
+
+ @Test
+ void testLoadHugeYamlFile() throws IOException {
+ Yaml yaml = new Yaml(YamlUtil.createLoaderOptions());
+ try (InputStream is = YamlUtilTest.class.getResourceAsStream("/hugefile.yaml")) {
+ assertNotNull(yaml.load(is));
+ }
+ }
+
+}
diff --git a/model/src/test/resources/hugefile.yaml b/model/src/test/resources/hugefile.yaml
new file mode 100644
index 00000000..607bb9fa
--- /dev/null
+++ b/model/src/test/resources/hugefile.yaml
@@ -0,0 +1,166184 @@
+inherits:
+- role: superRole1
+- role: superRole2
+
+variants:
+- variant: services
+ config:
+ var1: value1_service
+- variant: importer
+
+templateDir: tomcat-services
+
+files:
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+- file: "systemconfig-importer.txt"
+ dir: data/deploy
+ template: systemconfig-importer.txt.hbs
+ variants:
+ - importer
+ - variant2*
+ - variant3
+ condition: "${abc}"
+ fileHeader: sling-provisioning
+ validators:
+ - sling-provisioning-model
+ validatorOptions:
+ option1: value1
+ postProcessors:
+ - osgi-config-generator
+ postProcessorOptions:
+ option2: value2
+ multiply: none
+ charset: UTF-8
+ lineEndings: windows
+ escapingStrategy: none
+
+- file: ROOT.xml
+ dir: conf/Catalina/localhost
+ template: ROOT.xml.hbs
+ validators:
+ - xml
+
+- file: setenv.sh
+ dir: bin
+ template: setenv.sh.hb
+ charset: ISO-8859-1
+
+- file: systemconfig.txt
+ dir: data/deploy
+ template: systemconfig.txt.hbs
+ validators:
+ - sling-provisioning-model
+ postProcessors:
+ - osgi-config-generator
+
+- file: "${tenant}_vhost.conf"
+ dir: vhosts
+ template: tenant_vhost.conf.hb
+ multiply: tenant
+ multiplyOptions:
+ roles:
+ - website
+
+- url: classpath://xyz.txt
+ dir: download
+ modelOptions:
+ modelOption1: value1
+ deleteSource: true
+
+- file: systemconfig_symlink.txt
+ dir: symlink
+ symlinkTarget: systemconfig.txt
+
+
+
+# Defines configuration parameters and default values
+config:
+ var1: value1
+ group1:
+ var2: value2
+
+ tomcat:
+ port: 8080
+ path: /path/to/tomcat
+
+ jvm:
+ heapspace:
+ min: 512m
+ max: 2048m
+ permgenspace:
+ max: 256m
+
+ topologyConnectors:
+ - http://localhost:8080/libs/sling/topology/connector
+
+# Configuration parameters that contain sensitive data
+sensitiveConfigParameters:
+- var1
+- group1.var2
diff --git a/parent/pom.xml b/parent/pom.xml
index 7ffd5e13..a17d9c46 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -25,13 +25,13 @@
io.wcm.devops
io.wcm.devops.parent_toplevel
- 1.4.0
+ 1.4.2
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
pom
CONGA
@@ -44,7 +44,7 @@
GitHub
- https://github.com/wcm-io/conga/issues/
+ https://github.com/wcm-io-devops/conga/issues/
@@ -75,7 +75,7 @@
com.google.guava
guava
- 32.1.2-jre
+ 32.1.3-jre
@@ -87,7 +87,7 @@
commons-io
commons-io
- 2.13.0
+ 2.14.0
@@ -116,7 +116,7 @@
org.springframework
spring-core
- 5.3.29
+ 5.3.30
diff --git a/pom.xml b/pom.xml
index 0c4fdd48..3227443a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,13 +25,13 @@
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
parent/pom.xml
io.wcm.devops.conga
io.wcm.devops.conga.root
- 1.16.2
+ 1.16.4
pom
CONGA
diff --git a/resource/pom.xml b/resource/pom.xml
index 1e7ee399..fdebb1c8 100644
--- a/resource/pom.xml
+++ b/resource/pom.xml
@@ -25,7 +25,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
../parent/pom.xml
diff --git a/tooling/conga-cli/pom.xml b/tooling/conga-cli/pom.xml
index 67ab3fa1..b71fa477 100644
--- a/tooling/conga-cli/pom.xml
+++ b/tooling/conga-cli/pom.xml
@@ -25,7 +25,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
../../parent/pom.xml
@@ -40,7 +40,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.generator
- 1.16.2
+ 1.16.4
compile
diff --git a/tooling/conga-maven-plugin/pom.xml b/tooling/conga-maven-plugin/pom.xml
index 1ca48adc..d6f9c0e9 100644
--- a/tooling/conga-maven-plugin/pom.xml
+++ b/tooling/conga-maven-plugin/pom.xml
@@ -25,7 +25,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.parent
- 1.16.2
+ 1.16.4
../../parent/pom.xml
@@ -56,7 +56,7 @@
io.wcm.devops.conga
io.wcm.devops.conga.generator
- 1.16.2
+ 1.16.4
compile
diff --git a/tooling/conga-maven-plugin/src/it/example/environments/pom.xml b/tooling/conga-maven-plugin/src/it/example/environments/pom.xml
index 1d450df7..e70a2441 100644
--- a/tooling/conga-maven-plugin/src/it/example/environments/pom.xml
+++ b/tooling/conga-maven-plugin/src/it/example/environments/pom.xml
@@ -44,15 +44,17 @@
io.wcm.devops.conga
io.wcm.devops.conga.example.definitions
1-SNAPSHOT
+ compile
io.wcm.devops
io.wcm.devops.parent_toplevel
- 1.3.2
+ 1.4.2
xml
site
+ compile
diff --git a/tooling/conga-maven-plugin/src/it/example/pom.xml b/tooling/conga-maven-plugin/src/it/example/pom.xml
index 6fbfdc14..4342631f 100644
--- a/tooling/conga-maven-plugin/src/it/example/pom.xml
+++ b/tooling/conga-maven-plugin/src/it/example/pom.xml
@@ -26,7 +26,7 @@
io.wcm.maven
io.wcm.maven.global-parent
- 44
+ 54
diff --git a/tooling/conga-maven-plugin/src/main/java/io/wcm/devops/conga/tooling/maven/plugin/validation/NoValueProviderInRoleValidator.java b/tooling/conga-maven-plugin/src/main/java/io/wcm/devops/conga/tooling/maven/plugin/validation/NoValueProviderInRoleValidator.java
index d913b458..78c81ad9 100644
--- a/tooling/conga-maven-plugin/src/main/java/io/wcm/devops/conga/tooling/maven/plugin/validation/NoValueProviderInRoleValidator.java
+++ b/tooling/conga-maven-plugin/src/main/java/io/wcm/devops/conga/tooling/maven/plugin/validation/NoValueProviderInRoleValidator.java
@@ -23,13 +23,13 @@
import java.util.Map;
import org.apache.maven.plugin.MojoFailureException;
-import org.yaml.snakeyaml.LoaderOptions;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;
import io.wcm.devops.conga.generator.util.VariableStringResolver;
import io.wcm.devops.conga.model.reader.AbstractModelReader;
import io.wcm.devops.conga.model.reader.ModelReader;
+import io.wcm.devops.conga.model.util.YamlUtil;
import io.wcm.devops.conga.resource.Resource;
/**
@@ -76,7 +76,7 @@ private static class MapReader extends AbstractModelReader