diff --git a/changes.xml b/changes.xml
index a5b51942..cca8e76e 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/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