mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
DCD-224: Fix unpacking of product.
This commit is contained in:
@@ -15,3 +15,7 @@ def test_symlink_created(host):
|
|||||||
target = host.file('/opt/atlassian/jira-software/current')
|
target = host.file('/opt/atlassian/jira-software/current')
|
||||||
assert target.exists
|
assert target.exists
|
||||||
assert target.is_symlink
|
assert target.is_symlink
|
||||||
|
|
||||||
|
def test_unpacked(host):
|
||||||
|
verfile = host.file('/opt/atlassian/jira-software/current/bin/catalina.sh')
|
||||||
|
assert verfile.exists
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
remote_src: true
|
remote_src: true
|
||||||
src: "{{ atl_product_download }}"
|
src: "{{ atl_product_download }}"
|
||||||
dest: "{{ atl_product_installation_base }}/{{ atl_product_version_file.stdout }}"
|
dest: "{{ atl_product_installation_base }}/{{ atl_product_version_file.stdout }}"
|
||||||
creates: "{{ atl_product_installation_base }}/{{ atl_product_version_file.stdout }}"
|
creates: "{{ atl_product_installation_base }}/{{ atl_product_version_file.stdout }}/bin/catalina.sh"
|
||||||
owner: "{{ atl_product_user }}"
|
owner: "{{ atl_product_user }}"
|
||||||
group: "{{ atl_product_user }}"
|
group: "{{ atl_product_user }}"
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
|||||||
Reference in New Issue
Block a user