# Override this if you have a different mirror infrastructure you would rather pull from
fedora_mirrors: https://mirrors.fedoraproject.org/metalink?arch=$basearch&
centos_mirrors: http://mirror.centos.org/centos/

# Override this if you wish your default mirrors to be configured differently
repository_defaults:
  failovermethod: priority
  enabled: true
  skip_if_unavailable: false
  gpgcheck: false

# This is the default name of this package, but it's not the same on every
# system
python_pip_package: python2-pip
# Default user and directory to place the Jenkins files in
jenkins_user: jenkins
jenkins_user_home: /var/lib/jenkins
jenkins_user_password: changeme
# The home directory for the Jenkins user, and the base directory for Jenkins
# files and jobs
jenkins_home: /var/lib/jenkins
# Directives on jswarm file and destination
jswarm_version: 2.1
jswarm_local_directory: /opt/jswarm
jswarm_filename: swarm-client-{{ jswarm_version }}-jar-with-dependencies.jar

# Override default distro NTP server configuration
# Define the var ntp_servers as below to optionally override default NTP
# server lines, including options such as iburst.
# Left undefined, the distro defaults will be used.
#ntp_servers:
#    - "server 0.time.example.com iburst"
#    - "server 1.time.example.com iburst"
#    - "server 2.time.example.com iburst"
#    - "server 3.time.example.com iburst"

# Override these variables with an array of files to be uploaded as-is to the
# destination host. Files in pre_upload_files will be uploaded before any other
# code is run. Files in post_upload_files will be uploaded after all other tasks
# have been run. Each element in the array must contain an object with the
# following fields:
# src (required): the local path to the file to upload
# dest (required): the remote path to upload the file into
# owner (optional): the user who will own the file after upload
# group (optional): the group to set on the file after upload
# mode (optional): the mode to set on the uploaded file
# For more information or clarification on these variables, refer to the Ansible
# module documentation for the "copy" module. Variables in this array match
# the arguments to that module of the same name.
# http://docs.ansible.com/ansible/copy_module.html
# Example
# pre_upload_files:
#   - src: /home/deployuser/somehost/ssl.key
#     dest: /etc/apache2/ssl/ssl.key
#     mode: 0600
# post_upload_files:
#   - src: /home/deployuser/somehost/id_rsa
#     dest: /var/lib/jenkins/.ssh/id_rsa
#     owner: jenkins
#     mode: 0600
pre_upload_files: []
post_upload_files: []
