Commit 7bafec12 by Stuart Young

add templates for system properties script

parent c96fe09c
......@@ -3,6 +3,7 @@ build_jenkins_configuration_scripts:
- 1addJarsToClasspath.groovy
- 2checkInstalledPlugins.groovy
- 3mainConfiguration.groovy
- 3setGlobalProperties.groovy
- 3shutdownCLI.groovy
- 4configureEc2Plugin.groovy
- 4configureGHOAuth.groovy
......
......@@ -33,6 +33,7 @@ jenkins_common_non_plugin_template_files:
- log_config
- mailer_config
- main_config
- properties_config
- security
- seed_config
......@@ -54,6 +55,10 @@ jenkins_common_main_env_vars:
VALUE: '{{ JENKINS_MAIN_GITHUB_OWNER_WHITELIST }}'
jenkins_common_main_executable: '/bin/bash'
# system properties
jenkins_common_system_properties:
- KEY: "hudson.footerURL"
VALUE: "http://www.example.com"
JENKINS_MAIN_URL: 'https://jenkins.example.org/'
JENKINS_MAIN_ADMIN_EMAIL: 'jenkins <admin@example.org>'
......
---
{% for key_value in jenkins_common_system_properties %}
- KEY: '{{ key_value.KEY }}'
VALUE: '{{ key_value.VALUE }}'
{% endfor %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment