mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 08:23:06 -06:00
25 lines
567 B
YAML
25 lines
567 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
vars:
|
|
atl_product_family: "jira"
|
|
atl_product_edition: "jira-core"
|
|
atl_product_user: "jira"
|
|
# NOTE: This should be ignored because the version file exists.
|
|
atl_product_version: "latest"
|
|
|
|
pre_tasks:
|
|
- name: Create cache dir
|
|
file:
|
|
path: '/media/atl/jira/shared/'
|
|
state: directory
|
|
- name: Seed version
|
|
copy:
|
|
dest: '/media/atl/jira/shared/jira-core.version'
|
|
content: "7.9.0"
|
|
|
|
roles:
|
|
- role: linux_common
|
|
- role: product_common
|
|
- role: tgz_download
|